summaryrefslogtreecommitdiff
path: root/src/group_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-08-02 12:51:57 +0000
committerrubidium <rubidium@openttd.org>2007-08-02 12:51:57 +0000
commit87ad3df2844f9048d510cdecb0bd1e09aa2a508d (patch)
treeac91a1ff5145f67cfe93ac2038d379e396a7337c /src/group_cmd.cpp
parentdd666a80d5fdf68820b1acfdc59d701af4185291 (diff)
downloadopenttd-87ad3df2844f9048d510cdecb0bd1e09aa2a508d.tar.xz
(svn r10751) -Codechange: make the group struct use the pool item class as super class.
Diffstat (limited to 'src/group_cmd.cpp')
-rw-r--r--src/group_cmd.cpp63
1 files changed, 29 insertions, 34 deletions
diff --git a/src/group_cmd.cpp b/src/group_cmd.cpp
index c23a513a9..ddfd522d5 100644
--- a/src/group_cmd.cpp
+++ b/src/group_cmd.cpp
@@ -19,6 +19,7 @@
#include "window.h"
#include "vehicle_gui.h"
#include "strings.h"
+#include "misc/autoptr.hpp"
/**
* Update the num engines of a groupID. Decrease the old one and increase the new one
@@ -39,41 +40,34 @@ static inline void UpdateNumEngineGroup(EngineID i, GroupID old_g, GroupID new_g
}
-/**
- * Called if a new block is added to the group-pool
- */
-static void GroupPoolNewBlock(uint start_item)
-{
- /* We don't use FOR_ALL here, because FOR_ALL skips invalid items.
- * TODO - This is just a temporary stage, this will be removed. */
- for (Group *g = GetGroup(start_item); g != NULL; g = (g->index + 1U < GetGroupPoolSize()) ? GetGroup(g->index + 1) : NULL) g->index = start_item++;
-}
+DEFINE_OLD_POOL_GENERIC(Group, Group)
-DEFINE_OLD_POOL(Group, Group, GroupPoolNewBlock, NULL)
-static Group *AllocateGroup(void)
+Group::Group(StringID str)
{
- /* We don't use FOR_ALL here, because FOR_ALL skips invalid items.
- * TODO - This is just a temporary stage, this will be removed. */
- for (Group *g = GetGroup(0); g != NULL; g = (g->index + 1U < GetGroupPoolSize()) ? GetGroup(g->index + 1) : NULL) {
- if (!IsValidGroup(g)) {
- const GroupID index = g->index;
+ this->string_id = str;
+}
- memset(g, 0, sizeof(*g));
- g->index = index;
+Group::~Group()
+{
+ this->QuickFree();
+ this->string_id = STR_NULL;
+}
- return g;
- }
- }
+void Group::QuickFree()
+{
+ DeleteName(this->string_id);
+}
- /* Check if we can add a block to the pool */
- return (AddBlockToPool(&_Group_pool)) ? AllocateGroup() : NULL;
+bool Group::IsValid() const
+{
+ return this->string_id != STR_NULL;
}
void InitializeGroup(void)
{
- CleanPool(&_Group_pool);
- AddBlockToPool(&_Group_pool);
+ _Group_pool.CleanPool();
+ _Group_pool.AddBlockToPool();
}
@@ -100,16 +94,21 @@ CommandCost CmdCreateGroup(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
VehicleType vt = (VehicleType)p1;
if (!IsPlayerBuildableVehicleType(vt)) return CMD_ERROR;
- Group *g = AllocateGroup();
+ AutoPtrT<Group> g_auto_delete;
+
+ Group *g = new Group(STR_EMPTY);
if (g == NULL) return CMD_ERROR;
+ g_auto_delete = g;
+
if (flags & DC_EXEC) {
g->owner = _current_player;
- g->string_id = STR_EMPTY;
g->replace_protection = false;
g->vehicle_type = vt;
InvalidateWindowData(GetWCForVT(vt), (vt << 11) | VLW_GROUP_LIST | _current_player);
+
+ g_auto_delete.Detach();
}
return CommandCost();
@@ -153,7 +152,7 @@ CommandCost CmdDeleteGroup(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
/* Delete the Replace Vehicle Windows */
DeleteWindowById(WC_REPLACE_VEHICLE, g->vehicle_type);
- DeleteGroup(g);
+ delete g;
InvalidateWindowData(GetWCForVT(vt), (vt << 11) | VLW_GROUP_LIST | _current_player);
}
@@ -416,7 +415,7 @@ void RemoveAllGroupsForPlayer(const Player *p)
Group *g;
FOR_ALL_GROUPS(g) {
- if (p->index == g->owner) DeleteGroup(g);
+ if (p->index == g->owner) delete g;
}
}
@@ -447,11 +446,7 @@ static void Load_GROUP(void)
int index;
while ((index = SlIterateArray()) != -1) {
- if (!AddBlockIfNeeded(&_Group_pool, index)) {
- error("Groups: failed loading savegame: too many groups");
- }
-
- Group *g = GetGroup(index);
+ Group *g = new (index) Group();
SlObject(g, _group_desc);
}
}