game: Fix and strenghten the supervisor.

When closing the connection, delete from the database sooner rather than later.
Do most of what we can in process_init rather than accept.
Link to the supervisor directly from the process_init function.
This commit is contained in:
Loïc Hoguin 2010-06-30 12:09:02 +02:00
parent c4e2dccb97
commit b85c189279

View File

@ -18,7 +18,7 @@
-module(egs_game). -module(egs_game).
-export([start/0]). % external -export([start/0]). % external
-export([supervisor_init/0, supervisor/0, listen/1, accept/2, process_init/1, process/0, char_select/0, area_load/4, loop/1]). % internal -export([supervisor_init/0, supervisor/0, listen/1, accept/2, process_init/2, process/0, char_select/0, area_load/4, loop/1]). % internal
-include("include/records.hrl"). -include("include/records.hrl").
-include("include/network.hrl"). -include("include/network.hrl").
@ -41,8 +41,6 @@ supervisor_init() ->
supervisor() -> supervisor() ->
receive receive
{link, Pid} ->
link(Pid);
{'EXIT', Pid, _} -> {'EXIT', Pid, _} ->
supervisor_close(Pid); supervisor_close(Pid);
_ -> _ ->
@ -57,9 +55,9 @@ supervisor() ->
supervisor_close(Pid) -> supervisor_close(Pid) ->
try try
User = egs_db:users_select_by_pid(Pid), User = egs_db:users_select_by_pid(Pid),
log(User#users.gid, "quit"), egs_db:users_delete(User#users.gid),
lists:foreach(fun(Other) -> Other#users.pid ! {psu_player_unspawn, User} end, egs_db:users_select_others_in_area(User)), lists:foreach(fun(Other) -> Other#users.pid ! {psu_player_unspawn, User} end, egs_db:users_select_others_in_area(User)),
egs_db:users_delete(User#users.gid) io:format("game (~p): quit~n", [User#users.gid])
catch _:_ -> catch _:_ ->
ignore ignore
end. end.
@ -76,14 +74,8 @@ accept(LSocket, SPid) ->
case ssl:transport_accept(LSocket, 5000) of case ssl:transport_accept(LSocket, 5000) of
{ok, CSocket} -> {ok, CSocket} ->
ssl:ssl_accept(CSocket), ssl:ssl_accept(CSocket),
try Pid = spawn(?MODULE, process_init, [CSocket, SPid]),
Pid = spawn(?MODULE, process_init, [CSocket]), ssl:controlling_process(CSocket, Pid);
SPid ! {link, Pid},
ssl:controlling_process(CSocket, Pid)
catch
_:_ ->
reload
end;
_ -> _ ->
reload reload
end, end,
@ -91,7 +83,8 @@ accept(LSocket, SPid) ->
%% @doc Initialize the client process by saving the socket to the process dictionary. %% @doc Initialize the client process by saving the socket to the process dictionary.
process_init(CSocket) -> process_init(CSocket, SPid) ->
link(SPid),
put(socket, CSocket), put(socket, CSocket),
send_0202(), send_0202(),
process(). process().