cron: New module for keepalive packet handling and other cron jobs.

This commit is contained in:
Loïc Hoguin 2010-05-20 11:35:25 +02:00
parent a897f94a5f
commit 2914393c3a
4 changed files with 49 additions and 3 deletions

View File

@ -17,6 +17,7 @@
% along with EGS. If not, see <http://www.gnu.org/licenses/>.
{'src/egs.erl', [{outdir, "ebin"}]}.
{'src/egs_cron.erl', [{outdir, "ebin"}]}.
{'src/egs_db.erl', [{outdir, "ebin"}]}.
{'src/egs_game.erl', [{outdir, "ebin"}]}.
{'src/egs_login.erl', [{outdir, "ebin"}]}.

View File

@ -21,7 +21,7 @@
-include("include/records.hrl").
-define(MODULES, [egs, egs_db, egs_game, egs_login, egs_patch, egs_proto]).
-define(MODULES, [egs, egs_cron, egs_db, egs_game, egs_login, egs_patch, egs_proto]).
%% @doc Start all the application servers. Return the PIDs of the listening processes.
@ -30,10 +30,11 @@ start() ->
application:start(ssl),
ssl:seed(crypto:rand_bytes(256)),
egs_db:create(),
Cron = egs_cron:start(),
Game = egs_game:start(),
Login = egs_login:start(),
Patch = egs_patch:start(),
[{patch, Patch}, {login, Login}, {game, Game}].
[{patch, Patch}, {login, Login}, {game, Game}, {cron, Cron}].
%% @doc Reload all the modules.

42
src/egs_cron.erl Normal file
View File

@ -0,0 +1,42 @@
% EGS: Erlang Game Server
% Copyright (C) 2010 Loic Hoguin
%
% This file is part of EGS.
%
% EGS is free software: you can redistribute it and/or modify
% it under the terms of the GNU 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 General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with EGS. If not, see <http://www.gnu.org/licenses/>.
-module(egs_cron).
-export([start/0]). % external
-export([cleanup/0, keepalive/0]). % internal
-include("include/records.hrl").
%% @doc Start the cron processes.
start() ->
KeepAlivePid = spawn_link(?MODULE, keepalive, []),
[{keepalive, KeepAlivePid}].
%% @doc Keep connected players alive.
%% @todo Don't even need to send a keepalive packet if we sent a packet in the last Timeout milliseconds.
keepalive() ->
receive
_ ->
?MODULE:keepalive()
after 5000 ->
lists:foreach(fun(User) -> User#users.pid ! {psu_keepalive} end, egs_db:users_select_all()),
reload,
?MODULE:keepalive()
end.

View File

@ -235,6 +235,9 @@ loop(CSocket, GID, Version, SoFar) ->
{psu_chat, ChatGID, ChatName, ChatModifiers, ChatMessage} ->
egs_proto:send_chat(CSocket, Version, ChatGID, ChatName, ChatModifiers, ChatMessage),
?MODULE:loop(CSocket, GID, Version, SoFar);
{psu_keepalive} ->
egs_proto:send_keepalive(CSocket, GID),
?MODULE:loop(CSocket, GID, Version, SoFar);
{psu_player_spawn, SpawnPlayer} ->
send_spawn(CSocket, GID, SpawnPlayer),
?MODULE:loop(CSocket, GID, Version, SoFar);
@ -253,7 +256,6 @@ loop(CSocket, GID, Version, SoFar) ->
_ ->
?MODULE:loop(CSocket, GID, Version, SoFar)
after 1000 ->
egs_proto:send_keepalive(CSocket, GID),
reload,
?MODULE:loop(CSocket, GID, Version, SoFar)
end.