Separate type definitions in their own header.

Also convert source files to utf8, update the copyright info and
other minor changes.
This commit is contained in:
Loïc Hoguin 2011-02-27 23:13:09 +01:00
parent d9cde30b0b
commit c957d9a8b9
51 changed files with 202 additions and 140 deletions

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Project-wide Erlang records.
%%
%% This file is part of EGS.
@ -17,28 +17,14 @@
%% You should have received a copy of the GNU Affero General Public License
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
%% Standard library types.
-opaque sslsocket() :: any().
%% EGS types.
-type questid() :: 0..16#ffffffff. %% @todo What's the real max?
-type zoneid() :: 0..16#ffff. %% @todo What's the real max?
-type mapid() :: 0..9999.
-type entryid() :: 0..16#ffff. %% @todo What's the real max?
-type area() :: {questid(), zoneid(), mapid()}.
-type position() :: {X :: float(), Y :: float(), Z :: float(), Dir :: float()}.
%% Records.
%% @doc Client state. One per connected client.
-record(client, {
socket :: sslsocket(),
gid :: integer(),
slot :: 0..3, %% @todo Probably should remove this one from the state.
lid = 16#ffff :: 0..16#ffff,
gid = 0 :: gid(),
slot = 0 :: character_slot(), %% @todo Probably should remove this one from the state.
lid = 16#ffff :: lid(),
areanb = 0 :: non_neg_integer()
}).
@ -46,9 +32,9 @@
%% @todo Probably can use a "param" or "extra" field to store the game-specific information (for things that don't need to be queried).
-record(users, {
%% General information.
gid :: integer(),
lid = 16#ffff :: 0..16#ffff,
pid :: pid(),
gid :: gid(),
lid = 16#ffff :: lid(),
pid :: pid(),
%% Character information.
%% @todo Specs it.
type = white,

37
include/types.hrl Normal file
View File

@ -0,0 +1,37 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Project-wide Erlang types.
%%
%% 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 <http://www.gnu.org/licenses/>.
%% Standard library types.
-opaque sslsocket() :: any().
%% EGS types.
-type gid() :: 0..16#ffffffff.
-type lid() :: 0..1023 | 16#ffff.
-type questid() :: 0..16#ffffffff. %% @todo What's the real max?
-type zoneid() :: 0..16#ffff. %% @todo What's the real max?
-type mapid() :: 0..9999.
-type entryid() :: 0..16#ffff. %% @todo What's the real max?
-type area() :: {questid(), zoneid(), mapid()}.
-type position() :: {X :: float(), Y :: float(), Z :: float(), Dir :: float()}.
-type character_slot() :: 0..3.

View File

@ -1,7 +1,7 @@
%%-*- mode: erlang -*-
{application, egs, [
{description, "EGS online action-RPG game server"},
{vsn, "0.9"},
{vsn, "0.14"},
{modules, []},
{registered, []},
{applications, [

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS startup code.
%%
%% This file is part of EGS.
@ -18,9 +18,7 @@
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
-module(egs).
-compile(export_all).
-include("include/records.hrl").
-export([start/0, stop/0, global/1, warp/4, warp/5]).
%% @spec ensure_started(App) -> ok
%% @doc Make sure the given App is started.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Accounts handling.
%%
%% This file is part of EGS.
@ -25,18 +25,20 @@
-define(SERVER, ?MODULE).
-include("include/types.hrl").
%% @todo Make accounts permanent.
%% @todo Hash the password.
%% @todo Add email, password_salt, is_ingame, register_time, last_login_time, etc.
-record(accounts, {
gid :: integer(),
gid :: gid(),
username :: string(),
password :: string(),
auth_state :: undefined | {wait_for_authentication, binary(), any()}
}).
-record(state, {
accounts = [] :: list({GID::integer(), #accounts{}}),
accounts = [] :: list({GID::gid(), #accounts{}}),
next_gid = 10000001 :: integer(),
tmp_gid = 16#ff000001 :: integer()
}).
@ -55,17 +57,17 @@ stop() ->
get_folder(GID) ->
gen_server:call(?SERVER, {get_folder, GID}).
-spec key_auth(GID::integer(), AuthKey::binary()) -> ok | {error, badarg}.
-spec key_auth(GID::gid(), AuthKey::binary()) -> ok | {error, badarg}.
%% @doc Authenticate using the given key.
key_auth(GID, AuthKey) ->
gen_server:call(?SERVER, {key_auth, GID, AuthKey}).
-spec key_auth_init(GID::integer()) -> {ok, AuthKey::binary()}.
-spec key_auth_init(GID::gid()) -> {ok, AuthKey::binary()}.
%% @doc Initialize key authentication. Obtain a key for a subsequent re-authentication on a different connection.
key_auth_init(GID) ->
gen_server:call(?SERVER, {key_auth_init, GID}).
-spec key_auth_timeout(GID::integer()) -> ok.
-spec key_auth_timeout(GID::gid()) -> ok.
%% @doc Key authentication timeout handling.
%% @todo Probably handle the authentication in a gen_fsm properly.
key_auth_timeout(GID) ->
@ -77,7 +79,7 @@ key_auth_timeout(GID) ->
login_auth(Username, Password) ->
gen_server:call(?SERVER, {login_auth, Username, Password}).
-spec tmp_gid() -> GID::integer().
-spec tmp_gid() -> GID::gid().
%% @doc Return an unused temporary GID for initial connection and APC characters.
tmp_gid() ->
gen_server:call(?SERVER, tmp_gid).

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Callbacks for the egs application.
%%
%% This file is part of EGS.
@ -21,8 +21,6 @@
-behaviour(application).
-export([start/2, stop/1]).
-include("include/records.hrl").
%% @spec start(_Type, _StartArgs) -> ServerRet
%% @doc application start callback for egs.
start(_Type, _StartArgs) ->

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Character selection callback module.
%%
%% This file is part of EGS.
@ -20,6 +20,7 @@
-module(egs_char_select).
-export([keepalive/1, info/2, cast/3, raw/3, event/2]).
-include("include/types.hrl").
-include("include/records.hrl").
%% @doc Send a keepalive.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS configuration gen_server.
%%
%% This file is part of EGS.
@ -19,6 +19,7 @@
-module(egs_conf).
-behavior(gen_server).
-export([start_link/0, stop/0, read/1, reload/0]). %% API.
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS counters database and cache manager.
%%
%% This file is part of EGS.
@ -19,12 +19,15 @@
-module(egs_counters_db).
-behavior(gen_server).
-export([start_link/0, stop/0, bg/1, opts/1, pack/1, reload/0]). %% 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).
-include("include/types.hrl").
%% API.
%% @spec start_link() -> {ok,Pid::pid()}

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc General purpose module for monitoring exit signals of linked processes.
%%
%% This file is part of EGS.
@ -18,7 +18,7 @@
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
-module(egs_exit_mon).
-export([start_link/1]). %% External.
-export([start_link/1]). %% API.
-export([start/1, loop/1]). %% Internal.
%% @spec start_link(CleanupFn) -> {ok,Pid::pid()}

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS file creation functions.
%%
%% This file is part of EGS.
@ -21,6 +21,8 @@
-export([load_counter_pack/2, load_quest_xnr/1, load_script_bin/1, load_set_rel/4, load_table_rel/1,
load_text_bin/1, load_unit_title_table_rel/2, nbl_pack/1, nbl_padded_size/1]).
-include("include/types.hrl").
%% @doc Build a counter's pack file, options and return them along with the background value.
load_counter_pack(ConfFilename, CounterNbl) ->
{ok, Settings} = file:consult(ConfFilename),

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Game callback module.
%%
%% This file is part of EGS.
@ -21,6 +21,7 @@
-export([keepalive/1, info/2, cast/3, raw/3, event/2]).
-export([char_load/2]). %% Hopefully temporary export.
-include("include/types.hrl").
-include("include/records.hrl").
%% @doc Send a keepalive.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Game server module.
%%
%% This file is part of EGS.
@ -20,6 +20,7 @@
-module(egs_game_server).
-export([start_link/1, link_exit/0, on_exit/1, init/1]).
-include("include/types.hrl").
-include("include/records.hrl").
%% @spec start_link(Port) -> {ok,Pid::pid()}

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS items database.
%%
%% This file is part of EGS.
@ -19,12 +19,14 @@
-module(egs_items_db).
-behavior(gen_server).
-export([start_link/0, stop/0, desc/1, read/1, reload/0]). %% 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).
-include("include/types.hrl").
-include("include/records.hrl").
-include("priv/items.hrl").

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Log in and authentication callback module.
%%
%% This file is part of EGS.
@ -20,6 +20,7 @@
-module(egs_login).
-export([keepalive/1, info/2, cast/3, raw/3, event/2]).
-include("include/types.hrl").
-include("include/records.hrl").
%% @doc Don't keep alive here, authentication should go fast.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Login server module.
%%
%% This file is part of EGS.
@ -20,6 +20,7 @@
-module(egs_login_server).
-export([start_link/1, init/1]).
-include("include/types.hrl").
-include("include/records.hrl").
%% @spec start_link(Port) -> {ok,Pid::pid()}

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Login and game servers low-level network handling.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS NPC database.
%%
%% This file is part of EGS.
@ -19,12 +19,14 @@
-module(egs_npc_db).
-behavior(gen_server).
-export([start_link/0, stop/0, all/0, create/2, reload/0]). %% 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).
-include("include/types.hrl").
-include("include/records.hrl").
-include("priv/npc.hrl").

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS patch files database and cache manager.
%%
%% This file is part of EGS.
@ -19,17 +19,18 @@
-module(egs_patch_files_db).
-behavior(gen_server).
-export([start_link/0, stop/0, list/0, check/3, get_size/1, get_info/1, reload/0]). %% 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).
-include_lib("kernel/include/file.hrl").
-record(state, {list_bin=[], files=[]}).
-record(file, {crc, size, folder, filename_bin, full_filename}).
%% Use the module name for the server's name.
-define(SERVER, ?MODULE).
%% API.
%% @spec start_link() -> {ok,Pid::pid()}

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Patch server module.
%%
%% This file is part of EGS.
@ -18,9 +18,11 @@
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
-module(egs_patch_server).
-export([start_link/1]). %% External.
-export([start_link/1]). %% API.
-export([listen/1, accept/1, init/1, recv/3]). %% Internal
-include("include/types.hrl").
-define(OPTIONS, [binary, {active, true}, {packet, 0}, {reuseaddr, true}, {send_timeout, 5000}]).
-record(state, {step=start, files=[]}).

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Independent implementation of the PSU protocol.
%%
%% This file is part of EGS.
@ -20,6 +20,7 @@
-module(egs_proto).
-compile(export_all).
-include("include/types.hrl").
-include("include/records.hrl").
%% @spec assert() -> ok

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS file creation functions.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Quest handler.
%%
%% This file is part of EGS.
@ -23,6 +23,8 @@
-export([start_link/2, stop/1, zone_pid/2]). %% API.
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server.
-include("include/types.hrl").
-record(state, {zones}).
%% API.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS quests database and cache manager.
%%
%% This file is part of EGS.
@ -19,14 +19,17 @@
-module(egs_quests_db).
-behavior(gen_server).
-export([start_link/0, stop/0, quest_nbl/1, zone_nbl/2, area_type/2, quest_zones/1, set/3, reload/0]). %% API.
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server.
-record(state, {quests=[], quests_bin=[], zones_bin=[], sets=[]}).
%% Use the module name for the server's name.
-define(SERVER, ?MODULE).
-include("include/types.hrl").
-record(state, {quests=[], quests_bin=[], zones_bin=[], sets=[]}).
%% API.
%% @spec start_link() -> {ok,Pid::pid()}

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Supervisor for the egs_quests gen_server.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS script compiler.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS script lexer.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS script parser.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 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.
%%
@ -20,12 +20,15 @@
-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).
-include("include/types.hrl").
%% Seasonal values: {IsSeasonal, SeasonID, QuestList}.
-define(SEASON_NONE, {0,255, []}).
-define(SEASON_PARTY, {1, 0, [1100000]}).

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Supervisor for the patch, login and game listener processes.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS shops database.
%%
%% This file is part of EGS.
@ -19,12 +19,15 @@
-module(egs_shops_db).
-behavior(gen_server).
-export([start_link/0, stop/0, nth/2, read/1, reload/0]). %% 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).
-include("include/types.hrl").
%% API.
%% @spec start_link() -> {ok,Pid::pid()}

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Supervisor for the egs application.
%%
%% This file is part of EGS.
@ -19,6 +19,7 @@
-module(egs_sup).
-behaviour(supervisor).
-export([init/1]). %% Supervisor callbacks.
-export([start_link/0]). %% Other functions.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc EGS universes handler.
%%
%% This file is part of EGS.
@ -19,14 +19,17 @@
-module(egs_universes).
-behavior(gen_server).
-export([start_link/0, stop/0, all/0, defaultid/0, enter/1, leave/1, myroomid/0, read/1, lobby_pid/2, reload/0]). %% API.
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server.
-record(state, {unis=[], lobbies=[]}).
%% Use the module name for the server's name.
-define(SERVER, ?MODULE).
-include("include/types.hrl").
-record(state, {unis=[], lobbies=[]}).
%% Default universe IDs.
-define(MYROOM_ID, 21).
-define(DEFAULT_ID, 26).

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Users handling.
%%
%% This file is part of EGS.
@ -27,10 +27,11 @@
-define(SERVER, ?MODULE).
-include("include/types.hrl").
-include("include/records.hrl").
-record(state, {
users = [] :: list({GID::integer(), #users{}})
users = [] :: list({GID::gid(), #users{}})
}).
%% API.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Zone handler.
%%
%% This file is part of EGS.
@ -23,6 +23,8 @@
-export([start_link/4, stop/1, setid/1, enter/2, leave/2, get_all_players/2, broadcast/3]). %% API.
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server.
-include("include/types.hrl").
-record(state, {
setid = 0 :: integer(),
objects = [] :: list(),

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Supervisor for the egs_zones gen_server.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Chair object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Door object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Entrance object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Exit object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Invisible block object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Label object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc NPC object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc PP cube object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Sensor object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Static model object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Type counter object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Uni cube object.
%%
%% This file is part of EGS.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Character appearance functions.
%%
%% This file is part of EGS.
@ -20,6 +20,7 @@
-module(psu_appearance).
-export([binary_to_tuple/2, tuple_to_binary/2, validate_char_create/3]).
-include("include/types.hrl").
-include("include/records.hrl").
%% @doc Convert the binary character creation appearance data into a tuple.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc General character functions.
%%
%% This file is part of EGS.
@ -24,6 +24,7 @@
race_atom_to_binary/1, race_binary_to_atom/1, stats_tuple_to_binary/1
]).
-include("include/types.hrl").
-include("include/records.hrl").
%% @doc Convert a character tuple into a binary to be sent to clients.

View File

@ -1,5 +1,5 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010 Loïc Hoguin.
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2010-2011 Loïc Hoguin.
%% @doc Party gen_server.
%%
%% This file is part of EGS.
@ -22,6 +22,8 @@
-export([start_link/1, stop/1, join/3, leave/2, get_instance/1, set_instance/2, remove_instance/1, get_member/2, remove_member/2, get_npc/1]). %% API.
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). %% gen_server.
-include("include/types.hrl").
-record(state, {free_spots, users, instancepid}).
%% API