Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-11-14 14:14:21 +0000
committerStijn Buys <ingar@osirion.org>2009-11-14 14:14:21 +0000
commit4293e8854a30443e4d5818fc55df404976dbfd9b (patch)
tree816665ba37acfd5a39c0544c3b2acbf04c8c5d3d /src
parenta993d31910b63a1f897e470842934e6ffefad32c (diff)
update the info system, fixes network info exchange
Diffstat (limited to 'src')
-rw-r--r--src/auxiliary/functions.cc2
-rw-r--r--src/core/commandbuffer.cc58
-rw-r--r--src/core/gameconnection.cc19
-rw-r--r--src/core/info.cc97
-rw-r--r--src/core/info.h64
-rw-r--r--src/core/inventory.cc4
-rw-r--r--src/core/inventory.h2
-rw-r--r--src/core/item.cc8
-rw-r--r--src/core/item.h15
-rw-r--r--src/core/netconnection.cc38
-rw-r--r--src/core/netserver.cc43
-rw-r--r--src/game/base/game.cc42
-rw-r--r--src/game/base/game.h1
-rw-r--r--src/game/base/shipdealer.cc2
-rw-r--r--src/game/base/shipmodel.cc14
-rw-r--r--src/game/base/shipmodel.h4
16 files changed, 163 insertions, 250 deletions
diff --git a/src/auxiliary/functions.cc b/src/auxiliary/functions.cc
index 668c108..5dbc012 100644
--- a/src/auxiliary/functions.cc
+++ b/src/auxiliary/functions.cc
@@ -159,8 +159,6 @@ void to_label(std::string &text)
pos++;
} else if ((text[pos] >= '0') && (text[pos] <= '9')) {
pos++;
- } else if (text[pos] == '/') {
- pos++;
} else {
text.erase(pos, 1);
}
diff --git a/src/core/commandbuffer.cc b/src/core/commandbuffer.cc
index fc98e21..00a3486 100644
--- a/src/core/commandbuffer.cc
+++ b/src/core/commandbuffer.cc
@@ -44,11 +44,61 @@ void func_print_file(std::string const &args)
void func_list_info(std::string const &args)
{
- Info *info = Info::find(args);
- if (info)
- info->print();
- else
+ std::string typestr;
+ std::string labelstr;
+
+ std::istringstream argstream(args);
+ if (!(argstream >> typestr)) {
+ // no argument, list all info records
Info::list();
+ return;
+ }
+
+ Info *info = 0;
+ InfoType *infotype = InfoType::find(typestr);
+
+ if(!(argstream >> labelstr)) {
+ // a single argument
+ if (infotype) {
+ // list all the records of a single type
+ Info::list(infotype);
+ return;
+ }
+
+ info = Info::find(typestr);
+ if (info) {
+ // list a single record
+ info->print();
+ return;
+ }
+
+ info = Info::search(typestr);
+ if (info) {
+ // list a single record
+ info->print();
+ return;
+ }
+
+ con_print << "Unkown info record '" << typestr << "'" << std::endl;
+
+ } else {
+ // two arguments
+ info = Info::find(infotype, labelstr);
+ if (info) {
+ // list a single record
+ info->print();
+ return;
+ }
+
+ info = Info::search(infotype, labelstr);
+ if (info) {
+ // list a single record
+ info->print();
+ return;
+ }
+
+ con_print << "Unkown info record '" << typestr << "' for type '" << typestr << "'" << std::endl;
+ }
}
void func_list_func(std::string const &args)
diff --git a/src/core/gameconnection.cc b/src/core/gameconnection.cc
index 064974c..8910bca 100644
--- a/src/core/gameconnection.cc
+++ b/src/core/gameconnection.cc
@@ -92,18 +92,21 @@ bool GameConnection::interactive() const
Info *GameConnection::info(const std::string &type, const std::string &label)
{
- // find the class
+ // find the info record type
InfoType *infotype = InfoType::find(type);
- if (!infotype)
- return 0;
+ if (!infotype) {
+ // create a new info record type and set the label
+ infotype = new InfoType(type.c_str());
+ }
- // check if we already have the info record
+ // find the info record
Info *info = Info::find(infotype, label);
- if (info)
+ if (info) {
return info;
-
- // create a new information record and set the label
- info = new Info(0);
+ }
+
+ // create a new info record and set the label
+ info = new Info(infotype);
info->set_label(label);
info->text().push_back("Requesting information...");
diff --git a/src/core/info.cc b/src/core/info.cc
index 8f843c4..ca23d79 100644
--- a/src/core/info.cc
+++ b/src/core/info.cc
@@ -16,33 +16,21 @@ namespace core
/* ---- class InfoType --------------------------------------------- */
-// server-side constructor, assigns id
InfoType::InfoType(const char *label)
{
- infotype_id_counter++;
- infotype_id = infotype_id_counter;
if (label)
set_label(label);
infotype_registry.push_back(this);
}
-// client-side constructor, receives id
-InfoType::InfoType(const unsigned int id)
-{
- infotype_id = id;
- infotype_registry.push_back(this);
-}
-
InfoType::~InfoType()
{
- infotype_id = 0;
}
/* ---- static InfoType registry ----------------------------------- */
InfoType::Registry InfoType::infotype_registry;
-unsigned int InfoType::infotype_id_counter = 0;
void InfoType::clear()
{
@@ -51,8 +39,6 @@ void InfoType::clear()
delete infotype;
}
infotype_registry.clear();
- infotype_id_counter = 0;
-
}
InfoType *InfoType::find(const std::string & label)
@@ -69,28 +55,12 @@ InfoType *InfoType::find(const std::string & label)
return 0;
}
-InfoType *InfoType::find(const unsigned int id)
-{
- if (!id)
- return 0;
-
- for (Registry::iterator it = infotype_registry.begin(); it != infotype_registry.end(); it++) {
- InfoType *infotype = (*it);
- if (infotype->id() == id) {
- return infotype;
- }
- }
- return 0;
-}
-
/* ---- class Info ------------------------------------------------- */
// server-side constructor, assigns id
-Info::Info()
+Info::Info(const InfoType *type)
{
- info_id_counter++;
- info_id = info_id_counter;
- info_type = 0;
+ info_type = type;
info_model = 0;
info_timestamp = 0;
@@ -99,18 +69,6 @@ Info::Info()
info_registry.push_back(this);
}
-// client-side constructor, receives id
-Info::Info(const unsigned int id)
-{
- info_id = id;
- info_type = 0;
-
- info_timestamp = 0;
- info_model = 0;
- info_price = 0;
-
- info_registry.push_back(this);
-}
Info::~Info()
{
@@ -119,6 +77,7 @@ Info::~Info()
info_text.clear();
info_timestamp = 0;
info_model = 0;
+ info_type = 0;
}
void Info::set_type(const InfoType *type)
@@ -175,7 +134,7 @@ void Info::clear_text()
void Info::serialize_server_update(std::ostream & os) const
{
- os << " \"" << label() << "\" \"" << name() << "\" \"" << modelname() << "\" " << info_text.size() << " ";
+ os << '"' << name() << "\" \"" << modelname() << "\" " << info_text.size() << " ";
for (Text::const_iterator it = info_text.begin(); it != info_text.end(); it++) {
if (it != info_text.begin())
@@ -190,13 +149,8 @@ void Info::receive_server_update(std::istream &is)
std::string n;
char c;
- // read label
- while ((is.get(c)) && (c != '"'));
- while ((is.get(c)) && (c != '"'))
- n += c;
- set_label(n);
-
// read name
+ n.clear();
while ((is.get(c)) && (c != '"'));
while ((is.get(c)) && (c != '"'))
n += c;
@@ -207,7 +161,6 @@ void Info::receive_server_update(std::istream &is)
while ((is.get(c)) && (c != '"'));
while ((is.get(c)) && (c != '"'))
n += c;
-
set_modelname(n);
// read info text
@@ -226,19 +179,19 @@ void Info::receive_server_update(std::istream &is)
void Info::print() const
{
+ con_print << " type: ^B" << type()->label() << " ^Nlabel: ^B" << label() << " ^Nname: ^B" << name() << " ^Nmodel: ^B" << modelname() << "^N" << std::endl;
if (info_text.size()) {
for (Text::const_iterator it = info_text.begin(); it != info_text.end(); it++) {
con_print << " " << (*it) << std::endl;
}
} else {
- con_print << " label: ^B" << label() << " ^Nname: ^B" << name() << " ^Nmodel: ^B" << modelname() << "^N" << std::endl;
+ con_print << " type: ^B" << type()->label() << " ^Nlabel: ^B" << label() << " ^Nname: ^B" << name() << " ^Nmodel: ^B" << modelname() << "^N" << std::endl;
}
}
/* ---- static info registry --------------------------------------- */
Info::Registry Info::info_registry;
-unsigned int Info::info_id_counter = 0;
Info *Info::find(const char *label)
{
@@ -268,20 +221,6 @@ Info *Info::find(const std::string & label)
return 0;
}
-Info *Info::find(const unsigned int id)
-{
- if (!id)
- return 0;
-
- for (Registry::iterator it = info_registry.begin(); it != info_registry.end(); it++) {
- Info *info = (*it);
- if (info->id() == id) {
- return info;
- }
- }
- return 0;
-}
-
Info *Info::search(const std::string & searchstr)
{
if (!searchstr.size())
@@ -337,20 +276,6 @@ Info *Info::find(const InfoType *type, const std::string & label)
return 0;
}
-Info *Info::find(const InfoType *type, const unsigned int id)
-{
- if (!id)
- return 0;
-
- for (Registry::iterator it = info_registry.begin(); it != info_registry.end(); it++) {
- Info *info = (*it);
- if ((info->type() == type) && (info->id() == id)) {
- return info;
- }
- }
- return 0;
-}
-
Info *Info::search(const InfoType *type, const std::string & searchstr)
{
if (!searchstr.size())
@@ -387,7 +312,6 @@ void Info::clear()
delete info;
}
info_registry.clear();
- info_id_counter = 0;
InfoType::clear();
}
@@ -404,20 +328,19 @@ void Info::list()
con_print << info_registry.size() << " info " << aux::plural("record", info_registry.size()) << std::endl;
}
-void Info::list_class(const InfoType *type)
+void Info::list(const InfoType *type)
{
size_t count = 0;
for (Registry::iterator it = info_registry.begin(); it != info_registry.end(); it++) {
core::Info *info = (*it);
if (info->type() == type) {
- count++;
-
+ count++;
con_print << " "
<< "^B" << aux::pad_right(info->label(), 12) << "^N "
<< info->name() << "^N" << std::endl;
}
}
- con_print << count << " info " << aux::plural("record", count) << std::endl;
+ con_print << count << " " << type->label() << " info " << aux::plural("record", count) << std::endl;
}
}
diff --git a/src/core/info.h b/src/core/info.h
index 13f38f8..0296ec9 100644
--- a/src/core/info.h
+++ b/src/core/info.h
@@ -19,62 +19,40 @@ namespace core
{
/**
- * @brief an object class information record
- * Describes a class of object
+ * @brief an information record type
+ * The InfoType groups information records of the same type
*/
class InfoType : public Label
{
public:
/**
- * @brief create a server side object class information record
+ * @brief create a new information record type
+ * The constructor automaticly adds the instance to the registry
*/
InfoType(const char* label);
- /**
- * @brief create a client side object class information record
- */
- InfoType(const unsigned int id);
-
- virtual ~InfoType();
-
- /* ---- inspectors ------------------------------------------------- */
-
- inline const unsigned int id() const {
- return infotype_id;
- }
-
-private:
-
- unsigned int infotype_id;
-
+ virtual ~InfoType();
/* ---- static infoclass registry ---------------------------------- */
-
-public:
+
/// clear infotype registry
static void clear();
/// search the infotype registry for a label
static InfoType *find(const std::string & label);
- /// search the infotype registry for an id
- static InfoType *find(const unsigned int id);
-
-
private:
/// info registry type definition
typedef std::vector<InfoType*> Registry;
static Registry infotype_registry;
- static unsigned int infotype_id_counter;
-
}; // class InfoType
/**
* @brief an information record
* An information record holds extended information about a specific entity or item class.
- * This information isexchanged between server and the client, and can be used to build
- * HUD widgets/
+ * This information is exchanged between server and the client, and can be used to build
+ * HUD widgets.
*/
class Info : public Label
{
@@ -83,26 +61,16 @@ public:
typedef std::deque<std::string> Text;
/**
- * @brief create a new server-side information record
- * This is a server-side constructor and assigns an id
+ * @brief create a new information record
+ * The constructor automaticly adds the instance to the registry
*/
- Info();
+ Info(const InfoType *type = 0);
- /**
- * @brief create a new client-side information record
- * This is a client-side constructor
- */
- Info(const unsigned int id);
-
/// delete the information record
virtual ~Info();
/* ---- inspectors ------------------------------------------------- */
- inline const unsigned int id() const {
- return info_id;
- }
-
inline const InfoType* type() const {
return info_type;
}
@@ -173,7 +141,6 @@ public:
private:
const InfoType* info_type;
- unsigned int info_id;
long info_price;
unsigned long info_timestamp;
std::string info_modelname;
@@ -199,9 +166,6 @@ public:
/// search the info registry for a label
static Info *find(const std::string & label);
- /// search the info registry for an id
- static Info *find(const unsigned int id);
-
/// search the info registry for a record with a matching label or name
static Info *search(const std::string & searchstr);
@@ -211,9 +175,6 @@ public:
/// search the info registry for a label, belonging to a specific class
static Info *find(const InfoType *type, const std::string & label);
- /// search the info registry for an id, belonging to a specific class
- static Info *find(const InfoType *type, const unsigned int id);
-
/// search the info registry for a record with a matching label or name and belonging to a specific class
static Info *search(const InfoType *type, const std::string & searchstr);
@@ -224,11 +185,10 @@ public:
static void list();
/// list a single class in the info registry
- static void list_class(const InfoType *type);
+ static void list(const InfoType *type);
private:
static Registry info_registry;
- static unsigned int info_id_counter;
};
}
diff --git a/src/core/inventory.cc b/src/core/inventory.cc
index a58664c..e1a74dc 100644
--- a/src/core/inventory.cc
+++ b/src/core/inventory.cc
@@ -43,12 +43,12 @@ void Inventory::remove(Item *item)
}
}
-Item *Inventory::find(unsigned int const class_id, unsigned int const info_id)
+Item *Inventory::find(const Info *info)
{
// sarch the inventory for a specified item type
for (Items::iterator it = inventory_items.begin(); it != inventory_items.end(); it++) {
Item *item = (*it);
- if ((item->class_id() == class_id) && (item->info_id() == info_id )) {
+ if (item->info() == info) {
return item;
}
}
diff --git a/src/core/inventory.h b/src/core/inventory.h
index 0a1db92..a451dc7 100644
--- a/src/core/inventory.h
+++ b/src/core/inventory.h
@@ -53,7 +53,7 @@ public:
/**
* @brief search the inventory for a specific item type
*/
- Item *find(unsigned int const class_id, unsigned int const info_id);
+ Item *find(const Info *info);
private:
Items inventory_items;
diff --git a/src/core/item.cc b/src/core/item.cc
index a029674..a6cc89f 100644
--- a/src/core/item.cc
+++ b/src/core/item.cc
@@ -12,17 +12,15 @@ namespace core
/* ---- class Item ------------------------------------------------- */
-Item::Item(const unsigned int class_id, const unsigned int info_id)
+Item::Item(const Info *info)
{
- item_class_id = class_id;
- item_info_id = info_id;
-
+ item_info = info;
item_amount = 0;
- item_info = Info::find(info_id);
}
Item::~Item()
{
+ item_info = 0;
item_amount = 0;
}
diff --git a/src/core/item.h b/src/core/item.h
index f88da57..21eae87 100644
--- a/src/core/item.h
+++ b/src/core/item.h
@@ -19,16 +19,12 @@ namespace core
class Item
{
public:
- Item(const unsigned int class_id, const unsigned int info_id);
+ Item(const Info *info);
~Item();
/* ---- inspectors --------------------------------------------- */
- inline unsigned int class_id() const { return item_class_id; }
-
- inline unsigned int info_id() const { return item_info_id; }
-
/**
* @brief associated amount
*/
@@ -37,7 +33,7 @@ public:
/**
* @brief information record
*/
- inline Info *info();
+ inline const Info *info() const { return item_info; }
/* ---- mutators ----------------------------------------------- */
@@ -47,11 +43,8 @@ public:
void set_amount(const int amount);
private:
- unsigned int item_class_id;
- unsigned int item_info_id;
- int item_amount;
-
- Info *item_info;
+ const Info *item_info;
+ int item_amount;
};
} // namespace core
diff --git a/src/core/netconnection.cc b/src/core/netconnection.cc
index 39a25a3..2975bc5 100644
--- a/src/core/netconnection.cc
+++ b/src/core/netconnection.cc
@@ -403,6 +403,7 @@ void NetConnection::send_private_message(std::string const &text)
}
// send a ping reply
+// ping timestamp
void NetConnection::send_ping_reply(unsigned long timestamp)
{
std::ostringstream msg;
@@ -411,10 +412,11 @@ void NetConnection::send_ping_reply(unsigned long timestamp)
}
// send an info record request
+// inf type.label info.label
void NetConnection::send_info_request(Info *info)
{
std::ostringstream msg;
- msg << "inf " << '"' << info->label() << '"' << '\n';
+ msg << "inf " << ' ' << info->type()->label() << ' ' << info->label() << '\n';
this->send_raw(msg.str());
info->set_timestamp(application()->timestamp());
@@ -690,20 +692,30 @@ void NetConnection::parse_incoming_message(const std::string & message)
} else if (command == "inf") {
// incoming info record
- unsigned int id;
- if (msgstream >> id) {
-
- Info *info = Info::find(id);
- if (!info) {
- info = new Info(id);
- }
+ std::string typelabelstr;
+ std::string infolabelstr;
- info->receive_server_update(msgstream);
- info->clear_timestamp();
-
- } else {
- con_warn << "Received empty information record!" << std::endl;
+ if (!(msgstream >> typelabelstr)) {
+ con_warn << "Received invalid info record message!" << std::endl;
+ return;
}
+ InfoType *infotype = InfoType::find(typelabelstr);
+ if (!infotype) {
+ infotype = new InfoType(typelabelstr.c_str());
+ }
+
+ if (!(msgstream >> infolabelstr)) {
+ con_warn << "Received invalid info record message for type '" << typelabelstr << "'!" << std::endl;
+ return;
+ }
+ Info *info = Info::find(infotype, infolabelstr);
+ if (!info) {
+ info = new Info(infotype);
+ info->set_label(infolabelstr);
+ }
+
+ info->receive_server_update(msgstream);
+ info->clear_timestamp();
} else if (command == "sup") {
diff --git a/src/core/netserver.cc b/src/core/netserver.cc
index c4eef11..32b2d69 100644
--- a/src/core/netserver.cc
+++ b/src/core/netserver.cc
@@ -561,8 +561,11 @@ void NetServer::send_player_disconnect_info(NetClient *client, Player *player)
// send a "inf" info record
void NetServer::send_info_update(NetClient *client, Info *info)
{
+ if (!info || !info->type())
+ return;
+
std::ostringstream msg;
- msg << "inf " << info->id() << ' ';
+ msg << "inf " << info->type()->label() << ' ' << info->label() << ' ';
info->serialize_server_update(msg);
msg << '\n';
client->send_raw(msg.str());
@@ -672,19 +675,27 @@ void NetServer::parse_incoming_message(NetClient *client, const std::string & me
}
if (command == "inf") {
- std::string n;
- char c;
-
- while ((msgstream.get(c)) && (c != '"'));
- while ((msgstream.get(c)) && (c != '"'))
- n += c;
-
- if (n.size()) {
- Info *info = Info::find(n);
- if (info) {
- send_info_update(client, info);
- client->transmit();
- }
+ std::string typelabelstr;
+ std::string infolabelstr;
+
+ if (!(msgstream >> typelabelstr)) {
+ con_warn << "^B" << client->player()->name() << "^W invalid info record request" << std::endl;
+ return;
+ }
+
+ InfoType *infotype = InfoType::find(typelabelstr);
+ if (!infotype)
+ return;
+
+ if (!(msgstream >> infolabelstr)) {
+ con_warn << "^B" << client->player()->name() << "^W invalid info record request" << std::endl;
+ return;
+ }
+
+ Info *info = Info::find(infotype, infolabelstr);
+ if (info) {
+ send_info_update(client, info);
+ client->transmit();
}
}
@@ -709,7 +720,7 @@ void NetServer::parse_incoming_message(NetClient *client, const std::string & me
} else {
send_message(client, "info", "rcon access denied");
- con_print << "^B" << client->player()->name() << "^W rcon access denied" << std::endl;
+ con_warn << "^B" << client->player()->name() << "^W rcon access denied" << std::endl;
}
}
return;
@@ -734,7 +745,7 @@ void NetServer::parse_incoming_message(NetClient *client, const std::string & me
EntityControlable *entitycontrolable = (EntityControlable *)entity;
if (entitycontrolable->owner() != client->player()) {
- con_warn << client->host() << ":" << client->port() << " update for not-owned entity " << id << "\n";
+ con_warn << client->host() << ":" << client->port() << " update for non-owned entity " << id << "\n";
return;
}
diff --git a/src/game/base/game.cc b/src/game/base/game.cc
index c20e42a..6c15c75 100644
--- a/src/game/base/game.cc
+++ b/src/game/base/game.cc
@@ -59,17 +59,6 @@ core::Module *factory()
return new Game();
}
-// list the ship model registry
-void Game::func_list_ship(std::string const &args)
-{
- ShipModel *shipmodel = ShipModel::search(args);
-
- if (shipmodel)
- shipmodel->print();
- else
- ShipModel::list();
-}
-
// a player joins the game
void Game::func_join(core::Player *player, std::string const &args)
{
@@ -195,27 +184,27 @@ void Game::func_dock(core::Player *player, core::Entity *entity)
void Game::func_buy(core::Player *player, const std::string &args)
{
std::istringstream is(args);
- std::string itemclass;
- std::string itemtype;
+ std::string typestr;
+ std::string labelstr;
- if (!(is >> itemclass)) {
- player->send("usage: buy [string] [string] buy an item of a specified class and type");
+ if (!(is >> typestr)) {
+ player->send("Usage: buy [string] [string] buy an item, specify type and label");
return;
} else {
- aux::to_label(itemclass);
+ aux::to_label(typestr);
}
- if (!(is >> itemtype)) {
- itemtype.clear();
+ if (!(is >> labelstr)) {
+ labelstr.clear();
} else {
- aux::to_label(itemtype);
+ aux::to_label(labelstr);
}
- if (itemclass.compare("ship") == 0) {
- ShipDealer::func_buy(player, itemtype);
+ if (typestr.compare("ship") == 0) {
+ ShipDealer::func_buy(player, labelstr);
} else {
- player->send("unkown item class '" + itemclass + "'");
+ player->send("unkown item type '" + typestr + "'");
}
return;
@@ -333,7 +322,6 @@ void Game::func_goto(core::Player *player, const std::string &args)
Game::Game() : core::Module("Project::OSiRiON", true)
{
Default::clear();
- ShipModel::clear();
Physics::init();
@@ -360,9 +348,6 @@ Game::Game() : core::Module("Project::OSiRiON", true)
// add engine functions
core::Func *func = 0;
- func = core::Func::add("list_ship", Game::func_list_ship);
- func->set_info("[string] list ship statistics");
-
func = core::Func::add("join", Game::func_join);
func->set_info("join the game");
@@ -412,14 +397,9 @@ Game::~Game()
g_impulsespeed = 0;
// game functions are automaticly removed
- // remove engine core functions
- core::Func::remove("list_ship");
-
// we explicity clear game data to prevent bullet from beeing confused
core::game()->clear();
- ShipModel::clear();
-
Physics::shutdown();
}
diff --git a/src/game/base/game.h b/src/game/base/game.h
index a7e476e..fc0274b 100644
--- a/src/game/base/game.h
+++ b/src/game/base/game.h
@@ -97,7 +97,6 @@ private:
/* ---- engine functions ----------------------------------- */
- static void func_list_ship(std::string const &args);
static void func_join(core::Player *player, std::string const &args);
static void func_spectate(core::Player *player, std::string const &args);
static void func_hail(core::Player *player, std::string const &args);
diff --git a/src/game/base/shipdealer.cc b/src/game/base/shipdealer.cc
index 69b4543..b38855b 100644
--- a/src/game/base/shipdealer.cc
+++ b/src/game/base/shipdealer.cc
@@ -84,7 +84,7 @@ void ShipDealer::func_buy(core::Player *player, const std::string &args)
if (!shipmodel) {
ShipModel::list();
- player->send("Usage: buy ship model");
+ player->send("Usage: buy ship label");
return;
}
diff --git a/src/game/base/shipmodel.cc b/src/game/base/shipmodel.cc
index 9bd7573..4f219eb 100644
--- a/src/game/base/shipmodel.cc
+++ b/src/game/base/shipmodel.cc
@@ -35,10 +35,10 @@ ShipModel::~ShipModel()
void ShipModel::generate_info()
{
- clear_text();
+ //clear_text();
add_text("");
- add_text("^B" + name() + " specifications:^N");
+ add_text("^BSpecifications:^N");
std::stringstream str;
str << "price: ^B" << price() << " ^Ncredits";
add_text(str.str());
@@ -67,16 +67,6 @@ void ShipModel::generate_info()
}
}
-void ShipModel::list()
-{
- core::Info::list_class(shipmodel_infotype);
-}
-
-ShipModel *ShipModel::find(const unsigned int id)
-{
- return (ShipModel *) core::Info::find(shipmodel_infotype, id);
-}
-
ShipModel *ShipModel::find(const std::string & label)
{
return (ShipModel *) core::Info::find(shipmodel_infotype, label);
diff --git a/src/game/base/shipmodel.h b/src/game/base/shipmodel.h
index 19b2a77..dc56033 100644
--- a/src/game/base/shipmodel.h
+++ b/src/game/base/shipmodel.h
@@ -82,10 +82,6 @@ public:
/* --- static registry functions ---------------------------------- */
- static void list();
-
- static ShipModel *find(const unsigned int id);
-
static ShipModel *find(const std::string & label);
static ShipModel *search(const std::string searchstr);