(svn r12469) -Codechange: split type related stuff from group.h (and openttd.h) to group_type.h.

This commit is contained in:
rubidium 2008-03-28 16:34:50 +00:00
parent 58e6e75320
commit 878489e38d
11 changed files with 57 additions and 36 deletions

View File

@ -983,6 +983,10 @@
RelativePath=".\..\src\group_gui.h"
>
</File>
<File
RelativePath=".\..\src\group_type.h"
>
</File>
<File
RelativePath=".\..\src\gui.h"
>

View File

@ -980,6 +980,10 @@
RelativePath=".\..\src\group_gui.h"
>
</File>
<File
RelativePath=".\..\src\group_type.h"
>
</File>
<File
RelativePath=".\..\src\gui.h"
>

View File

@ -154,6 +154,7 @@ gfx_type.h
gfxinit.h
group.h
group_gui.h
group_type.h
gui.h
heightmap.h
industry.h

View File

@ -23,6 +23,19 @@
#include "table/sprites.h"
#include "table/strings.h"
struct replaceveh_d {
byte sel_index[2];
EngineID sel_engine[2];
uint16 count[2];
bool wagon_btnstate; ///< true means engine is selected
EngineList list[2];
bool update_left;
bool update_right;
bool init_lists;
GroupID sel_group;
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(replaceveh_d));
static RailType _railtype_selected_in_replace_gui;
static bool _rebuild_left_list;

View File

@ -5,18 +5,12 @@
#ifndef GROUP_H
#define GROUP_H
#include "group_type.h"
#include "oldpool.h"
#include "player_type.h"
#include "vehicle_type.h"
#include "engine.h"
enum {
ALL_GROUP = 0xFFFD,
DEFAULT_GROUP = 0xFFFE, ///< ungrouped vehicles are in this group.
INVALID_GROUP = 0xFFFF,
};
struct Group;
DECLARE_OLD_POOL(Group, Group, 5, 2047)
struct Group : PoolItem<Group, GroupID, &_Group_pool> {

View File

@ -29,6 +29,20 @@
#include "table/strings.h"
#include "table/sprites.h"
struct grouplist_d {
const Group **sort_list;
list_d l; // General list struct
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(grouplist_d));
struct groupveh_d : vehiclelist_d {
GroupID group_sel;
VehicleID vehicle_sel;
grouplist_d gl;
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(groupveh_d));
struct Sorting {
Listing aircraft;
Listing roadveh;

18
src/group_type.h Normal file
View File

@ -0,0 +1,18 @@
/* $Id$ */
/** @file group_type.h Types of a group. */
#ifndef GROUP_TYPE_H
#define GROUP_TYPE_H
typedef uint16 GroupID;
enum {
ALL_GROUP = 0xFFFD,
DEFAULT_GROUP = 0xFFFE, ///< ungrouped vehicles are in this group.
INVALID_GROUP = 0xFFFF,
};
struct Group;
#endif /* GROUP_TYPE_H */

View File

@ -12,7 +12,6 @@
struct Waypoint;
struct ViewPort;
struct DrawPixelInfo;
struct Group;
typedef byte VehicleOrderID; ///< The index of an order within its current vehicle (not pool related)
typedef byte LandscapeID;
typedef uint16 EngineID;
@ -24,7 +23,6 @@ typedef EngineID *EngineList; ///< engine list type placeholder acceptable for C
typedef uint16 WaypointID;
typedef uint16 OrderID;
typedef uint16 SignID;
typedef uint16 GroupID;
typedef uint16 EngineRenewID;
enum GameModes {

View File

@ -11,6 +11,7 @@
#include "vehicle_type.h"
#include "tile_type.h"
#include "date_type.h"
#include "group_type.h"
typedef uint16 DestinationID;

View File

@ -20,6 +20,7 @@
#include "order.h"
#include "cargopacket.h"
#include "texteff.hpp"
#include "group_type.h"
/** Road vehicle states */
enum RoadVehicleStates {

View File

@ -331,19 +331,6 @@ struct tooltips_d {
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(tooltips_d));
struct replaceveh_d {
byte sel_index[2];
EngineID sel_engine[2];
uint16 count[2];
bool wagon_btnstate; ///< true means engine is selected
EngineList list[2];
bool update_left;
bool update_right;
bool init_lists;
GroupID sel_group;
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(replaceveh_d));
struct depot_d {
VehicleID sel;
VehicleType type;
@ -443,20 +430,6 @@ struct vehiclelist_d {
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(vehiclelist_d));
struct grouplist_d {
const Group **sort_list;
list_d l; // General list struct
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(grouplist_d));
struct groupveh_d : vehiclelist_d {
GroupID group_sel;
VehicleID vehicle_sel;
grouplist_d gl;
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(groupveh_d));
/****************** THESE ARE NOT WIDGET TYPES!!!!! *******************/
enum WindowWidgetBehaviours {
WWB_PUSHBUTTON = 1 << 5,