egs_npc_db: Remove count/0, it's never needed standalone.
This commit is contained in:
parent
94e902d07e
commit
a6563c7378
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
-module(egs_npc_db).
|
-module(egs_npc_db).
|
||||||
-behavior(gen_server).
|
-behavior(gen_server).
|
||||||
-export([start_link/0, stop/0, all/0, count/0, create/2, reload/0]). %% API.
|
-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.
|
-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.
|
%% Use the module name for the server's name.
|
||||||
@ -42,10 +42,6 @@ stop() ->
|
|||||||
all() ->
|
all() ->
|
||||||
gen_server:call(?SERVER, all).
|
gen_server:call(?SERVER, all).
|
||||||
|
|
||||||
%% @spec count() -> integer()
|
|
||||||
count() ->
|
|
||||||
gen_server:call(?SERVER, count).
|
|
||||||
|
|
||||||
%% @spec read(NPCid, BaseLevel) -> term()
|
%% @spec read(NPCid, BaseLevel) -> term()
|
||||||
create(NPCid, BaseLevel) ->
|
create(NPCid, BaseLevel) ->
|
||||||
gen_server:call(?SERVER, {create, NPCid, BaseLevel}).
|
gen_server:call(?SERVER, {create, NPCid, BaseLevel}).
|
||||||
@ -63,9 +59,6 @@ init([]) ->
|
|||||||
handle_call(all, _From, State) ->
|
handle_call(all, _From, State) ->
|
||||||
{reply, ?NPC, State};
|
{reply, ?NPC, State};
|
||||||
|
|
||||||
handle_call(count, _From, State) ->
|
|
||||||
{reply, length(?NPC), State};
|
|
||||||
|
|
||||||
%% @todo Handle stats, experience, based on level.
|
%% @todo Handle stats, experience, based on level.
|
||||||
handle_call({create, NPCid, BaseLevel}, _From, State) ->
|
handle_call({create, NPCid, BaseLevel}, _From, State) ->
|
||||||
NPCGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1),
|
NPCGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1),
|
||||||
|
@ -632,8 +632,9 @@ send_1601(PartyPos) ->
|
|||||||
%% @doc Send the player's NPC and PM information.
|
%% @doc Send the player's NPC and PM information.
|
||||||
%% @todo The value 4 is the card priority. Find what 3 is. When sending, the first 0 is an unknown value.
|
%% @todo The value 4 is the card priority. Find what 3 is. When sending, the first 0 is an unknown value.
|
||||||
send_1602() ->
|
send_1602() ->
|
||||||
NbNPC = egs_npc_db:count(),
|
NPCList = egs_npc_db:all(),
|
||||||
Bin = iolist_to_binary([<< NPCid:8, 0, 4, 0, 3, 0:24 >> || {NPCid, _Data} <- egs_npc_db:all()]),
|
NbNPC = length(NPCList),
|
||||||
|
Bin = iolist_to_binary([<< NPCid:8, 0, 4, 0, 3, 0:24 >> || {NPCid, _Data} <- NPCList]),
|
||||||
MiddlePaddingSize = 8 * (344 - byte_size(Bin)),
|
MiddlePaddingSize = 8 * (344 - byte_size(Bin)),
|
||||||
PMName = "My PM",
|
PMName = "My PM",
|
||||||
UCS2PMName = << << X:8, 0:8 >> || X <- PMName >>,
|
UCS2PMName = << << X:8, 0:8 >> || X <- PMName >>,
|
||||||
|
Loading…
Reference in New Issue
Block a user