OSDN Git Service

通路の各処理に関わる確率変数にDoxygenコメントを追加。 / Add Doxygen comment for probability values of proces...
authorDeskull <desull@users.sourceforge.jp>
Fri, 27 Feb 2015 14:31:42 +0000 (23:31 +0900)
committerDeskull <desull@users.sourceforge.jp>
Fri, 27 Feb 2015 14:31:42 +0000 (23:31 +0900)
src/generate.c
src/generate.h

index 3eea2f8..1fce8a8 100644 (file)
 #include "rooms.h"
 #include "streams.h"
 
-int dun_tun_rnd;
+int dun_tun_rnd; 
 int dun_tun_chg;
 int dun_tun_con;
 int dun_tun_pen;
index f857726..e16c3f7 100644 (file)
 
 extern int dun_rooms;
 
-extern int dun_tun_rnd;
-extern int dun_tun_chg;
-extern int dun_tun_con;
-extern int dun_tun_pen;
-extern int dun_tun_jct;
-
+extern int dun_tun_rnd; /*!< ダンジョンの通路方向を掻き回す頻度(一回の試行ごとに%で判定している) */
+extern int dun_tun_chg; /*!< ダンジョンの通路をクランクさせる頻度(一回の試行ごとに%で判定している) */
+extern int dun_tun_con; /*!< ダンジョンの通路を継続して引き延ばす頻度(一回の試行ごとに%で判定している) */
+extern int dun_tun_pen; /*!< ダンジョンの部屋入口にドアを設置する頻度(一回の試行ごとに%で判定している) */
+extern int dun_tun_jct; /*!< ダンジョンの通路交差地点付近にドアを設置する頻度(一回の試行ごとに%で判定している) */
 /*
  * Dungeon streamer generation values
  */