2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "ttd.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "window.h"
|
|
|
|
#include "gui.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
#include "vehicle.h"
|
|
|
|
#include "station.h"
|
|
|
|
#include "town.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "viewport.h"
|
|
|
|
|
|
|
|
static int OrderGetSel(Window *w)
|
|
|
|
{
|
|
|
|
Vehicle *v = &_vehicles[w->window_number];
|
2004-12-05 12:43:04 +00:00
|
|
|
const Order *sched = v->schedule_ptr;
|
2004-08-09 17:04:08 +00:00
|
|
|
int num = WP(w,order_d).sel;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
if (num == 0)
|
|
|
|
return 0;
|
|
|
|
|
2004-12-05 12:43:04 +00:00
|
|
|
while (sched->type != OT_NOTHING) {
|
2004-08-09 17:04:08 +00:00
|
|
|
sched++;
|
|
|
|
count++;
|
|
|
|
if (--num == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DrawOrdersWindow(Window *w)
|
|
|
|
{
|
|
|
|
Vehicle *v;
|
|
|
|
int num, sel;
|
2004-12-05 12:43:04 +00:00
|
|
|
const Order *sched;
|
|
|
|
Order ord;
|
2004-08-09 17:04:08 +00:00
|
|
|
int y, i;
|
|
|
|
StringID str;
|
|
|
|
bool shared_schedule;
|
|
|
|
|
|
|
|
v = &_vehicles[w->window_number];
|
|
|
|
|
|
|
|
w->disabled_state = (v->owner == _local_player) ? 0 : 0x3F0;
|
|
|
|
|
|
|
|
shared_schedule = IsScheduleShared(v) != NULL;
|
|
|
|
|
|
|
|
sched = v->schedule_ptr;
|
|
|
|
num=0;
|
2004-12-05 12:43:04 +00:00
|
|
|
while (sched->type != OT_NOTHING) {
|
|
|
|
sched++;
|
|
|
|
num++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if ((uint)num + shared_schedule <= (uint)WP(w,order_d).sel)
|
|
|
|
SETBIT(w->disabled_state, 5); /* delete */
|
|
|
|
|
|
|
|
if (num == 0)
|
|
|
|
SETBIT(w->disabled_state, 4); /* skip */
|
|
|
|
|
|
|
|
SetVScrollCount(w, num+1);
|
|
|
|
|
|
|
|
sel = OrderGetSel(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(2,STR_8827_FULL_LOAD);
|
2004-12-05 12:43:04 +00:00
|
|
|
switch (v->schedule_ptr[sel].type) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case OT_GOTO_STATION:
|
|
|
|
break;
|
|
|
|
case OT_GOTO_DEPOT:
|
|
|
|
SETBIT(w->disabled_state, 9); /* unload */
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(2,STR_SERVICE);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SETBIT(w->disabled_state, 6); /* nonstop */
|
|
|
|
SETBIT(w->disabled_state, 8); /* full load */
|
2004-09-10 19:02:27 +00:00
|
|
|
SETBIT(w->disabled_state, 9); /* unload */
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, v->string_id);
|
|
|
|
SetDParam(1, v->unitnumber);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
y = 15;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
for(;;) {
|
|
|
|
str = ((byte)v->cur_order_index == i) ? STR_8805 : STR_8804;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
ord = v->schedule_ptr[i];
|
|
|
|
|
|
|
|
if ( (uint)(i - w->vscroll.pos) < 6) {
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-12-05 12:43:04 +00:00
|
|
|
if (ord.type == OT_NOTHING) {
|
2004-08-09 17:04:08 +00:00
|
|
|
str = shared_schedule ? STR_END_OF_SHARED_ORDERS : STR_882A_END_OF_ORDERS;
|
|
|
|
} else {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(1, 6);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-05 12:43:04 +00:00
|
|
|
if (ord.type == OT_GOTO_STATION) {
|
|
|
|
SetDParam(1, STR_8806_GO_TO + (ord.flags >> 1));
|
|
|
|
SetDParam(2, ord.station);
|
|
|
|
} else if (ord.type == OT_GOTO_DEPOT) {
|
2004-08-09 17:04:08 +00:00
|
|
|
StringID s = STR_NULL;
|
|
|
|
if (v->type == VEH_Aircraft) {
|
|
|
|
s = STR_GO_TO_AIRPORT_HANGAR;
|
2004-12-05 12:43:04 +00:00
|
|
|
SetDParam(2, ord.station);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2004-12-05 12:43:04 +00:00
|
|
|
SetDParam(2, _depots[ord.station].town_index);
|
2004-08-09 17:04:08 +00:00
|
|
|
switch (v->type) {
|
|
|
|
case VEH_Train: s = STR_880E_GO_TO_TRAIN_DEPOT; break;
|
|
|
|
case VEH_Road: s = STR_9038_GO_TO_ROADVEH_DEPOT; break;
|
|
|
|
case VEH_Ship: s = STR_GO_TO_SHIP_DEPOT; break;
|
|
|
|
}
|
|
|
|
}
|
2004-12-05 12:43:04 +00:00
|
|
|
if (v->type == VEH_Train && ord.flags & OF_NON_STOP) s += 2;
|
|
|
|
if (ord.flags & OF_FULL_LOAD) ++s; /* XXX service */
|
|
|
|
SetDParam(1, s);
|
|
|
|
} else if (ord.type == OT_GOTO_WAYPOINT) {
|
|
|
|
SetDParam(2, ord.station);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(1, STR_GO_TO_WAYPOINT);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
byte color = (i == WP(w,order_d).sel) ? 0xC : 0x10;
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, i+1);
|
2004-12-05 12:43:04 +00:00
|
|
|
if (ord.type != OT_DUMMY) {
|
2004-08-24 09:09:49 +00:00
|
|
|
DrawString(2, y, str, color);
|
|
|
|
} else {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(1, STR_INVALID_ORDER);
|
2004-12-05 12:43:04 +00:00
|
|
|
SetDParam(2, ord.station);
|
2004-08-24 09:09:49 +00:00
|
|
|
DrawString(2, y, str, color);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
y += 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
|
|
|
|
2004-12-05 12:43:04 +00:00
|
|
|
if (ord.type == OT_NOTHING)
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// lookup a vehicle on a tile
|
|
|
|
typedef struct {
|
|
|
|
TileIndex tile;
|
|
|
|
byte owner;
|
|
|
|
byte type;
|
|
|
|
} FindVehS;
|
|
|
|
|
|
|
|
static void *FindVehicleCallb(Vehicle *v, FindVehS *f)
|
|
|
|
{
|
|
|
|
if (v->tile != f->tile || v->owner != f->owner || v->vehstatus & VS_HIDDEN ) return NULL;
|
|
|
|
return v;
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
Vehicle *GetVehicleOnTile(TileIndex tile, byte owner)
|
|
|
|
{
|
2004-12-03 07:43:00 +00:00
|
|
|
FindVehS fs = {tile, owner, 0};
|
2004-08-09 17:04:08 +00:00
|
|
|
return VehicleFromPos(tile, &fs, (VehicleFromPosProc*)FindVehicleCallb);
|
|
|
|
}
|
|
|
|
|
2004-12-05 21:30:58 +00:00
|
|
|
static Order GetOrderCmdFromTile(Vehicle *v, uint tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2004-12-05 21:30:58 +00:00
|
|
|
Order order;
|
2004-08-09 17:04:08 +00:00
|
|
|
Station *st;
|
|
|
|
int st_index;
|
|
|
|
|
|
|
|
// check depot first
|
|
|
|
if (_patches.gotodepot) {
|
|
|
|
switch(GET_TILETYPE(tile)) {
|
|
|
|
case MP_RAILWAY:
|
|
|
|
if (v->type == VEH_Train && _map_owner[tile] == _local_player) {
|
|
|
|
if ((_map5[tile]&0xFC)==0xC0)
|
2004-12-05 21:30:58 +00:00
|
|
|
order.type = OT_GOTO_DEPOT;
|
|
|
|
order.flags = OF_UNLOAD;
|
|
|
|
order.station = GetDepotByTile(tile);
|
|
|
|
return order;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_STREET:
|
|
|
|
if ((_map5[tile] & 0xF0) == 0x20 && v->type == VEH_Road && _map_owner[tile] == _local_player)
|
2004-12-05 21:30:58 +00:00
|
|
|
order.type = OT_GOTO_DEPOT;
|
|
|
|
order.flags = OF_UNLOAD;
|
|
|
|
order.station = GetDepotByTile(tile);
|
|
|
|
return order;
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_STATION:
|
|
|
|
if (v->type != VEH_Aircraft) break;
|
|
|
|
if ( IsAircraftHangarTile(tile) && _map_owner[tile] == _local_player)
|
2004-12-05 21:30:58 +00:00
|
|
|
order.type = OT_GOTO_DEPOT;
|
|
|
|
order.flags = OF_UNLOAD | OF_NON_STOP;
|
|
|
|
order.station = _map2[tile];
|
|
|
|
return order;
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_WATER:
|
|
|
|
if (v->type != VEH_Ship) break;
|
|
|
|
if ( IsShipDepotTile(tile) && _map_owner[tile] == _local_player) {
|
|
|
|
switch (_map5[tile]) {
|
|
|
|
case 0x81: tile--; break;
|
|
|
|
case 0x83: tile-= TILE_XY(0,1); break;
|
|
|
|
}
|
2004-12-05 21:30:58 +00:00
|
|
|
order.type = OT_GOTO_DEPOT;
|
|
|
|
order.flags = OF_UNLOAD;
|
|
|
|
order.station = GetDepotByTile(tile);
|
|
|
|
return order;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 13:07:07 +00:00
|
|
|
// check waypoint
|
2004-09-27 14:30:17 +00:00
|
|
|
if (IS_TILETYPE(tile, MP_RAILWAY)
|
|
|
|
&& v->type == VEH_Train
|
|
|
|
&& _map_owner[tile] == _local_player
|
2004-12-05 21:30:58 +00:00
|
|
|
&& (_map5[tile]&0xFE)==0xC4) {
|
|
|
|
order.type = OT_GOTO_WAYPOINT;
|
|
|
|
order.flags = 0;
|
|
|
|
order.station = GetWaypointByTile(tile);
|
|
|
|
return order;
|
|
|
|
}
|
2004-09-27 14:30:17 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (IS_TILETYPE(tile, MP_STATION)) {
|
|
|
|
st = DEREF_STATION(st_index = _map2[tile]);
|
|
|
|
|
|
|
|
if (st->owner == _current_player || st->owner == OWNER_NONE) {
|
|
|
|
byte facil;
|
|
|
|
(facil=FACIL_DOCK, v->type == VEH_Ship) ||
|
|
|
|
(facil=FACIL_TRAIN, v->type == VEH_Train) ||
|
|
|
|
(facil=FACIL_AIRPORT, v->type == VEH_Aircraft) ||
|
|
|
|
(facil=FACIL_BUS_STOP, v->type == VEH_Road && v->cargo_type == CT_PASSENGERS) ||
|
|
|
|
(facil=FACIL_TRUCK_STOP, 1);
|
2004-12-05 21:30:58 +00:00
|
|
|
if (st->facilities & facil) {
|
|
|
|
order.type = OT_GOTO_STATION;
|
|
|
|
order.flags = 0;
|
|
|
|
order.station = st_index;
|
|
|
|
return order;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// not found
|
2004-12-05 21:30:58 +00:00
|
|
|
order.type = OT_NOTHING;
|
|
|
|
order.flags = 0;
|
|
|
|
return order;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool HandleOrderVehClick(Vehicle *v, Vehicle *u, Window *w)
|
|
|
|
{
|
|
|
|
if (u->type != v->type)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (u->type == VEH_Train && u->subtype != 0) {
|
|
|
|
u = GetFirstVehicleInChain(u);
|
|
|
|
if (u->subtype != 0)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// v is vehicle getting orders. Only copy/clone orders if vehicle doesn't have any orders yet
|
|
|
|
// obviously if you press CTRL on a non-empty orders vehicle you know what you are doing
|
|
|
|
if (v->num_orders != 0 && _ctrl_pressed == 0) {return false;}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (DoCommandP(v->tile, v->index | (u->index << 16), _ctrl_pressed ? 0 : 1, NULL,
|
|
|
|
_ctrl_pressed ? CMD_CLONE_ORDER | CMD_MSG(STR_CANT_SHARE_ORDER_LIST) : CMD_CLONE_ORDER | CMD_MSG(STR_CANT_COPY_ORDER_LIST))) {
|
|
|
|
WP(w,order_d).sel = -1;
|
|
|
|
ResetObjectToPlace();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void OrdersPlaceObj(Vehicle *v, uint tile, Window *w)
|
|
|
|
{
|
2004-12-05 21:30:58 +00:00
|
|
|
Order cmd;
|
2004-08-09 17:04:08 +00:00
|
|
|
Vehicle *u;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// check if we're clicking on a vehicle first.. clone orders in that case.
|
|
|
|
u = CheckMouseOverVehicle();
|
|
|
|
if (u && HandleOrderVehClick(v, u, w))
|
|
|
|
return;
|
|
|
|
|
|
|
|
cmd = GetOrderCmdFromTile(v, tile);
|
2004-12-05 21:30:58 +00:00
|
|
|
if (cmd.type == OT_NOTHING) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-05 21:30:58 +00:00
|
|
|
if (DoCommandP(v->tile, v->index + (OrderGetSel(w) << 16), PackOrder(&cmd), NULL, CMD_INSERT_ORDER | CMD_MSG(STR_8833_CAN_T_INSERT_NEW_ORDER))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (WP(w,order_d).sel != -1)
|
|
|
|
WP(w,order_d).sel++;
|
|
|
|
ResetObjectToPlace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void OrdersWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
|
|
|
switch(e->event) {
|
|
|
|
case WE_PAINT:
|
|
|
|
DrawOrdersWindow(w);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_CLICK: {
|
|
|
|
Vehicle *v = &_vehicles[w->window_number];
|
|
|
|
int mode;
|
|
|
|
switch(e->click.widget) {
|
2004-09-10 19:02:27 +00:00
|
|
|
case 2: {/* orders list */
|
2004-08-09 17:04:08 +00:00
|
|
|
int sel;
|
|
|
|
sel = (e->click.pt.y - 15) / 10;
|
|
|
|
|
|
|
|
if ( (uint) sel >= 6)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sel += w->vscroll.pos;
|
|
|
|
|
2004-08-13 20:30:45 +00:00
|
|
|
if (_ctrl_pressed && sel < v->num_orders) { // watch out for schedule_ptr overflow
|
2004-12-05 12:43:04 +00:00
|
|
|
Order ord = v->schedule_ptr[sel];
|
2004-08-13 20:30:45 +00:00
|
|
|
int xy = 0;
|
2004-12-05 12:43:04 +00:00
|
|
|
switch (ord.type) {
|
2004-08-13 20:30:45 +00:00
|
|
|
case OT_GOTO_STATION: /* station order */
|
2004-12-05 12:43:04 +00:00
|
|
|
xy = _stations[ord.station].xy ;
|
2004-08-13 20:30:45 +00:00
|
|
|
break;
|
|
|
|
case OT_GOTO_DEPOT: /* goto depot order */
|
2004-12-05 12:43:04 +00:00
|
|
|
xy = _depots[ord.station].xy;
|
2004-08-13 20:30:45 +00:00
|
|
|
break;
|
2004-11-14 13:07:07 +00:00
|
|
|
case OT_GOTO_WAYPOINT: /* goto waypoint order */
|
2004-12-05 12:43:04 +00:00
|
|
|
xy = _waypoints[ord.station].xy;
|
2004-08-13 20:30:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (xy)
|
|
|
|
ScrollMainWindowToTile(xy);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-13 20:30:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (sel == WP(w,order_d).sel) sel = -1;
|
|
|
|
WP(w,order_d).sel = sel;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case 4: /* skip button */
|
|
|
|
DoCommandP(v->tile,v->index, 0, NULL, CMD_SKIP_ORDER);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5: /* delete button */
|
|
|
|
DoCommandP(v->tile,v->index, OrderGetSel(w), NULL, CMD_DELETE_ORDER | CMD_MSG(STR_8834_CAN_T_DELETE_THIS_ORDER));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7: /* goto button */
|
|
|
|
InvalidateWidget(w, 7);
|
|
|
|
w->click_state ^= 1<<7;
|
|
|
|
if (HASBIT(w->click_state, 7)) {
|
|
|
|
_place_clicked_vehicle = NULL;
|
|
|
|
SetObjectToPlaceWnd(ANIMCURSOR_PICKSTATION, 1, w);
|
|
|
|
} else {
|
|
|
|
ResetObjectToPlace();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 8: /* full load button */
|
|
|
|
mode = 0;
|
|
|
|
DoCommandP(v->tile, v->index, OrderGetSel(w) | (mode << 8), NULL, CMD_MODIFY_ORDER | CMD_MSG(STR_8835_CAN_T_MODIFY_THIS_ORDER));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 9: /* unload button */
|
|
|
|
mode = 1;
|
|
|
|
DoCommandP(v->tile, v->index, OrderGetSel(w) | (mode << 8), NULL, CMD_MODIFY_ORDER | CMD_MSG(STR_8835_CAN_T_MODIFY_THIS_ORDER));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: /* non stop button */
|
|
|
|
mode = 2;
|
|
|
|
DoCommandP(v->tile, v->index, OrderGetSel(w) | (mode << 8), NULL, CMD_MODIFY_ORDER | CMD_MSG(STR_8835_CAN_T_MODIFY_THIS_ORDER));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
|
|
|
|
case WE_RCLICK: {
|
|
|
|
Vehicle *v = &_vehicles[w->window_number];
|
|
|
|
if (e->click.widget != 8) break;
|
2004-12-05 12:43:04 +00:00
|
|
|
if (v->schedule_ptr[OrderGetSel(w)].type == OT_GOTO_DEPOT)
|
2004-08-09 17:04:08 +00:00
|
|
|
GuiShowTooltips(STR_SERVICE_HINT);
|
|
|
|
else
|
|
|
|
GuiShowTooltips(STR_8857_MAKE_THE_HIGHLIGHTED_ORDER);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_4: {
|
|
|
|
if (FindWindowById(WC_VEHICLE_VIEW, w->window_number) == NULL)
|
|
|
|
DeleteWindow(w);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_PLACE_OBJ: {
|
|
|
|
OrdersPlaceObj(&_vehicles[w->window_number], e->place.tile, w);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_ABORT_PLACE_OBJ: {
|
|
|
|
w->click_state &= ~(1<<7);
|
|
|
|
InvalidateWidget(w, 7);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
// check if a vehicle in a depot was clicked..
|
|
|
|
case WE_MOUSELOOP: {
|
|
|
|
Vehicle *v = _place_clicked_vehicle;
|
2004-08-12 17:11:47 +00:00
|
|
|
/*
|
|
|
|
* Check if we clicked on a vehicle
|
|
|
|
* and if the GOTO button of this window is pressed
|
|
|
|
* This is because of all open order windows WE_MOUSELOOP is called
|
|
|
|
* and if you have 3 windows open, and this check is not done
|
|
|
|
* the order is copied to the last open window instead of the
|
|
|
|
* one where GOTO is enalbed
|
|
|
|
*/
|
|
|
|
if (v && HASBIT(w->click_state, 7)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
_place_clicked_vehicle = NULL;
|
|
|
|
HandleOrderVehClick(&_vehicles[w->window_number], v, w);
|
|
|
|
}
|
|
|
|
} break;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _train_orders_widgets[] = {
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WWT_CLOSEBOX, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_8829_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_PANEL, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 0, 52, 76, 87, STR_8823_SKIP, STR_8853_SKIP_THE_CURRENT_ORDER},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 53, 105, 76, 87, STR_8824_DELETE, STR_8854_DELETE_THE_HIGHLIGHTED},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 106, 158, 76, 87, STR_8825_NON_STOP, STR_8855_MAKE_THE_HIGHLIGHTED_ORDER},
|
|
|
|
{WWT_NODISTXTBTN, 14, 159, 211, 76, 87, STR_8826_GO_TO, STR_8856_INSERT_A_NEW_ORDER_BEFORE},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 212, 264, 76, 87, STR_FULLLOAD_OR_SERVICE, STR_NULL},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 265, 319, 76, 87, STR_8828_UNLOAD, STR_8858_MAKE_THE_HIGHLIGHTED_ORDER},
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _train_orders_desc = {
|
|
|
|
-1,-1, 320, 88,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESTORE_DPARAM,
|
|
|
|
_train_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
static const Widget _other_train_orders_widgets[] = {
|
|
|
|
{ WWT_CLOSEBOX, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_8829_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_PANEL, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _other_train_orders_desc = {
|
|
|
|
-1,-1, 320, 76,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_other_train_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _roadveh_orders_widgets[] = {
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_900B_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_IMGBTN, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 0, 63, 76, 87, STR_8823_SKIP, STR_8853_SKIP_THE_CURRENT_ORDER},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 64, 127, 76, 87, STR_8824_DELETE, STR_8854_DELETE_THE_HIGHLIGHTED},
|
|
|
|
{ WWT_EMPTY, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{WWT_NODISTXTBTN, 14, 128, 191, 76, 87, STR_8826_GO_TO, STR_8856_INSERT_A_NEW_ORDER_BEFORE},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 192, 255, 76, 87, STR_FULLLOAD_OR_SERVICE, STR_NULL},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 256, 319, 76, 87, STR_8828_UNLOAD, STR_8858_MAKE_THE_HIGHLIGHTED_ORDER},
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _roadveh_orders_desc = {
|
|
|
|
-1,-1, 320, 88,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESTORE_DPARAM,
|
|
|
|
_roadveh_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
static const Widget _other_roadveh_orders_widgets[] = {
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_900B_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_IMGBTN, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _other_roadveh_orders_desc = {
|
|
|
|
-1,-1, 320, 76,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_other_roadveh_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
static const Widget _ship_orders_widgets[] = {
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_9810_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_IMGBTN, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 0, 63, 76, 87, STR_8823_SKIP, STR_8853_SKIP_THE_CURRENT_ORDER},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 64, 127, 76, 87, STR_8824_DELETE, STR_8854_DELETE_THE_HIGHLIGHTED},
|
|
|
|
{ WWT_EMPTY, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{WWT_NODISTXTBTN, 14, 128, 191, 76, 87, STR_8826_GO_TO, STR_8856_INSERT_A_NEW_ORDER_BEFORE},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 192, 255, 76, 87, STR_FULLLOAD_OR_SERVICE, STR_NULL},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 256, 319, 76, 87, STR_8828_UNLOAD, STR_8858_MAKE_THE_HIGHLIGHTED_ORDER},
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _ship_orders_desc = {
|
|
|
|
-1,-1, 320, 88,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESTORE_DPARAM,
|
|
|
|
_ship_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
static const Widget _other_ship_orders_widgets[] = {
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_9810_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_IMGBTN, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _other_ship_orders_desc = {
|
|
|
|
-1,-1, 320, 76,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_other_ship_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _aircraft_orders_widgets[] = {
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_A00B_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_IMGBTN, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 0, 63, 76, 87, STR_8823_SKIP, STR_8853_SKIP_THE_CURRENT_ORDER},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 64, 127, 76, 87, STR_8824_DELETE, STR_8854_DELETE_THE_HIGHLIGHTED},
|
|
|
|
{ WWT_EMPTY, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{WWT_NODISTXTBTN, 14, 128, 191, 76, 87, STR_8826_GO_TO, STR_8856_INSERT_A_NEW_ORDER_BEFORE},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 192, 255, 76, 87, STR_FULLLOAD_OR_SERVICE, STR_NULL},
|
|
|
|
{ WWT_PUSHTXTBTN, 14, 256, 319, 76, 87, STR_8828_UNLOAD, STR_8858_MAKE_THE_HIGHLIGHTED_ORDER},
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _aircraft_orders_desc = {
|
|
|
|
-1,-1, 320, 88,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESTORE_DPARAM,
|
|
|
|
_aircraft_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
static const Widget _other_aircraft_orders_widgets[] = {
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, 14, 11, 319, 0, 13, STR_A00B_ORDERS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_IMGBTN, 14, 0, 308, 14, 75, 0x0, STR_8852_ORDERS_LIST_CLICK_ON_ORDER},
|
|
|
|
{ WWT_SCROLLBAR, 14, 309, 319, 14, 75, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _other_aircraft_orders_desc = {
|
|
|
|
-1,-1, 320, 76,
|
|
|
|
WC_VEHICLE_ORDERS,WC_VEHICLE_VIEW,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_other_aircraft_orders_widgets,
|
|
|
|
OrdersWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc * const _order_window_desc[8] = {
|
|
|
|
&_train_orders_desc, &_other_train_orders_desc,
|
|
|
|
&_roadveh_orders_desc, &_other_roadveh_orders_desc,
|
|
|
|
&_ship_orders_desc, &_other_ship_orders_desc,
|
|
|
|
&_aircraft_orders_desc, &_other_aircraft_orders_desc,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void ShowOrdersWindow(Vehicle *v)
|
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
VehicleID veh = v->index;
|
|
|
|
|
|
|
|
DeleteWindowById(WC_VEHICLE_ORDERS, veh);
|
|
|
|
DeleteWindowById(WC_VEHICLE_DETAILS, veh);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
_alloc_wnd_parent_num = veh;
|
|
|
|
w = AllocateWindowDesc(
|
|
|
|
_order_window_desc[(v->type - VEH_Train)*2 + (v->owner != _local_player)]);
|
|
|
|
|
|
|
|
w->window_number = veh;
|
|
|
|
w->caption_color = v->owner;
|
|
|
|
w->vscroll.cap = 6;
|
|
|
|
WP(w,order_d).sel = -1;
|
|
|
|
}
|