From 11b08b6dfd7eeedbcb4aa8c3a79f797cfaa12936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 7 Oct 2010 18:11:29 +0200 Subject: [PATCH] Introduce egs_seasons for season handling. Review and move the code there. --- ebin/egs.app | 1 + include/maps.hrl | 20 ------- src/egs_seasons.erl | 122 +++++++++++++++++++++++++++++++++++++++++++ src/egs_sup.erl | 1 + src/psu/psu_game.erl | 41 +-------------- 5 files changed, 125 insertions(+), 60 deletions(-) create mode 100644 src/egs_seasons.erl diff --git a/ebin/egs.app b/ebin/egs.app index bee2fcd..af96320 100644 --- a/ebin/egs.app +++ b/ebin/egs.app @@ -7,6 +7,7 @@ egs_app, egs_sup, egs_conf, + egs_seasons, egs_game_server, egs_login_server, egs_exit_mon, diff --git a/include/maps.hrl b/include/maps.hrl index 7ec76e6..8ba555b 100644 --- a/include/maps.hrl +++ b/include/maps.hrl @@ -646,26 +646,6 @@ {[1104000,900], [{name, "Spaceport"}]} ]). -%% Seasons. - --define(SEASON_NONE, [1, 1, []]). --define(SEASON_PARTY, [1, 0, [1100000]]). --define(SEASON_NEWYEAR, [1, 1, [1100000, 1102000]]). --define(SEASON_VALENTINE, [1, 2, [1100000]]). --define(SEASON_WHITEDAY, [1, 3, [1100000]]). --define(SEASON_SPRING, [1, 4, [1100000, 1102000]]). --define(SEASON_EASTER, [1, 5, [1100000]]). --define(SEASON_PARUMUNIF, [1, 6, [1101000]]). --define(SEASON_SONIC, [1, 7, [1100000]]). --define(SEASON_HOLYLIGHT, [1, 8, [1102000]]). --define(SEASON_FIREWORKS, [1, 9, [1102000]]). --define(SEASON_AUTUMN, [1, 10, [1100000, 1102000]]). --define(SEASON_HALLOWEEN, [1, 11, [1100000, 1101000, 1103000]]). --define(SEASON_NATIVE, [1, 12, [1103000]]). --define(SEASON_CHRISTMAS, [1, 13, [1100000, 1101000, 1103000]]). --define(SEASON_WINTER, [1, 14, [1100000, 1101000]]). --define(SEASON_WEDDING, [1, 15, [1100000, 1101000, 1102000, 1103000]]). - %% EGS counters settings. %% Various appearance configuration counters don't have any quest-related data. They use the CounterID 65535. %% Background values include: 01 parum, 02 moatoob, 03 neudaiz, 04 guardians hq, 05 parum guardians, 06 moatoob guardians, 07 neudaiz guardians, 08 pitch black, ff destroyed colony diff --git a/src/egs_seasons.erl b/src/egs_seasons.erl new file mode 100644 index 0000000..1b13a12 --- /dev/null +++ b/src/egs_seasons.erl @@ -0,0 +1,122 @@ +%% @author Loïc Hoguin +%% @copyright 2010 Loïc Hoguin. +%% @doc EGS seasons management. +%% @todo When we know how to do it we should change the lobby automatically to the next season. +%% +%% This file is part of EGS. +%% +%% EGS is free software: you can redistribute it and/or modify +%% it under the terms of the GNU Affero General Public License as +%% published by the Free Software Foundation, either version 3 of the +%% License, or (at your option) any later version. +%% +%% EGS is distributed in the hope that it will be useful, +%% but WITHOUT ANY WARRANTY; without even the implied warranty of +%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +%% GNU Affero General Public License for more details. +%% +%% You should have received a copy of the GNU Affero General Public License +%% along with EGS. If not, see . + +-module(egs_seasons). +-behavior(gen_server). +-export([start_link/0, stop/0, read/1]). %% API. +-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server. + +%% Use the module name for the server's name. +-define(SERVER, ?MODULE). + +%% Seasonal values: {IsSeasonal, SeasonID, QuestList}. +-define(SEASON_NONE, {0,255, []}). +-define(SEASON_PARTY, {1, 0, [1100000]}). +-define(SEASON_NEWYEAR, {1, 1, [1100000, 1102000]}). +-define(SEASON_VALENTINE, {1, 2, [1100000]}). +-define(SEASON_WHITEDAY, {1, 3, [1100000]}). +-define(SEASON_SPRING, {1, 4, [1100000, 1102000]}). +-define(SEASON_EASTER, {1, 5, [1100000]}). +-define(SEASON_PARUMUNIF, {1, 6, [1101000]}). +-define(SEASON_SONIC, {1, 7, [1100000]}). +-define(SEASON_HOLYLIGHT, {1, 8, [1102000]}). +-define(SEASON_FIREWORKS, {1, 9, [1102000]}). +-define(SEASON_AUTUMN, {1, 10, [1100000, 1102000]}). +-define(SEASON_HALLOWEEN, {1, 11, [1100000, 1101000, 1103000]}). +-define(SEASON_NATIVE, {1, 12, [1103000]}). +-define(SEASON_CHRISTMAS, {1, 13, [1100000, 1101000, 1103000]}). +-define(SEASON_WINTER, {1, 14, [1100000, 1101000]}). +-define(SEASON_WEDDING, {1, 15, [1100000, 1101000, 1102000, 1103000]}). + +%% API. + +%% @spec start_link() -> {ok,Pid::pid()} +start_link() -> + gen_server:start_link({local, ?SERVER}, ?MODULE, [], []). + +%% @spec stop() -> stopped +stop() -> + gen_server:call(?SERVER, stop). + +%% @spec read(QuestID) -> {IsSeasonal, SeasonID} +read(QuestID) -> + gen_server:call(?SERVER, {read, QuestID}). + +%% gen_server. + +init([]) -> + error_logger:info_report("egs_seasons started"), + {ok, undefined}. + +handle_call({read, QuestID}, _From, State) -> + {{_, Month, Day}, _} = calendar:universal_time(), + {IsSeasonal, SeasonID, QuestList} = if + Month =:= 1, Day =< 14 -> ?SEASON_NEWYEAR; + Month =:= 1, Day >= 25 -> ?SEASON_WINTER; + Month =:= 2, Day =< 7 -> ?SEASON_WINTER; + Month =:= 2, Day >= 14 -> ?SEASON_VALENTINE; + Month =:= 3, Day =< 6 -> ?SEASON_VALENTINE; + Month =:= 3, Day >= 14 -> ?SEASON_WHITEDAY; + Month =:= 4, Day =< 3 -> ?SEASON_WHITEDAY; + Month =:= 4, Day >= 4, Day =< 24 -> ?SEASON_EASTER; + Month =:= 4, Day >= 25 -> ?SEASON_SPRING; + Month =:= 5, Day =< 8 -> ?SEASON_SPRING; + Month =:= 5, Day >= 17, Day =< 30 -> ?SEASON_WEDDING; + Month =:= 6, Day >= 3, Day =< 16 -> ?SEASON_PARUMUNIF; + Month =:= 6, Day >= 23 -> ?SEASON_SONIC; + Month =:= 7, Day =< 13 -> ?SEASON_SONIC; + Month =:= 7, Day >= 18 -> ?SEASON_HOLYLIGHT; + Month =:= 8, Day =< 21 -> ?SEASON_FIREWORKS; + Month =:= 8, Day >= 28 -> ?SEASON_NATIVE; + Month =:= 9, Day =< 10 -> ?SEASON_NATIVE; + Month =:= 9, Day >= 24 -> ?SEASON_AUTUMN; + Month =:= 10, Day =< 7 -> ?SEASON_AUTUMN; + Month =:= 10, Day >= 15, Day =< 28 -> ?SEASON_PARTY; + Month =:= 10, Day >= 31 -> ?SEASON_HALLOWEEN; + Month =:= 11, Day =< 20 -> ?SEASON_HALLOWEEN; + Month =:= 12, Day >= 11 -> ?SEASON_CHRISTMAS; + true -> ?SEASON_NONE + end, + if IsSeasonal =:= 0 -> + {reply, {0, 255}, State}; + true -> + case lists:member(QuestID, QuestList) of + true -> {reply, {IsSeasonal, SeasonID}, State}; + false -> {reply, {0, 255}, State} + end + end; + +handle_call(stop, _From, State) -> + {stop, normal, stopped, State}; + +handle_call(_Request, _From, State) -> + {reply, ignored, State}. + +handle_cast(_Msg, State) -> + {noreply, State}. + +handle_info(_Info, State) -> + {noreply, State}. + +terminate(_Reason, _State) -> + ok. + +code_change(_OldVsn, State, _Extra) -> + {ok, State}. diff --git a/src/egs_sup.erl b/src/egs_sup.erl index 38c8d31..1ff7ad5 100644 --- a/src/egs_sup.erl +++ b/src/egs_sup.erl @@ -54,6 +54,7 @@ init([]) -> PatchProcs = [{{egs_patch_server, Port}, {psu_patch, start_link, [Port]}, permanent, 5000, worker, dynamic} || Port <- PatchPorts], LoginProcs = [{{egs_login_server, Port}, {egs_login_server, start_link, [Port]}, permanent, 5000, worker, dynamic} || Port <- LoginPorts], OtherProcs = [ + {egs_seasons, {egs_seasons, start_link, []}, permanent, 5000, worker, dynamic}, {egs_user_model, {egs_user_model, start_link, []}, permanent, 5000, worker, dynamic}, {egs_game_server, {egs_game_server, start_link, [GamePort]}, permanent, 5000, worker, dynamic} ], diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 98814eb..8e37ff1 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -46,45 +46,6 @@ char_load(User) -> send_1602(), psu_proto:send_021b(State). -%% @doc Return the current season information. -area_get_season(QuestID) -> - {{_, Month, Day}, _} = calendar:universal_time(), - [IsSeasonal, SeasonID, SeasonQuestIDs] = if - Month =:= 1, Day =< 14 -> ?SEASON_NEWYEAR; - Month =:= 1, Day >= 25 -> ?SEASON_WINTER; - Month =:= 2, Day =< 7 -> ?SEASON_WINTER; - Month =:= 2, Day >= 14 -> ?SEASON_VALENTINE; - Month =:= 3, Day =< 6 -> ?SEASON_VALENTINE; - Month =:= 3, Day >= 14 -> ?SEASON_WHITEDAY; - Month =:= 4, Day =< 3 -> ?SEASON_WHITEDAY; - Month =:= 4, Day >= 4, Day =< 24 -> ?SEASON_EASTER; - Month =:= 4, Day >= 25 -> ?SEASON_SPRING; - Month =:= 5, Day =< 8 -> ?SEASON_SPRING; - Month =:= 5, Day >= 17, Day =< 30 -> ?SEASON_WEDDING; - Month =:= 6, Day >= 3, Day =< 16 -> ?SEASON_PARUMUNIF; - Month =:= 6, Day >= 23 -> ?SEASON_SONIC; - Month =:= 7, Day =< 13 -> ?SEASON_SONIC; - Month =:= 7, Day >= 18 -> ?SEASON_HOLYLIGHT; - Month =:= 8, Day =< 21 -> ?SEASON_FIREWORKS; - Month =:= 8, Day >= 28 -> ?SEASON_NATIVE; - Month =:= 9, Day =< 10 -> ?SEASON_NATIVE; - Month =:= 9, Day >= 24 -> ?SEASON_AUTUMN; - Month =:= 10, Day =< 7 -> ?SEASON_AUTUMN; - Month =:= 10, Day >= 15, Day =< 28 -> ?SEASON_PARTY; - Month =:= 10, Day >= 31 -> ?SEASON_HALLOWEEN; - Month =:= 11, Day =< 20 -> ?SEASON_HALLOWEEN; - Month =:= 12, Day >= 11 -> ?SEASON_CHRISTMAS; - true -> ?SEASON_NONE - end, - if IsSeasonal =:= 1 -> - case lists:member(QuestID, SeasonQuestIDs) of - true -> [{status, IsSeasonal}, {season, SeasonID}]; - false -> [{status, 0}, {season, 255}] - end; - true -> - [{status, 0}, {season, 255}] - end. - %% @doc Load the given map as a standard lobby. area_load(QuestID, ZoneID, MapID, EntryID, State) -> {ok, OldUser} = egs_user_model:read(get(gid)), @@ -132,7 +93,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName true -> ZoneChange = if OldQuestID =:= QuestID, OldZoneID =:= ZoneID -> false; true -> true end end, - [{status, IsSeasonal}, {season, SeasonID}] = area_get_season(QuestID), + {IsSeasonal, SeasonID} = egs_seasons:read(QuestID), % broadcast spawn and unspawn to other people {ok, UnspawnList} = egs_user_model:select({neighbors, OldUser}), {ok, SpawnList} = egs_user_model:select({neighbors, User}),