blob: 78dc125f2a35a3f7ca5e2b32773ef19e2d5d8f87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/*
base/shipmodel.cc
This file is part of the Osirion project and is distributed under
the terms and conditions of the GNU General Public License version 2
*/
#include <iomanip>
#include "auxiliary/functions.h"
#include "base/shipmodel.h"
#include "sys/sys.h"
namespace game {
// the ship model registry
std::map<std::string, ShipModel *> ShipModel::registry;
ShipModel::ShipModel()
{
//default specifications
shipmodel_acceleration = 1.0f; // thruster acceleration in game untits/second^2
shipmodel_maxspeed = 3.0f; // maximum thruster speed in game units/second
shipmodel_turnspeed = 45.0f; // 45 degrees per second
shipmodel_price = 0; // the ship is for free by default
shipmodel_maxcargo = 0;
shipmodel_jumpdrive = false;
}
ShipModel::~ShipModel()
{}
// clear the ship model registry
void ShipModel::clear()
{
for (iterator smit = registry.begin(); smit != registry.end(); smit++) {
delete (*smit).second;
}
registry.clear();
}
void ShipModel::print()
{
con_print << "label: ^B" << label() << " ^Nname: ^B" << name() << std::endl;
con_print << " acceleration: ^B" << acceleration() << std::endl;
con_print << " turnspeed: ^B" << turnspeed() << std::endl;
con_print << " max speed: ^B" << maxspeed() << std::endl;
con_print << " max cargo: ^B" << maxcargo() << std::endl;
con_print << " price: ^B" << price() << std::endl;
}
void ShipModel::list()
{
for (iterator smit = registry.begin(); smit != registry.end(); smit++) {
con_print << std::setw(24) << (*smit).second->label()
<< " ^B" << (*smit).second->name() << "\n";
}
con_print << registry.size() << " registered ship models\n";
}
ShipModel *ShipModel::find(ShipModel *shipmodel)
{
for (iterator smit = registry.begin(); smit != registry.end(); smit++) {
if ((*smit).second == shipmodel)
return shipmodel;
}
return 0;
}
ShipModel *ShipModel::find(const std::string label)
{
std::map<std::string, ShipModel *>::iterator it = registry.find(label);
if (it == registry.end())
return 0;
else
return (*it).second;
}
ShipModel *ShipModel::search(const std::string searchname)
{
std::string strsearchkey(aux::lowercase(searchname));
if (strsearchkey.size() < 3) {
return 0;
}
std::string label;
std::string name;
for (iterator smit = registry.begin(); smit != registry.end(); smit++) {
ShipModel *shipmodel = (*smit).second;
label.assign(shipmodel->label());
if (label.size() && (label.find(strsearchkey) != std::string::npos)) {
return shipmodel;
}
name.assign(aux::lowercase(shipmodel->name()));
if (name.size() && (name.find(strsearchkey) != std::string::npos)) {
return shipmodel;
}
}
return 0;
}
// add a new ship model
void ShipModel::add(ShipModel *shipmodel)
{
ShipModel *m = find(shipmodel->label());
if (m) {
con_warn << "Duplicate ship model " << shipmodel->label() << "!\n";
delete m;
}
registry[shipmodel->label()] = shipmodel;
}
}
|