From b4123b743399187bd2831321f21d71cb4647e92a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 11 Oct 2010 17:16:07 +0200 Subject: [PATCH] Introduce egs_npc_db for NPC database handling. --- include/psu/npc.hrl | 145 ----------------------------------------- include/records.hrl | 65 ++++++++++--------- priv/npc.hrl | 151 +++++++++++++++++++++++++++++++++++++++++++ src/egs.app.src | 4 +- src/egs_game.erl | 4 +- src/egs_npc_db.erl | 111 +++++++++++++++++++++++++++++++ src/egs_sup.erl | 1 + src/psu/psu_game.erl | 5 +- src/psu/psu_npc.erl | 46 ------------- 9 files changed, 303 insertions(+), 229 deletions(-) delete mode 100644 include/psu/npc.hrl create mode 100644 priv/npc.hrl create mode 100644 src/egs_npc_db.erl delete mode 100644 src/psu/psu_npc.erl diff --git a/include/psu/npc.hrl b/include/psu/npc.hrl deleted file mode 100644 index 07c80ac..0000000 --- a/include/psu/npc.hrl +++ /dev/null @@ -1,145 +0,0 @@ -%% @author Loïc Hoguin -%% @copyright 2010 Loïc Hoguin. -%% @doc NPC characters definitions. -%% -%% 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 . - --record(psu_npc, {has_card, name, race, gender, class, level, appearance}). - --define(NPC, [ - %% This card doesn't actually exist. - %% { 0, #psu_npc{has_card=false, name="Ethan Waber", level=+0}}, - - { 1, #psu_npc{has_card=true, name="Hyuga Ryght", race=human, gender=male, class=hunter, level=+3, - appearance=#flesh_appearance{voicetype=54, jacket=16#00860300, pants=16#00860301, shoes=16#00860302, ears=16#00860303, face=16#00860304, hairstyle=16#00860305} - }}, - { 2, #psu_npc{has_card=true, name="Karen Erra", race=newman, gender=female, class=hunter, level=+3, - appearance=#flesh_appearance{voicetype=52, jacket=16#00851300, pants=16#00851301, shoes=16#00851302, ears=16#00851303, face=16#00851304, hairstyle=16#00851305} - }}, - { 3, #psu_npc{has_card=true, name="Leogini Berafort", race=beast, gender=male, class=hunter, level=+3, - appearance=#flesh_appearance{voicetype=55, jacket=16#00870300, pants=16#00870301, shoes=16#00870302, ears=16#00870303, face=16#00870304, hairstyle=16#00870305} - }}, - { 4, #psu_npc{has_card=true, name="Lucaim Nav", race=cast, gender=male, class=hunter, level=+5, - appearance=#metal_appearance{voicetype=57, torso=16#00880300, legs=16#00880301, arms=16#00880302, ears=16#00880303, face=16#00880304, headtype=16#00880305} - }}, - { 5, #psu_npc{has_card=true, name="Maya Shidow", race=newman, gender=female, class=force, level=+3, - appearance=#flesh_appearance{voicetype=58, jacket=16#00891300, pants=16#00891301, shoes=16#00891302, ears=16#00891303, face=16#00891304, hairstyle=16#00891305} - }}, - { 6, #psu_npc{has_card=true, name="Tonnio Rhima", race=beast, gender=male, class=hunter, level=+3, - appearance=#flesh_appearance{voicetype=56, jacket=16#008a0300, pants=16#008a0301, shoes=16#008a0302, ears=16#008a0303, face=16#008a0304, hairstyle=16#008a0305} - }}, - { 7, #psu_npc{has_card=true, name="Lou", race=cast, gender=female, class=hunter, level=+3, - appearance=#metal_appearance{voicetype=59, torso=16#008b1300, legs=16#008b1301, arms=16#008b1302, ears=16#008b1303, face=16#008b1304, headtype=16#008b1305} - }}, - - %~ { 8, #psu_npc{has_card=true, name="Mirei Mikuna", level=+0}}, %% @todo Seems to be Hatless Lou instead; 59 b013 - - { 9, #psu_npc{has_card=true, name="Hiru Vol", race=newman, gender=male, class=force, level=+3, - appearance=#flesh_appearance{voicetype=65, jacket=16#008d0300, pants=16#008d0301, shoes=16#008d0302, ears=16#008d0303, face=16#008d0304, hairstyle=16#008d0305} - }}, - {10, #psu_npc{has_card=true, name="No Vol", race=human, gender=male, class=ranger, level=+3, - appearance=#flesh_appearance{voicetype=66, jacket=16#008e0300, pants=16#008e0301, shoes=16#008e0302, ears=16#008e0303, face=16#008e0304, hairstyle=16#008e0305} - }}, - {11, #psu_npc{has_card=true, name="Do Vol", race=beast, gender=male, class=hunter, level=+3, - appearance=#flesh_appearance{voicetype=67, jacket=16#008f0300, pants=16#008f0301, shoes=16#008f0302, ears=16#008f0303, face=16#008f0304, hairstyle=16#008f0305} - }}, - {12, #psu_npc{has_card=true, name="Liina Sukaya", race=beast, gender=female, class=guntecher, level=+3, - appearance=#flesh_appearance{voicetype=64, jacket=16#00921300, pants=16#00921301, shoes=16#00921302, ears=16#00921303, face=16#00921304, hairstyle=16#00921305} - }}, - {13, #psu_npc{has_card=true, name="Alfort Tylor", race=beast, gender=male, class=fortefighter, level=+5, - appearance=#flesh_appearance{voicetype=63, jacket=16#00910300, pants=16#00910301, shoes=16#00910302, ears=16#00910303, face=16#00910304, hairstyle=16#00910305} - }}, - {14, #psu_npc{has_card=true, name="Obel Dallgun", race=human, gender=male, class=fortefighter, level=+5, - appearance=#flesh_appearance{voicetype=60, jacket=16#008c0300, pants=16#008c0301, shoes=16#008c0302, ears=16#008c0303, face=16#008c0304, hairstyle=16#008c0305} - }}, - {15, #psu_npc{has_card=true, name="Ethan Waber", race=human, gender=male, class=hunter, level=+5, - appearance=#flesh_appearance{voicetype=51, jacket=16#00840300, pants=16#00840301, shoes=16#00840302, ears=16#00840303, face=16#00840304, hairstyle=16#00840305} - }}, - {16, #psu_npc{has_card=true, name="Fulyen Curtz", race=cast, gender=male, class=hunter, level=+5, - appearance=#metal_appearance{voicetype=68, torso=16#00950300, legs=16#00950301, arms=16#00950302, ears=16#00950303, face=16#00950304, headtype=16#00950305} - }}, - {17, #psu_npc{has_card=true, name="Renvolt Magashi", race=cast, gender=male, class=hunter, level=+10, - appearance=#metal_appearance{voicetype=69, torso=16#00900300, legs=16#00900301, arms=16#00900302, ears=16#00900303, face=16#00900304, headtype=16#00900305} - }}, - {18, #psu_npc{has_card=true, name="Lumia Waber", race=human, gender=female, class=guntecher, level=-5, - appearance=#flesh_appearance{voicetype=61, jacket=16#00931300, pants=16#00931301, shoes=16#00931302, ears=16#00931303, face=16#00931304, hairstyle=16#00931305} - }}, - - %~ {19, #psu_npc{has_card=true, name="Remlia Norphe", level=+0}}, %% @todo Missing data. - - {20, #psu_npc{has_card=true, name="Clamp Manyel", race=human, gender=male, class=hunter, level=-3, - appearance=#flesh_appearance{voicetype=6, jacket=16#00960300, pants=16#00960301, shoes=16#00960302, ears=16#00960303, face=16#00960304, hairstyle=16#00960305} - }}, - {21, #psu_npc{has_card=true, name="Kanal Tomrain", race=human, gender=male, class=hunter, level=-3, - appearance=#flesh_appearance{voicetype=72, jacket=16#009d0300, pants=16#009d0301, shoes=16#009d0302, ears=16#009d0303, face=16#009d0304, hairstyle=16#009d0305} - }}, - {22, #psu_npc{has_card=true, name="Mina", race=human, gender=female, class=hunter, level=+0, - appearance=#flesh_appearance{voicetype=87, jacket=16#009c1300, pants=16#009c1301, shoes=16#009c1302, ears=16#009c1303, face=16#009c1304, hairstyle=16#009c1305} - }}, - - %~ {23, #psu_npc{has_card=true, name="Hal", level=+0}}, %% @todo Missing data. - - {24, #psu_npc{has_card=true, name="Fulyen Curtz", race=cast, gender=male, class=hunter, level=+5, - appearance=#metal_appearance{voicetype=68, torso=16#00b80300, legs=16#00b80301, arms=16#00b80302, ears=16#00b80303, face=16#00b80304, headtype=16#00b80305} - }}, - {25, #psu_npc{has_card=true, name="Laia Martinez", race=beast, gender=female, class=hunter, level=+3, - appearance=#flesh_appearance{voicetype=102, jacket=16#00c41300, pants=16#00c41301, shoes=16#00c41302, ears=16#00c41303, face=16#00c41304, hairstyle=16#00c41305} - }}, - {26, #psu_npc{has_card=true, name="Karen Erra", race=newman, gender=female, class=wartecher, level=+3, - appearance=#flesh_appearance{voicetype=52, jacket=16#00ad1300, pants=16#00ad1301, shoes=16#00ad1302, ears=16#00ad1303, face=16#00ad1304, hairstyle=16#00ad1305} - }}, - - %~ {27, #psu_npc{has_card=false, name="Mirei Mikuna", level=+0}}, %% @todo Missing data. - %~ {28, #psu_npc{has_card=false, name="Obel Dallgun", level=+0}}, %% @todo Orson Waber is found here. But for now Orson Waber is put on spot 30 instead. - - {29, #psu_npc{has_card=true, name="Maira Klein", race=human, gender=female, class=hunter, level=-10, - appearance=#flesh_appearance{voicetype=18, jacket=16#00a91300, pants=16#00a91301, shoes=16#00a91302, ears=16#00a91303, face=16#00a91304, hairstyle=16#00a91305} - }}, - {30, #psu_npc{has_card=true, name="Orson Waber", race=human, gender=male, class=protranser, level=+5, - appearance=#flesh_appearance{voicetype=103, jacket=16#00b20300, pants=16#00b20301, shoes=16#00b20302, ears=16#00b20303, face=16#00b20304, hairstyle=16#00b20305} - }}, - - %~ {31, #psu_npc{has_card=false, name="Fulyen Curtz", level=+0}}, %% @todo Missing data. - - {32, #psu_npc{has_card=true, name="Bruce Boyde", race=human, gender=male, class=hunter, level=+3, - appearance=#flesh_appearance{voicetype=74, jacket=16#00bb0300, pants=16#00bb0301, shoes=16#00bb0302, ears=16#00bb0303, face=16#00bb0304, hairstyle=16#00bb0305} - }}, - {33, #psu_npc{has_card=true, name="Ethan Waber", race=human, gender=male, class=hunter, level=+5, - appearance=#flesh_appearance{voicetype=51, jacket=16#00c50300, pants=16#00c50301, shoes=16#00c50302, ears=16#00c50303, face=16#00c50304, hairstyle=16#00c50305} - }}, - {34, #psu_npc{has_card=true, name="Vivienne", race=cast, gender=female, class=hunter, level=-5, - appearance=#metal_appearance{voicetype=0, torso=16#009a1300, legs=16#009a1301, arms=16#009a1302, ears=16#009a1303, face=16#009a1304, headtype=16#009a1305} - }}, - - %~ {35, #psu_npc{has_card=false, name="Helga", level=+0}}, %% @todo Missing data. Voice 51? - %~ {36, #psu_npc{has_card=false, name="Hakana Kutanami", level=+0}}, %% @todo Find the right appearance. - %~ {37, #psu_npc{has_card=false, name="Liche Baratse", level=+0}}, %% @todo Find the right appearance. - - {38, #psu_npc{has_card=true, name="Howzer", race=human, gender=male, class=fortefighter, level=+0, - appearance=#flesh_appearance{voicetype=69, jacket=16#00b10300, pants=16#00b10301, shoes=16#00b10302, ears=16#00b10303, face=16#00b10304, hairstyle=16#00b10305} - }}, - {39, #psu_npc{has_card=true, name="Rutsu", race=newman, gender=male, class=fortetecher, level=+0, - appearance=#flesh_appearance{voicetype=7, jacket=16#00b40300, pants=16#00b40301, shoes=16#00b40302, ears=16#00b40303, face=16#00b40304, hairstyle=16#00b40305} - }}, - {40, #psu_npc{has_card=true, name="Lumia Waber", race=human, gender=female, class=guntecher, level=-5, - appearance=#flesh_appearance{voicetype=61, jacket=16#00b31300, pants=16#00b31301, shoes=16#00b31302, ears=16#00b31303, face=16#00b31304, hairstyle=16#00b31305} - }}, - {41, #psu_npc{has_card=true, name="Laia Martinez", race=beast, gender=female, class=fortefighter, level=+3, - appearance=#flesh_appearance{voicetype=102, jacket=16#00b51300, pants=16#00b51301, shoes=16#00b51302, ears=16#00b51303, face=16#00b51304, hairstyle=16#00b51305} - }} - - %~ {42, #psu_npc{has_card=true, name="My PM", level=+0}} %% @todo Not sure how to handle those yet. Also missing data for a bunch of them. -]). diff --git a/include/records.hrl b/include/records.hrl index 47b8704..6a33ea4 100644 --- a/include/records.hrl +++ b/include/records.hrl @@ -23,10 +23,42 @@ %% @doc Accounts. So far only used for storing temporary information. %% @todo Hash the password. %% @todo Add email, password_salt, is_ingame, register_time, last_login_time, etc. --record(accounts, { - gid, username, password, auth_state +-record(accounts, {gid, username, password, auth_state}). + +%% @doc NPC configuration data. +%% @todo Add inventory, AI parameters. +-record(npc, {name, race, gender, class, level_diff, appearance}). + +%% @doc Character appearance data structure, flesh version. +-record(flesh_appearance, { + voicetype, voicepitch=127, + jacket, pants, shoes, ears, face, hairstyle, + jacketcolor=0, pantscolor=0, shoescolor=0, lineshieldcolor=0, badge=0, + eyebrows=0, eyelashes=0, eyesgroup=0, eyes=0, + bodysuit=0, + eyescolory=32767, eyescolorx=0, + lipsintensity=32767, lipscolory=32767, lipscolorx=0, + skincolor=65535, + hairstylecolory=32767, hairstylecolorx=0, + proportion=65535, proportionboxx=65535, proportionboxy=65535, + faceboxx=65535, faceboxy=65535 }). +%% @doc Character appearance data structure, metal version. +-record(metal_appearance, { + voicetype, voicepitch=127, + torso, legs, arms, ears, face, headtype, + maincolor=0, lineshieldcolor=0, + eyebrows=0, eyelashes=0, eyesgroup=0, eyes=0, + eyescolory=32767, eyescolorx=0, + bodycolor=65535, subcolor=196607, + hairstylecolory=32767, hairstylecolorx=0, + proportion=65535, proportionboxx=65535, proportionboxy=65535, + faceboxx=65535, faceboxy=65535 +}). + +%% Past this point needs to be reviewed. + %% @doc Table containing counters current values. -record(counters, {name, id}). @@ -59,35 +91,6 @@ -record(stats, {atp, ata, tp, dfp, evp, mst, sta}). -%% @doc Character appearance data structure, flesh version. - --record(flesh_appearance, { - voicetype, voicepitch=127, - jacket, pants, shoes, ears, face, hairstyle, - jacketcolor=0, pantscolor=0, shoescolor=0, lineshieldcolor=0, badge=0, - eyebrows=0, eyelashes=0, eyesgroup=0, eyes=0, - bodysuit=0, - eyescolory=32767, eyescolorx=0, - lipsintensity=32767, lipscolory=32767, lipscolorx=0, - skincolor=65535, - hairstylecolory=32767, hairstylecolorx=0, - proportion=65535, proportionboxx=65535, proportionboxy=65535, - faceboxx=65535, faceboxy=65535 -}). - -%% @doc Character appearance data structure, metal version. --record(metal_appearance, { - voicetype, voicepitch=127, - torso, legs, arms, ears, face, headtype, - maincolor=0, lineshieldcolor=0, - eyebrows=0, eyelashes=0, eyesgroup=0, eyes=0, - eyescolory=32767, eyescolorx=0, - bodycolor=65535, subcolor=196607, - hairstylecolory=32767, hairstylecolorx=0, - proportion=65535, proportionboxx=65535, proportionboxy=65535, - faceboxx=65535, faceboxy=65535 -}). - %% @doc Character options data structure. -record(options, {textdisplayspeed, sound, musicvolume, soundeffectvolume, vibration, radarmapdisplay, diff --git a/priv/npc.hrl b/priv/npc.hrl new file mode 100644 index 0000000..d6106b7 --- /dev/null +++ b/priv/npc.hrl @@ -0,0 +1,151 @@ +%% 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 . + +-define(NPC, [ + +%% NPCid numbers start at 1. + +{ 1, #npc{name="Hyuga Ryght", race=human, gender=male, class=hunter, level_diff=+3, + appearance=#flesh_appearance{voicetype=54, jacket=16#00860300, pants=16#00860301, shoes=16#00860302, ears=16#00860303, face=16#00860304, hairstyle=16#00860305} +}}, +{ 2, #npc{name="Karen Erra", race=newman, gender=female, class=hunter, level_diff=+3, + appearance=#flesh_appearance{voicetype=52, jacket=16#00851300, pants=16#00851301, shoes=16#00851302, ears=16#00851303, face=16#00851304, hairstyle=16#00851305} +}}, +{ 3, #npc{name="Leogini Berafort", race=beast, gender=male, class=hunter, level_diff=+3, + appearance=#flesh_appearance{voicetype=55, jacket=16#00870300, pants=16#00870301, shoes=16#00870302, ears=16#00870303, face=16#00870304, hairstyle=16#00870305} +}}, +{ 4, #npc{name="Lucaim Nav", race=cast, gender=male, class=hunter, level_diff=+5, + appearance=#metal_appearance{voicetype=57, torso=16#00880300, legs=16#00880301, arms=16#00880302, ears=16#00880303, face=16#00880304, headtype=16#00880305} +}}, +{ 5, #npc{name="Maya Shidow", race=newman, gender=female, class=force, level_diff=+3, + appearance=#flesh_appearance{voicetype=58, jacket=16#00891300, pants=16#00891301, shoes=16#00891302, ears=16#00891303, face=16#00891304, hairstyle=16#00891305} +}}, +{ 6, #npc{name="Tonnio Rhima", race=beast, gender=male, class=hunter, level_diff=+3, + appearance=#flesh_appearance{voicetype=56, jacket=16#008a0300, pants=16#008a0301, shoes=16#008a0302, ears=16#008a0303, face=16#008a0304, hairstyle=16#008a0305} +}}, +{ 7, #npc{name="Lou", race=cast, gender=female, class=hunter, level_diff=+3, + appearance=#metal_appearance{voicetype=59, torso=16#008b1300, legs=16#008b1301, arms=16#008b1302, ears=16#008b1303, face=16#008b1304, headtype=16#008b1305} +}}, + +%% @todo Card 8 seems to be Hatless Lou (59 b013) by default, although the name in the card says Mirei Mikuna. +%% { 8, #npc{name="Mirei Mikuna", level_diff=+0}}, + +{ 9, #npc{name="Hiru Vol", race=newman, gender=male, class=force, level_diff=+3, + appearance=#flesh_appearance{voicetype=65, jacket=16#008d0300, pants=16#008d0301, shoes=16#008d0302, ears=16#008d0303, face=16#008d0304, hairstyle=16#008d0305} +}}, +{10, #npc{name="No Vol", race=human, gender=male, class=ranger, level_diff=+3, + appearance=#flesh_appearance{voicetype=66, jacket=16#008e0300, pants=16#008e0301, shoes=16#008e0302, ears=16#008e0303, face=16#008e0304, hairstyle=16#008e0305} +}}, +{11, #npc{name="Do Vol", race=beast, gender=male, class=hunter, level_diff=+3, + appearance=#flesh_appearance{voicetype=67, jacket=16#008f0300, pants=16#008f0301, shoes=16#008f0302, ears=16#008f0303, face=16#008f0304, hairstyle=16#008f0305} +}}, +{12, #npc{name="Liina Sukaya", race=beast, gender=female, class=guntecher, level_diff=+3, + appearance=#flesh_appearance{voicetype=64, jacket=16#00921300, pants=16#00921301, shoes=16#00921302, ears=16#00921303, face=16#00921304, hairstyle=16#00921305} +}}, +{13, #npc{name="Alfort Tylor", race=beast, gender=male, class=fortefighter, level_diff=+5, + appearance=#flesh_appearance{voicetype=63, jacket=16#00910300, pants=16#00910301, shoes=16#00910302, ears=16#00910303, face=16#00910304, hairstyle=16#00910305} +}}, +{14, #npc{name="Obel Dallgun", race=human, gender=male, class=fortefighter, level_diff=+5, + appearance=#flesh_appearance{voicetype=60, jacket=16#008c0300, pants=16#008c0301, shoes=16#008c0302, ears=16#008c0303, face=16#008c0304, hairstyle=16#008c0305} +}}, +{15, #npc{name="Ethan Waber", race=human, gender=male, class=hunter, level_diff=+5, + appearance=#flesh_appearance{voicetype=51, jacket=16#00840300, pants=16#00840301, shoes=16#00840302, ears=16#00840303, face=16#00840304, hairstyle=16#00840305} +}}, +{16, #npc{name="Fulyen Curtz", race=cast, gender=male, class=hunter, level_diff=+5, + appearance=#metal_appearance{voicetype=68, torso=16#00950300, legs=16#00950301, arms=16#00950302, ears=16#00950303, face=16#00950304, headtype=16#00950305} +}}, +{17, #npc{name="Renvolt Magashi", race=cast, gender=male, class=hunter, level_diff=+10, + appearance=#metal_appearance{voicetype=69, torso=16#00900300, legs=16#00900301, arms=16#00900302, ears=16#00900303, face=16#00900304, headtype=16#00900305} +}}, +{18, #npc{name="Lumia Waber", race=human, gender=female, class=guntecher, level_diff=-5, + appearance=#flesh_appearance{voicetype=61, jacket=16#00931300, pants=16#00931301, shoes=16#00931302, ears=16#00931303, face=16#00931304, hairstyle=16#00931305} +}}, + +%% @todo We don't have any data for card 19 other than the card name: Remlia Norphe. +%% {19, #npc{name="Remlia Norphe", level_diff=+0}}, + +{20, #npc{name="Clamp Manyel", race=human, gender=male, class=hunter, level_diff=-3, + appearance=#flesh_appearance{voicetype=6, jacket=16#00960300, pants=16#00960301, shoes=16#00960302, ears=16#00960303, face=16#00960304, hairstyle=16#00960305} +}}, +{21, #npc{name="Kanal Tomrain", race=human, gender=male, class=hunter, level_diff=-3, + appearance=#flesh_appearance{voicetype=72, jacket=16#009d0300, pants=16#009d0301, shoes=16#009d0302, ears=16#009d0303, face=16#009d0304, hairstyle=16#009d0305} +}}, +{22, #npc{name="Mina", race=human, gender=female, class=hunter, level_diff=+0, + appearance=#flesh_appearance{voicetype=87, jacket=16#009c1300, pants=16#009c1301, shoes=16#009c1302, ears=16#009c1303, face=16#009c1304, hairstyle=16#009c1305} +}}, + +%% @todo We don't have any data for card 23 other than the card name: Hal. +%% {23, #npc{name="Hal", level_diff=+0}}, + +{24, #npc{name="Fulyen Curtz", race=cast, gender=male, class=hunter, level_diff=+5, + appearance=#metal_appearance{voicetype=68, torso=16#00b80300, legs=16#00b80301, arms=16#00b80302, ears=16#00b80303, face=16#00b80304, headtype=16#00b80305} +}}, +{25, #npc{name="Laia Martinez", race=beast, gender=female, class=hunter, level_diff=+3, + appearance=#flesh_appearance{voicetype=102, jacket=16#00c41300, pants=16#00c41301, shoes=16#00c41302, ears=16#00c41303, face=16#00c41304, hairstyle=16#00c41305} +}}, +{26, #npc{name="Karen Erra", race=newman, gender=female, class=wartecher, level_diff=+3, + appearance=#flesh_appearance{voicetype=52, jacket=16#00ad1300, pants=16#00ad1301, shoes=16#00ad1302, ears=16#00ad1303, face=16#00ad1304, hairstyle=16#00ad1305} +}}, + +%% @todo We don't have any data for card 27 other than the card name: Mirei Mikuna. +%% {27, #npc{name="Mirei Mikuna", level_diff=+0}}, + +%% @todo Apparently card 28 is used in story missions for Orson Waber. But Orson's real card is card 30. +%% {28, #npc{name="Obel Dallgun", level_diff=+0}}, + +{29, #npc{name="Maira Klein", race=human, gender=female, class=hunter, level_diff=-10, + appearance=#flesh_appearance{voicetype=18, jacket=16#00a91300, pants=16#00a91301, shoes=16#00a91302, ears=16#00a91303, face=16#00a91304, hairstyle=16#00a91305} +}}, +{30, #npc{name="Orson Waber", race=human, gender=male, class=protranser, level_diff=+5, + appearance=#flesh_appearance{voicetype=103, jacket=16#00b20300, pants=16#00b20301, shoes=16#00b20302, ears=16#00b20303, face=16#00b20304, hairstyle=16#00b20305} +}}, + +%% @todo We don't have any data for card 31 other than the card name: Fulyen Curtz. +%% {31, #npc{name="Fulyen Curtz", level_diff=+0}}, + +{32, #npc{name="Bruce Boyde", race=human, gender=male, class=hunter, level_diff=+3, + appearance=#flesh_appearance{voicetype=74, jacket=16#00bb0300, pants=16#00bb0301, shoes=16#00bb0302, ears=16#00bb0303, face=16#00bb0304, hairstyle=16#00bb0305} +}}, +{33, #npc{name="Ethan Waber", race=human, gender=male, class=hunter, level_diff=+5, + appearance=#flesh_appearance{voicetype=51, jacket=16#00c50300, pants=16#00c50301, shoes=16#00c50302, ears=16#00c50303, face=16#00c50304, hairstyle=16#00c50305} +}}, +{34, #npc{name="Vivienne", race=cast, gender=female, class=hunter, level_diff=-5, + appearance=#metal_appearance{voicetype=0, torso=16#009a1300, legs=16#009a1301, arms=16#009a1302, ears=16#009a1303, face=16#009a1304, headtype=16#009a1305} +}}, + +%% @todo We don't have any data for card 35 other than the card name: Helga. +%% {35, #npc{name="Helga", level_diff=+0}}, + +%% @todo Many appearances for cards 36 and 37. Not sure which is the right one. +%% {36, #npc{name="Hakana Kutanami", level_diff=+0}}, +%% {37, #npc{name="Liche Baratse", level_diff=+0}}, + +{38, #npc{name="Howzer", race=human, gender=male, class=fortefighter, level_diff=+0, + appearance=#flesh_appearance{voicetype=69, jacket=16#00b10300, pants=16#00b10301, shoes=16#00b10302, ears=16#00b10303, face=16#00b10304, hairstyle=16#00b10305} +}}, +{39, #npc{name="Rutsu", race=newman, gender=male, class=fortetecher, level_diff=+0, + appearance=#flesh_appearance{voicetype=7, jacket=16#00b40300, pants=16#00b40301, shoes=16#00b40302, ears=16#00b40303, face=16#00b40304, hairstyle=16#00b40305} +}}, +{40, #npc{name="Lumia Waber", race=human, gender=female, class=guntecher, level_diff=-5, + appearance=#flesh_appearance{voicetype=61, jacket=16#00b31300, pants=16#00b31301, shoes=16#00b31302, ears=16#00b31303, face=16#00b31304, hairstyle=16#00b31305} +}}, +{41, #npc{name="Laia Martinez", race=beast, gender=female, class=fortefighter, level_diff=+3, + appearance=#flesh_appearance{voicetype=102, jacket=16#00b51300, pants=16#00b51301, shoes=16#00b51302, ears=16#00b51303, face=16#00b51304, hairstyle=16#00b51305} +}} + +%% @todo Not sure how to handle those yet. Also missing a bunch of PM data anyway. +%% {42, #npc{name="My PM", level_diff=+0}} + +]. diff --git a/src/egs.app.src b/src/egs.app.src index e202429..b33f524 100644 --- a/src/egs.app.src +++ b/src/egs.app.src @@ -1,7 +1,7 @@ %%-*- mode: erlang -*- {application, egs, [ {description, "EGS online action-RPG game server"}, - {vsn, "0.1"}, + {vsn, "0.6"}, {modules, [ egs, egs_app, @@ -9,6 +9,7 @@ egs_conf, egs_seasons, egs_items_db, + egs_npc_db, egs_shops_db, egs_accounts, egs_game_server, @@ -28,7 +29,6 @@ psu_appearance, psu_characters, psu_party, - psu_npc, psu_parser ]}, {registered, []}, diff --git a/src/egs_game.erl b/src/egs_game.erl index 4d9f0f2..f36c559 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -470,7 +470,7 @@ event({npc_force_invite, NPCid}, State=#state{gid=GID}) -> {ok, User} = egs_user_model:read(GID), %% Create NPC. log("npc force invite ~p", [NPCid]), - TmpNPCUser = psu_npc:user_init(NPCid, ((User#egs_user_model.character)#characters.mainlevel)#level.number), + TmpNPCUser = egs_npc_db:create(NPCid, ((User#egs_user_model.character)#characters.mainlevel)#level.number), %% Create and join party. case User#egs_user_model.partypid of undefined -> @@ -501,7 +501,7 @@ event({npc_invite, NPCid}, #state{gid=GID}) -> {ok, User} = egs_user_model:read(GID), %% Create NPC. log("invited npcid ~b", [NPCid]), - TmpNPCUser = psu_npc:user_init(NPCid, ((User#egs_user_model.character)#characters.mainlevel)#level.number), + TmpNPCUser = egs_npc_db:create(NPCid, ((User#egs_user_model.character)#characters.mainlevel)#level.number), %% Create and join party. case User#egs_user_model.partypid of undefined -> diff --git a/src/egs_npc_db.erl b/src/egs_npc_db.erl new file mode 100644 index 0000000..9687533 --- /dev/null +++ b/src/egs_npc_db.erl @@ -0,0 +1,111 @@ +%% @author Loïc Hoguin +%% @copyright 2010 Loïc Hoguin. +%% @doc EGS NPC database. +%% +%% 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 . + +-module(egs_npc_db). +-behavior(gen_server). +-export([start_link/0, stop/0, all/0, count/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/records.hrl"). +-include("priv/npc.hrl"). + +%% API. + +%% @spec start_link() -> {ok,Pid::pid()} +start_link() -> + gen_server:start_link({local, ?SERVER}, ?MODULE, [], []). + +%% @spec stop() -> stopped +stop() -> + gen_server:call(?SERVER, stop). + +%% @spec all() -> List +all() -> + gen_server:call(?SERVER, all). + +%% @spec count() -> integer() +count() -> + gen_server:call(?SERVER, count). + +%% @spec read(NPCid, BaseLevel) -> term() +create(NPCid, BaseLevel) -> + gen_server:call(?SERVER, {create, NPCid, BaseLevel}). + +%% @spec reload() -> ok +reload() -> + gen_server:cast(?SERVER, reload). + +%% gen_server. + +init([]) -> + error_logger:info_report("egs_npc_db started"), + {ok, undefined}. + +handle_call(all, _From, State) -> + {reply, ?NPC, State}; + +handle_call(count, _From, State) -> + {reply, length(?NPC), State}; + +%% @todo Handle stats, experience, based on level. +handle_call({create, NPCid, BaseLevel}, _From, State) -> + NPCGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1), + #npc{name=Name, race=Race, gender=Gender, class=Class, level_diff=LevelDiff, appearance=Appearance} = proplists:get_value(NPCid, ?NPC), + TmpUCS2Name = << << X:8, 0:8 >> || X <- Name >>, + Padding = 8 * (64 - byte_size(TmpUCS2Name)), + UCS2Name = << TmpUCS2Name/binary, 0:Padding >>, + Character = #characters{gid=NPCGID, slot=0, type=npc, npcid=NPCid, name=UCS2Name, race=Race, gender=Gender, class=Class, appearance=Appearance, + mainlevel={level, calc_level(BaseLevel, LevelDiff), 0}, blastbar=0, luck=2, money=0, playtime=0, stats={stats, 0, 0, 0, 0, 0, 0, 0}, se=[], currenthp=100, maxhp=100}, + User = #egs_user_model{id=NPCGID, character=Character, areatype=lobby, area={psu_area, 0, 0, 0}, entryid=0}, + {reply, User, State}; + +handle_call(stop, _From, State) -> + {stop, normal, stopped, State}; + +handle_call(_Request, _From, State) -> + {reply, ignored, State}. + +%% @doc Compile this file here and let the reloader reload the code properly. +handle_cast(reload, State) -> + compile:file(?FILE, [verbose, report_errors, report_warnings, {outdir, "ebin/"}]), + {noreply, State}; + +handle_cast(_Msg, State) -> + {noreply, State}. + +handle_info(_Info, State) -> + {noreply, State}. + +terminate(_Reason, _State) -> + ok. + +code_change(_OldVsn, State, _Extra) -> + {ok, State}. + +%% Internal. + +calc_level(BaseLevel, LevelDiff) -> + TmpLevel = BaseLevel + LevelDiff, + if TmpLevel < 1 -> 1; + TmpLevel > 200 -> 200; + true -> TmpLevel + end. diff --git a/src/egs_sup.erl b/src/egs_sup.erl index 027428d..f58b83a 100644 --- a/src/egs_sup.erl +++ b/src/egs_sup.erl @@ -56,6 +56,7 @@ init([]) -> OtherProcs = [ {egs_seasons, {egs_seasons, start_link, []}, permanent, 5000, worker, dynamic}, {egs_items_db, {egs_items_db, start_link, []}, permanent, 5000, worker, dynamic}, + {egs_npc_db, {egs_npc_db, start_link, []}, permanent, 5000, worker, dynamic}, {egs_shops_db, {egs_shops_db, start_link, []}, permanent, 5000, worker, dynamic}, {egs_accounts, {egs_accounts, start_link, []}, permanent, 5000, worker, dynamic}, {egs_user_model, {egs_user_model, start_link, []}, permanent, 5000, worker, dynamic}, diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 459d857..34a4c1f 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -23,7 +23,6 @@ -include("include/records.hrl"). -include("include/maps.hrl"). -include("include/missions.hrl"). --include("include/psu/npc.hrl"). %% @doc Load and send the character information to the client. %% @todo Should wait for the 021c reply before doing area_change. @@ -644,8 +643,8 @@ send_1601(PartyPos) -> %% @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. send_1602() -> - NbNPC = lists:sum([1 || {_NPCid, Data} <- ?NPC, Data#psu_npc.has_card =:= true]), - Bin = iolist_to_binary([<< NPCid:8, 0, 4, 0, 3, 0:24 >> || {NPCid, Data} <- ?NPC, Data#psu_npc.has_card =:= true]), + NbNPC = egs_npc_db:count(), + Bin = iolist_to_binary([<< NPCid:8, 0, 4, 0, 3, 0:24 >> || {NPCid, _Data} <- egs_npc_db:all()]), MiddlePaddingSize = 8 * (344 - byte_size(Bin)), PMName = "My PM", UCS2PMName = << << X:8, 0:8 >> || X <- PMName >>, diff --git a/src/psu/psu_npc.erl b/src/psu/psu_npc.erl deleted file mode 100644 index 252f2d0..0000000 --- a/src/psu/psu_npc.erl +++ /dev/null @@ -1,46 +0,0 @@ -%% @author Loïc Hoguin -%% @copyright 2010 Loïc Hoguin. -%% @doc NPC characters handling. -%% -%% 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 . - --module(psu_npc). --compile(export_all). - --include("include/records.hrl"). --include("include/psu/npc.hrl"). - -%% @todo Improve the NPC handling. Handle more than Lou. -%% @todo Handle stats, experience, based on level. -%% @todo Level shouldn't go below 1 or above 200. -user_init(NPCid, BaseLevel) -> - NPCGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1), - Settings = proplists:get_value(NPCid, ?NPC), - TmpUCS2Name = << << X:8, 0:8 >> || X <- Settings#psu_npc.name >>, - PaddingSize = 8 * (64 - byte_size(TmpUCS2Name)), - UCS2Name = << TmpUCS2Name/binary, 0:PaddingSize >>, - #psu_npc{race=Race, gender=Gender, class=Class, level=LevelDiff, appearance=Appearance} = Settings, - Character = #characters{gid=NPCGID, slot=0, type=npc, npcid=NPCid, name=UCS2Name, race=Race, gender=Gender, class=Class, appearance=Appearance, - mainlevel={level, calc_level(BaseLevel, LevelDiff), 0}, blastbar=0, luck=2, money=0, playtime=0, stats={stats, 0, 0, 0, 0, 0, 0, 0}, se=[], currenthp=100, maxhp=100}, - #egs_user_model{id=NPCGID, character=Character, areatype=lobby, area={psu_area, 0, 0, 0}, entryid=0, - prev_area={psu_area, 0, 0, 0}, prev_entryid=0, pos={pos, 0.0, 0.0, 0.0, 0.0}}. - -calc_level(BaseLevel, LevelDiff) -> - TmpLevel = BaseLevel + LevelDiff, - if TmpLevel < 1 -> 1; - TmpLevel > 200 -> 200; - true -> TmpLevel - end.