Added some basic echo functionality
This commit is contained in:
parent
63170fd0de
commit
70a6beb8b9
17 changed files with 70 additions and 448 deletions
|
@ -3,7 +3,8 @@
|
||||||
{vsn, "0.1.0"},
|
{vsn, "0.1.0"},
|
||||||
{modules, [
|
{modules, [
|
||||||
ggs_app,
|
ggs_app,
|
||||||
ggs_sup
|
ggs_sup,
|
||||||
|
ggs_dispatcher
|
||||||
]},
|
]},
|
||||||
{registered, [ggs_sup]},
|
{registered, [ggs_sup]},
|
||||||
{applications, [kernel, stdlib]},
|
{applications, [kernel, stdlib]},
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
-module(ggs_coordinator).
|
-module(ggs_coordinator).
|
||||||
|
|
||||||
%% API Exports
|
%% API Exports
|
||||||
-export([start_link/1, stop/1]).
|
-export([start_link/0, stop/1]).
|
||||||
|
|
||||||
%% gen_server callback exports
|
%% gen_server callback exports
|
||||||
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2,
|
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2,
|
||||||
code_change/3]).
|
code_change/3]).
|
||||||
|
-define(SERVER, ?MODULE).
|
||||||
|
|
||||||
%% @doc This module act as "the man in the middle".
|
%% @doc This module act as "the man in the middle".
|
||||||
%% Creates the starting connection between table and players.
|
%% Creates the starting connection between table and players.
|
||||||
|
|
||||||
%% @doc Starts the coordinator process.
|
%% @doc Starts the coordinator process.
|
||||||
start_link() ->
|
start_link() ->
|
||||||
not_implemented.
|
gen_server:start_link({local, ?SERVER}, ?MODULE, [], []).
|
||||||
|
|
||||||
%% @doc Terminates the coordinator process.
|
%% @doc Terminates the coordinator process.
|
||||||
stop(_Reason) ->
|
stop(_Reason) ->
|
||||||
|
@ -40,12 +41,12 @@ respawn_table(_Token) ->
|
||||||
not_implemented.
|
not_implemented.
|
||||||
|
|
||||||
%% @doc Removes a player from coordinator.
|
%% @doc Removes a player from coordinator.
|
||||||
remove_player(From, Player) ->
|
remove_player(_From, _Player) ->
|
||||||
not_implemented.
|
not_implemented.
|
||||||
|
|
||||||
%% gen_server callbacks
|
%% gen_server callbacks
|
||||||
|
|
||||||
init([Port]) ->
|
init([]) ->
|
||||||
{ok, ok}.
|
{ok, ok}.
|
||||||
|
|
||||||
handle_call(_Message, _From, State) ->
|
handle_call(_Message, _From, State) ->
|
||||||
|
@ -54,8 +55,11 @@ handle_call(_Message, _From, State) ->
|
||||||
handle_cast(_Message, State) ->
|
handle_cast(_Message, State) ->
|
||||||
{noreply, State}.
|
{noreply, State}.
|
||||||
|
|
||||||
|
handle_info(_Message, State) ->
|
||||||
|
{noreply, State}.
|
||||||
|
|
||||||
terminate(normal, _State) ->
|
terminate(normal, _State) ->
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
code_change(_OldVsn, State, Extra) ->
|
code_change(_OldVsn, State, _Extra) ->
|
||||||
{ok, State}.
|
{ok, State}.
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
-module(ggs_dispatcher).
|
-module(ggs_dispatcher).
|
||||||
|
|
||||||
|
-behaviour(gen_server).
|
||||||
|
|
||||||
%% API Exports
|
%% API Exports
|
||||||
-export([start_link/1, stop/1]).
|
-export([start_link/1, stop/1]).
|
||||||
|
|
||||||
|
@ -7,6 +9,8 @@
|
||||||
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2,
|
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2,
|
||||||
code_change/3]).
|
code_change/3]).
|
||||||
|
|
||||||
|
-define(SERVER, ?MODULE).
|
||||||
|
|
||||||
|
|
||||||
%% @doc This module is the entry-point for clients connecting to GGS. This is
|
%% @doc This module is the entry-point for clients connecting to GGS. This is
|
||||||
%% the module responsible for:
|
%% the module responsible for:
|
||||||
|
@ -20,19 +24,21 @@
|
||||||
%% Port = Integer
|
%% Port = Integer
|
||||||
%% Pid = #<Pid>
|
%% Pid = #<Pid>
|
||||||
start_link(Port) ->
|
start_link(Port) ->
|
||||||
not_implemented.
|
gen_server:start_link({local, ?SERVER}, ?MODULE, [Port], []).
|
||||||
|
|
||||||
%% @doc Stops the dispatcher with the specified reason.
|
%% @doc Stops the dispatcher with the specified reason.
|
||||||
%% @spec stop(Reason) -> ok.
|
%% @spec stop(Reason) -> ok.
|
||||||
%% Reason = String
|
%% Reason = String
|
||||||
stop(Reason) -> not_implemented.
|
stop(_Reason) -> not_implemented.
|
||||||
|
|
||||||
|
|
||||||
%% gen_server callbacks
|
%% gen_server callbacks
|
||||||
|
|
||||||
%% @doc Initiate the dispatcher. This is called from gen_server
|
%% @doc Initiate the dispatcher. This is called from gen_server
|
||||||
init([Port]) ->
|
init([Port]) ->
|
||||||
{ok, ok}.
|
{ok, LSock} = gen_tcp:listen(Port, [{active, true},
|
||||||
|
{reuseaddr, true}]),
|
||||||
|
{ok, LSock, 0}.
|
||||||
|
|
||||||
handle_call(_Message, _From, State) ->
|
handle_call(_Message, _From, State) ->
|
||||||
{noreply, State}.
|
{noreply, State}.
|
||||||
|
@ -40,8 +46,24 @@ handle_call(_Message, _From, State) ->
|
||||||
handle_cast(_Message, State) ->
|
handle_cast(_Message, State) ->
|
||||||
{noreply, State}.
|
{noreply, State}.
|
||||||
|
|
||||||
|
handle_info({tcp, _Socket, RawData}, State) ->
|
||||||
|
io:format("Got connect request!~n"),
|
||||||
|
{noreply, State};
|
||||||
|
|
||||||
|
handle_info({tcp_closed, Socket}, State) ->
|
||||||
|
gen_tcp:close(Socket),
|
||||||
|
{stop, "Client closed socket", State};
|
||||||
|
|
||||||
|
%% @doc This is our function for accepting connections. When a client connects,
|
||||||
|
%% it will immediately time out due to timing settings set in init and here,
|
||||||
|
%% and when it does, we accept the connection.
|
||||||
|
handle_info(timeout, LSock) ->
|
||||||
|
{ok, Sock} = gen_tcp:accept(LSock),
|
||||||
|
spawn(ggs_player, start_link, [Sock]),
|
||||||
|
{noreply, LSock, 0}.
|
||||||
|
|
||||||
terminate(normal, _State) ->
|
terminate(normal, _State) ->
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
code_change(_OldVsn, State, Extra) ->
|
code_change(_OldVsn, State, _Extra) ->
|
||||||
{ok, State}.
|
{ok, State}.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
-module(ggs_vm_runner).
|
-module(ggs_gamevm).
|
||||||
-export([start_link/0, define/2, user_command/4]).
|
-export([start_link/0, define/2, user_command/4]).
|
||||||
%% @doc This module is responsible for running the game VM:s. You can issue
|
%% @doc This module is responsible for running the game VM:s. You can issue
|
||||||
%% commands to a vm using this module.
|
%% commands to a vm using this module.
|
||||||
|
|
|
@ -12,21 +12,32 @@
|
||||||
%% an argument for storage and later usage. Creates a unique player token
|
%% an argument for storage and later usage. Creates a unique player token
|
||||||
%% identifying the player.
|
%% identifying the player.
|
||||||
%% @spec start_link(Socket::socket()) -> ok
|
%% @spec start_link(Socket::socket()) -> ok
|
||||||
start_link(Socket) -> not_implemented.
|
start_link(Socket) ->
|
||||||
|
loop(Socket).
|
||||||
|
|
||||||
|
|
||||||
%% @doc Handles incoming messages from the GGS and forwards them through the player
|
%% @doc Handles incoming messages from the GGS and forwards them through the player
|
||||||
%% socket to the player.
|
%% socket to the player.
|
||||||
%% @spec notify(Player::Pid(), From::Pid(),
|
%% @spec notify(Player::Pid(), From::Pid(),
|
||||||
%% {Command::String(), Message::string()}) -> ok
|
%% {Command::String(), Message::string()}) -> ok
|
||||||
notify(Player, From, Message) -> not_implemented.
|
notify(_Player, _From, _Message) -> not_implemented.
|
||||||
|
|
||||||
%% @doc Get the player token uniquely representing the player.
|
%% @doc Get the player token uniquely representing the player.
|
||||||
%% @spec get_token() -> string()
|
%% @spec get_token() -> string()
|
||||||
get_token() -> not_implemented.
|
get_token(_Player) -> not_implemented.
|
||||||
|
|
||||||
|
|
||||||
%% @doc Properly terminates the player process. The player token will be destroyed.
|
%% @doc Properly terminates the player process. The player token will be destroyed.
|
||||||
%% Makes table token unreferenced and destroys the process in the end.
|
%% Makes table token unreferenced and destroys the process in the end.
|
||||||
%% @spec stop(Table::pid()) -> Reason::string()
|
%% @spec stop(Table::pid()) -> Reason::string()
|
||||||
stop(Table) -> not_implemented.
|
stop(_Table) -> not_implemented.
|
||||||
|
|
||||||
|
|
||||||
|
%% Internals
|
||||||
|
|
||||||
|
loop(Socket) ->
|
||||||
|
receive {tcp, Socket, Data} -> % Just echo for now..
|
||||||
|
gen_tcp:send(Socket,Data),
|
||||||
|
loop(Socket)
|
||||||
|
end.
|
||||||
|
|
||||||
|
|
|
@ -2,17 +2,12 @@
|
||||||
-behaviour(supervisor).
|
-behaviour(supervisor).
|
||||||
|
|
||||||
%% API
|
%% API
|
||||||
-export([start/1, start_link/1]).
|
-export([start_link/1]).
|
||||||
|
|
||||||
%% Supervisor callbacks
|
%% Supervisor callbacks
|
||||||
-export([init/1]).
|
-export([init/1]).
|
||||||
-define(SERVER, ?MODULE).
|
-define(SERVER, ?MODULE).
|
||||||
|
|
||||||
start(Port) ->
|
|
||||||
[FirstArg] = Port,
|
|
||||||
{IntPort, _} = string:to_integer(FirstArg),
|
|
||||||
start_link(IntPort).
|
|
||||||
|
|
||||||
start_link(Port) ->
|
start_link(Port) ->
|
||||||
supervisor:start_link({local, ?SERVER}, ?MODULE, [Port]).
|
supervisor:start_link({local, ?SERVER}, ?MODULE, [Port]).
|
||||||
|
|
||||||
|
@ -29,7 +24,7 @@ init([Port]) ->
|
||||||
permanent,
|
permanent,
|
||||||
2000,
|
2000,
|
||||||
worker,
|
worker,
|
||||||
[ggs_dispatcher]
|
[ggs_coordinator]
|
||||||
},
|
},
|
||||||
Children = [Dispatcher, Coordinator],
|
Children = [Dispatcher, Coordinator],
|
||||||
|
|
||||||
|
|
|
@ -10,27 +10,27 @@
|
||||||
]).
|
]).
|
||||||
|
|
||||||
% @doc returns a new table
|
% @doc returns a new table
|
||||||
start_link(Token) ->
|
start_link(_Token) ->
|
||||||
not_implemented().
|
helpers:not_implemented().
|
||||||
|
|
||||||
% @doc adds a player to a table
|
% @doc adds a player to a table
|
||||||
add_player(Table, Player) ->
|
add_player(_Table, _Player) ->
|
||||||
not_implemented().
|
helpers:not_implemented().
|
||||||
|
|
||||||
% @doc removes player form a table
|
% @doc removes player form a table
|
||||||
remove_player(Table, Player) ->
|
remove_player(_Table, _Player) ->
|
||||||
not_implemented().
|
helpers:not_implemented().
|
||||||
|
|
||||||
% @doc stops the table process
|
% @doc stops the table process
|
||||||
stop(Table) ->
|
stop(_Table, _Msg) ->
|
||||||
not_implemented().
|
helpers:not_implemented().
|
||||||
|
|
||||||
% @doc notifies the table with a message from a player
|
% @doc notifies the table with a message from a player
|
||||||
notify(Table, Player, Message) ->
|
notify(_Table, _Player, _Message) ->
|
||||||
not_implemented().
|
helpers:not_implemented().
|
||||||
|
|
||||||
|
|
||||||
% loop
|
% loop
|
||||||
|
|
||||||
|
|
||||||
% private helpers
|
% private helpers
|
||||||
|
|
4
src/helpers.erl
Normal file
4
src/helpers.erl
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
-module(helpers).
|
||||||
|
|
||||||
|
not_implemented() ->
|
||||||
|
exit("Not implemented").
|
|
@ -1,14 +0,0 @@
|
||||||
-module(ggs_app).
|
|
||||||
-behaviour(application).
|
|
||||||
-export([start/2, stop/1]).
|
|
||||||
|
|
||||||
start(_StartType, _StartArgs) ->
|
|
||||||
case ggs_sup:start_link(9000) of
|
|
||||||
{ok, Pid} ->
|
|
||||||
{ok, Pid};
|
|
||||||
Other ->
|
|
||||||
{error, Other}
|
|
||||||
end.
|
|
||||||
|
|
||||||
stop(_State) ->
|
|
||||||
ok.
|
|
|
@ -1,41 +0,0 @@
|
||||||
-module(ggs_backup).
|
|
||||||
-behaviour(gen_server).
|
|
||||||
|
|
||||||
%% API
|
|
||||||
-export([start_link/0 ]).
|
|
||||||
|
|
||||||
%% gen_server callbacks
|
|
||||||
-export([init/1, handle_call/3, handle_cast/2,
|
|
||||||
handle_info/2, terminate/2, code_change/3]).
|
|
||||||
|
|
||||||
|
|
||||||
-define(SERVER, ?MODULE).
|
|
||||||
|
|
||||||
-record(state, {port, lsock, client_vm_map = []}).
|
|
||||||
|
|
||||||
start_link() ->
|
|
||||||
gen_server:start_link({local, ?SERVER}, ?MODULE, [], []).
|
|
||||||
|
|
||||||
init([]) ->
|
|
||||||
{ok, #state{port = -1, lsock = -1, client_vm_map = -1}, 0}.
|
|
||||||
|
|
||||||
handle_call(get_backup, _From, State) ->
|
|
||||||
BackedUpState = case State of
|
|
||||||
#state{port = -1, lsock = -1, client_vm_map = -1} ->
|
|
||||||
not_initialized;
|
|
||||||
Other ->
|
|
||||||
Other
|
|
||||||
end,
|
|
||||||
{reply, {backup_state, BackedUpState}, State}.
|
|
||||||
|
|
||||||
handle_cast({set_backup, NewState}, _State) ->
|
|
||||||
{noreply, NewState}.
|
|
||||||
|
|
||||||
handle_info(_Msg, State) ->
|
|
||||||
{noreply, State}.
|
|
||||||
|
|
||||||
code_change(_OldVsn, State, _Extra) ->
|
|
||||||
{ok, State}.
|
|
||||||
|
|
||||||
terminate(_Reason, _State) ->
|
|
||||||
ok.
|
|
|
@ -1,68 +0,0 @@
|
||||||
-module(ggs_mnesia_controller_server).
|
|
||||||
-behaviour(gen_server).
|
|
||||||
|
|
||||||
%% API
|
|
||||||
-export([start_link/0,
|
|
||||||
stop/0
|
|
||||||
]).
|
|
||||||
|
|
||||||
%% gen_server callbacks
|
|
||||||
-export([init/1, handle_call/3, handle_cast/2,
|
|
||||||
handle_info/2, terminate/2, code_change/3]).
|
|
||||||
|
|
||||||
|
|
||||||
-define(SERVER, ?MODULE).
|
|
||||||
|
|
||||||
-record(state, {}).
|
|
||||||
|
|
||||||
%%%====================================================
|
|
||||||
%%% API
|
|
||||||
%%%====================================================
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% @doc Starts the server
|
|
||||||
%% @end
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
start_link() ->
|
|
||||||
gen_server:start_link({local, ?SERVER}, ?MODULE, [], []).
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% @doc Stops the server.
|
|
||||||
%% @spec stop() -> ok
|
|
||||||
%% @end
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
stop() ->
|
|
||||||
gen_server:cast(?SERVER, stop).
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% gen_server callbacks
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
|
|
||||||
init([]) ->
|
|
||||||
mnesia:create_schema([node()]),
|
|
||||||
mnesia:start(),
|
|
||||||
{ok, {}, 0}.
|
|
||||||
|
|
||||||
handle_cast(a, State) ->
|
|
||||||
{noreply, State}.
|
|
||||||
|
|
||||||
% Request a value from the Mnesia database
|
|
||||||
handle_call({getValue, _Key},_From,State) ->
|
|
||||||
{reply,value_of_key_requested_goes_here, State};
|
|
||||||
|
|
||||||
% Set a value in the Mnesia database
|
|
||||||
handle_call({setValue, _Key, Value},_From,State) ->
|
|
||||||
{reply,value_set_or_updated, State}.
|
|
||||||
|
|
||||||
handle_info(timeout, State) ->
|
|
||||||
{noreply, State}.
|
|
||||||
|
|
||||||
terminate(_Reason, _State) ->
|
|
||||||
ok.
|
|
||||||
|
|
||||||
code_change(_OldVsn, State, _Extra) ->
|
|
||||||
{ok, State}.
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% Internal functions
|
|
||||||
%%-----------------------------------------------------
|
|
|
@ -1,49 +0,0 @@
|
||||||
-module(ggs_protocol).
|
|
||||||
-export([parse/1]).
|
|
||||||
|
|
||||||
parse(Data) ->
|
|
||||||
Parsed = do_parse(Data, []),
|
|
||||||
prettify(Parsed).
|
|
||||||
|
|
||||||
do_parse(Data, ParsedMessage) ->
|
|
||||||
NewLinePos = string:chr(Data, $\n),
|
|
||||||
Line = string:substr(Data, 1, NewLinePos-1),
|
|
||||||
Tokens = re:split(Line, ": ", [{return, list}]),
|
|
||||||
case handle(Tokens) of
|
|
||||||
{Command, more} ->
|
|
||||||
do_parse(string:substr(Data, NewLinePos+1), ParsedMessage ++ [Command]);
|
|
||||||
{separator, data_next} ->
|
|
||||||
{_, Value} = lists:keyfind(content_len, 1, ParsedMessage),
|
|
||||||
{ContentLength, []} = string:to_integer(Value),
|
|
||||||
{ParsedMessage, handle_data(string:substr(Data, NewLinePos+1), ContentLength)}
|
|
||||||
end.
|
|
||||||
|
|
||||||
handle([[]]) ->
|
|
||||||
{separator, data_next};
|
|
||||||
handle(["Server-Command", Param]) ->
|
|
||||||
{{srv_cmd, Param}, more};
|
|
||||||
handle(["Content-Length", Param]) ->
|
|
||||||
{{content_len, Param}, more};
|
|
||||||
handle(["Token", Param]) ->
|
|
||||||
{{token, Param}, more};
|
|
||||||
handle(["Content-Type", Param]) ->
|
|
||||||
{{content_type, Param}, more}.
|
|
||||||
|
|
||||||
handle_data(Data, Length) ->
|
|
||||||
{data, string:substr(Data,1,Length)}.
|
|
||||||
|
|
||||||
|
|
||||||
%% Helpers
|
|
||||||
prettify({Args, Data}) ->
|
|
||||||
case lists:keyfind(srv_cmd, 1, Args) of
|
|
||||||
{_, Value} ->
|
|
||||||
gen_server:cast(ggs_server, {srv_cmd, Value, Args, Data});
|
|
||||||
_Other ->
|
|
||||||
case lists:keyfind(game_cmd, 1, Args) of
|
|
||||||
{_, Value} ->
|
|
||||||
gen_server:cast(ggs_server, {game_cmd, Value, Args, Data});
|
|
||||||
_ ->
|
|
||||||
ok
|
|
||||||
end
|
|
||||||
end.
|
|
||||||
|
|
|
@ -1,141 +0,0 @@
|
||||||
%%%----------------------------------------------------
|
|
||||||
%%% @author Jonatan Pålsson <Jonatan.p@gmail.com>
|
|
||||||
%%% @copyright 2010 Jonatan Pålsson
|
|
||||||
%%% @doc RPC over TCP server
|
|
||||||
%%% @end
|
|
||||||
%%%----------------------------------------------------
|
|
||||||
|
|
||||||
-module(ggs_server).
|
|
||||||
-behaviour(gen_server).
|
|
||||||
|
|
||||||
%% API
|
|
||||||
-export([start_link/1,
|
|
||||||
start_link/0,
|
|
||||||
stop/0
|
|
||||||
]).
|
|
||||||
|
|
||||||
%% gen_server callbacks
|
|
||||||
-export([init/1, handle_call/3, handle_cast/2,
|
|
||||||
handle_info/2, terminate/2, code_change/3]).
|
|
||||||
|
|
||||||
|
|
||||||
-define(SERVER, ?MODULE).
|
|
||||||
-define(DEFAULT_PORT, 1055).
|
|
||||||
|
|
||||||
-record(state, {port, lsock, client_vm_map = []}).
|
|
||||||
|
|
||||||
%%%====================================================
|
|
||||||
%%% API
|
|
||||||
%%%====================================================
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% @doc Starts the server
|
|
||||||
%% @end
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
start_link(Port) ->
|
|
||||||
gen_server:start_link({local, ?SERVER}, ?MODULE, [Port], []).
|
|
||||||
|
|
||||||
start_link() ->
|
|
||||||
start_link(?DEFAULT_PORT).
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% @doc Stops the server.
|
|
||||||
%% @spec stop() -> ok
|
|
||||||
%% @end
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
stop() ->
|
|
||||||
gen_server:cast(?SERVER, stop).
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% gen_server callbacks
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
|
|
||||||
init([Port]) ->
|
|
||||||
case gen_server:call(ggs_backup, get_backup) of
|
|
||||||
{backup_state, not_initialized} ->
|
|
||||||
{ok, LSock} = gen_tcp:listen(Port, [{active, true},
|
|
||||||
{reuseaddr, true}]),
|
|
||||||
{ok, #state{port = Port, lsock = LSock}, 0};
|
|
||||||
{backup_state, State} ->
|
|
||||||
{ok, LSock} = gen_tcp:listen(Port, [{active, true},
|
|
||||||
{reuseaddr, true}]),
|
|
||||||
{ok, State#state{lsock = LSock}, 0}
|
|
||||||
end.
|
|
||||||
|
|
||||||
handle_call({backup_state, OldState}, _From, State) ->
|
|
||||||
io:format("Received old state from backup~n"),
|
|
||||||
{noreply, OldState}.
|
|
||||||
|
|
||||||
|
|
||||||
handle_info({tcp, Socket, RawData}, State) ->
|
|
||||||
ggs_protocol:parse(RawData),
|
|
||||||
{noreply, State#state{lsock = Socket}};
|
|
||||||
|
|
||||||
handle_info({tcp_closed, Socket}, State) ->
|
|
||||||
gen_tcp:close(Socket),
|
|
||||||
{stop, "Client closed socket", State};
|
|
||||||
|
|
||||||
handle_info(timeout, #state{lsock = LSock} = State) ->
|
|
||||||
{ok, _Sock} = gen_tcp:accept(LSock),
|
|
||||||
{noreply, State};
|
|
||||||
|
|
||||||
handle_info(Other, State) ->
|
|
||||||
erlang:display(Other).
|
|
||||||
|
|
||||||
terminate(_Reason, _State) ->
|
|
||||||
ok.
|
|
||||||
|
|
||||||
code_change(_OldVsn, State, _Extra) ->
|
|
||||||
{ok, State}.
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% Internal functions
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
handle_cast(stop, State) ->
|
|
||||||
{stop, normal, State};
|
|
||||||
|
|
||||||
% Handle javascript defines
|
|
||||||
handle_cast({define, Token, SourceCode}, State) ->
|
|
||||||
GameVM = getJSVM(Token, State),
|
|
||||||
ggs_vm_runner:define(GameVM, SourceCode),
|
|
||||||
send(State#state.lsock, Token, "Okay, defined that for you!"),
|
|
||||||
{noreply, State};
|
|
||||||
|
|
||||||
% Handle javascript calls
|
|
||||||
handle_cast({call, Token, Command}, State) ->
|
|
||||||
GameVM = getJSVM(Token, State),
|
|
||||||
ggs_vm_runner:user_command(GameVM, "User", Command, []),
|
|
||||||
%send(State#state.lsock, Token, "JS says:", binary_to_list(Ret)), Unessecary
|
|
||||||
{noreply, State};
|
|
||||||
|
|
||||||
% Set the new state to the reference generated, and JSVM associated
|
|
||||||
handle_cast({hello, _, _}, State) ->
|
|
||||||
GameVM = ggs_vm_runner:start_link(),
|
|
||||||
Client = getRef(),
|
|
||||||
send(State#state.lsock, Client, "This is your refID"),
|
|
||||||
OldMap = State#state.client_vm_map,
|
|
||||||
NewState = State#state{client_vm_map = OldMap ++ [{Client, GameVM}]},
|
|
||||||
gen_server:cast(ggs_backup, {set_backup, NewState}),
|
|
||||||
{noreply, NewState}.
|
|
||||||
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
%% Helpers
|
|
||||||
%%-----------------------------------------------------
|
|
||||||
getRef() ->
|
|
||||||
%{A1,A2,A3} = now(),
|
|
||||||
%#random:seed(A1, A2, A3),
|
|
||||||
%random:uniform(1000).
|
|
||||||
string:strip(os:cmd("uuidgen"), right, $\n ).
|
|
||||||
|
|
||||||
getJSVM(RefID, State) ->
|
|
||||||
VMs = State#state.client_vm_map,
|
|
||||||
erlang:display(RefID),
|
|
||||||
erlang:display(VMs),
|
|
||||||
{value, {_,VM}} = lists:keysearch(RefID, 1, VMs),
|
|
||||||
VM.
|
|
||||||
|
|
||||||
send(Socket, RefID, String) ->
|
|
||||||
gen_tcp:send(Socket, string:join([RefID,String,"\n"], " ")).
|
|
||||||
|
|
||||||
send(Socket, RefID, String1, String2) ->
|
|
||||||
gen_tcp:send(Socket, string:join([RefID,String1, String2,"\n"], " ")).
|
|
|
@ -1,48 +0,0 @@
|
||||||
-module(ggs_server_sup).
|
|
||||||
-behaviour(supervisor).
|
|
||||||
|
|
||||||
%% API
|
|
||||||
-export([start/1, start_link/1]).
|
|
||||||
|
|
||||||
%% Supervisor callbacks
|
|
||||||
-export([init/1]).
|
|
||||||
-define(SERVER, ?MODULE).
|
|
||||||
|
|
||||||
start(Port) ->
|
|
||||||
[FirstArg] = Port,
|
|
||||||
{IntPort, _} = string:to_integer(FirstArg),
|
|
||||||
start_link(IntPort).
|
|
||||||
|
|
||||||
start_link(Port) ->
|
|
||||||
supervisor:start_link({local, ?SERVER}, ?MODULE, [Port]).
|
|
||||||
|
|
||||||
init([Port]) ->
|
|
||||||
GGSServer = {ggs_server,
|
|
||||||
{ggs_server, start_link, [Port]},
|
|
||||||
permanent,
|
|
||||||
2000,
|
|
||||||
worker,
|
|
||||||
[ggs_server]
|
|
||||||
},
|
|
||||||
Backup = {ggs_backup,
|
|
||||||
{ggs_backup, start_link, []},
|
|
||||||
permanent,
|
|
||||||
2000,
|
|
||||||
worker,
|
|
||||||
[ggs_backup]
|
|
||||||
},
|
|
||||||
MnesiaServer = {ggs_mnesia_controller_server,
|
|
||||||
{ggs_mnesia_controller_server, start_link, []},
|
|
||||||
permanent,
|
|
||||||
2000,
|
|
||||||
worker,
|
|
||||||
[ggs_mnesia_controller_server]
|
|
||||||
},
|
|
||||||
Children = [MnesiaServer, Backup, GGSServer],
|
|
||||||
|
|
||||||
RestartStrategy = { one_for_one, % Restart only crashing child
|
|
||||||
10, % Allow ten crashes per..
|
|
||||||
1 % 1 second, then crash supervisor.
|
|
||||||
},
|
|
||||||
{ok, {RestartStrategy, Children}}.
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
-module(ggs_sup).
|
|
||||||
-behaviour(supervisor).
|
|
||||||
|
|
||||||
%% API
|
|
||||||
-export([start/1, start_link/1]).
|
|
||||||
|
|
||||||
%% Supervisor callbacks
|
|
||||||
-export([init/1]).
|
|
||||||
-define(SERVER, ?MODULE).
|
|
||||||
|
|
||||||
start(Port) ->
|
|
||||||
[FirstArg] = Port,
|
|
||||||
{IntPort, _} = string:to_integer(FirstArg),
|
|
||||||
start_link(IntPort).
|
|
||||||
|
|
||||||
start_link(Port) ->
|
|
||||||
supervisor:start_link({local, ?SERVER}, ?MODULE, [Port]).
|
|
||||||
|
|
||||||
init([Port]) ->
|
|
||||||
Server = {ggs_server_sup,
|
|
||||||
{ggs_server_sup, start_link, [Port]},
|
|
||||||
permanent,
|
|
||||||
2000,
|
|
||||||
worker,
|
|
||||||
[ggs_server_sup]
|
|
||||||
},
|
|
||||||
Children = [Server],
|
|
||||||
|
|
||||||
RestartStrategy = { one_for_one, % Restart only crashing child
|
|
||||||
10, % Allow ten crashes per..
|
|
||||||
1 % 1 second, then crash supervisor.
|
|
||||||
},
|
|
||||||
{ok, {RestartStrategy, Children}}.
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
-module(js_runner).
|
|
||||||
-export([define/2,call/3, boot/0]).
|
|
||||||
|
|
||||||
boot() ->
|
|
||||||
erlang_js:start(),
|
|
||||||
{ok, Port} = js_driver:new(),
|
|
||||||
Port.
|
|
||||||
|
|
||||||
define(Port, Data) ->
|
|
||||||
ok = js:define(Port, list_to_binary(Data)).
|
|
||||||
|
|
||||||
call(Port, Func, Params) ->
|
|
||||||
js:call(Port, list_to_binary(Func), Params).
|
|
|
@ -1,7 +0,0 @@
|
||||||
-module(start_ggs).
|
|
||||||
-export([start/0]).
|
|
||||||
|
|
||||||
start() ->
|
|
||||||
application:start(inets),
|
|
||||||
application:start(erlang_js),
|
|
||||||
application:start(ggs).
|
|
Reference in a new issue