-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathop_phantom.erl
62 lines (46 loc) · 1.54 KB
/
op_phantom.erl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
-module(op_phantom).
-behavior(gen_server).
-export([start_link/3]).
-export([init/1, terminate/2, handle_call/3, handle_cast/2, code_change/3, handle_info/2]).
-export([send/2]).
-include("openpoker.hrl").
%%
%% Client API
%%
-record(pd, { pid, gid, sn }).
start_link(PID, GID, SN) when is_integer(PID), is_pid(GID), is_integer(SN) ->
gen_server:start_link(?MODULE, [PID, GID, SN], []).
send(P, R) ->
gen_server:cast(P, R).
%%
%% Callback Functions
%%
init([PID, GID, SN]) ->
op_exch_event:phantom([{init, PID}]),
{ok, #pd{pid = PID, gid = GID, sn = SN}}.
terminate(_Reason, _LoopData) ->
ok.
handle_info(_Info, LoopData) ->
{noreply, LoopData}.
code_change(_OldVsn, LoopData, _Extra) ->
{ok, LoopData}.
handle_call(_Msg, _From, LoopData) ->
{reply, ok, LoopData}.
handle_cast(#notify_game_cancel{}, LoopData) ->
handle_cast(#notify_game_end{}, LoopData);
handle_cast(#notify_game_end{}, LoopData = #pd {pid = PID, gid = GID}) ->
op_exch_event:phantom([{game_over, PID}]),
player:leave(PID, GID),
{noreply, LoopData};
handle_cast(#notify_leave{sn = SN}, LoopData = #pd{pid = PID, sn = SN}) ->
op_exch_event:phantom([{player_leave, PID}]),
%% TODO better process player, don't kill process
op_players_sup:terminate_child_ex(PID),
op_exch_event:phantom([{terminate_child, PID}]),
{noreply, LoopData};
handle_cast(#notify_betting{}, LoopData = #pd{pid = PID, gid = GID}) ->
error_logger:info_report([{phantom, notify_betting}]),
player:fold(PID, GID),
{noreply, LoopData};
handle_cast(_R, LoopData) ->
{noreply, LoopData}.