%% -----------------------------------
|
|
%% desc :废都boss(混乱星域)头文件
|
|
%% author :hh
|
|
%% time :21/01/19
|
|
%% module :deserted_boss.hrl
|
|
%% -----------------------------------
|
|
|
|
-record (deserted_sup_state, {
|
|
zone_faction_svrs_map = #{}, %% 分区阵营对应游戏服列表 #{ZoneId => FSvrsMap}, FSvrsMap :: #{Faction => ServerIds}
|
|
zone_faction_pids = #{}, %% #{{ZoneId, FacId} => pid()}
|
|
monitor_map = #{},
|
|
recover_map = #{},
|
|
node_time_info = [],
|
|
state_map = #{}
|
|
}).
|
|
|
|
|
|
-define (WORKER_INIT, 1).
|
|
-define (CLS_OPEN_TIME, 2).
|
|
|
|
|
|
-define (DESERTED_BOSS_NUM, 60).
|