egs_zones: Roughly initialize all the objects available so far.

This commit is contained in:
Loïc Hoguin 2011-02-17 17:12:57 +01:00
parent bf7fa44897
commit 526f281e2b
13 changed files with 351 additions and 2 deletions

View File

@ -109,5 +109,6 @@ create_objects([{ObjType, ObjPos, ObjRot, ObjParams}|Tail], MapNb, GroupNb, Obje
create_objects(Tail, MapNb, GroupNb, ObjectNb + 1, [{{MapNb, GroupNb, ObjectNb}, Object}|Acc]).
%% @doc Create the given object.
create_object(ObjType, ObjPos, ObjRot, ObjParams) ->
{undefined, ObjType}.
create_object(Type, Pos, Rot, Params) ->
M = list_to_existing_atom(lists:flatten(["egs_obj_", atom_to_list(Type)])),
M:init(Pos, Rot, Params).

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Chair object.
%%
%% 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/>.
-module(egs_obj_chair).
-export([init/3]).
-record(egs_obj_chair, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_chair{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Door object.
%%
%% 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/>.
-module(egs_obj_door).
-export([init/3]).
-record(egs_obj_door, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_door{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Entrance object.
%%
%% 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/>.
-module(egs_obj_entrance).
-export([init/3]).
-record(egs_obj_entrance, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_entrance{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Exit object.
%%
%% 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/>.
-module(egs_obj_exit).
-export([init/3]).
-record(egs_obj_exit, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_exit{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Invisible block object.
%%
%% 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/>.
-module(egs_obj_invisible_block).
-export([init/3]).
-record(egs_obj_invisible_block, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_invisible_block{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Label object.
%%
%% 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/>.
-module(egs_obj_label).
-export([init/3]).
-record(egs_obj_label, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_label{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc NPC object.
%%
%% 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/>.
-module(egs_obj_npc).
-export([init/3]).
-record(egs_obj_npc, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_npc{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc PP cube object.
%%
%% 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/>.
-module(egs_obj_pp_cube).
-export([init/3]).
-record(egs_obj_pp_cube, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_pp_cube{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Sensor object.
%%
%% 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/>.
-module(egs_obj_sensor).
-export([init/3]).
-record(egs_obj_sensor, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_sensor{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Static model object.
%%
%% 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/>.
-module(egs_obj_static_model).
-export([init/3]).
-record(egs_obj_static_model, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_static_model{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Type counter object.
%%
%% 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/>.
-module(egs_obj_type_counter).
-export([init/3]).
-record(egs_obj_type_counter, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_type_counter{pos=Pos, rot=Rot}.

View File

@ -0,0 +1,29 @@
%% @author Loïc Hoguin <essen@dev-extend.eu>
%% @copyright 2011 Loïc Hoguin.
%% @doc Uni cube object.
%%
%% 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/>.
-module(egs_obj_uni_cube).
-export([init/3]).
-record(egs_obj_uni_cube, {
pos :: {X :: float(), Y :: float(), Z :: float()},
rot :: {Rx :: float(), Ry :: float(), Zy :: float()}
}).
init(Pos, Rot, Params) ->
#egs_obj_uni_cube{pos=Pos, rot=Rot}.