mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r1350) Replace Vehicle GUI:
- Replaced "WP(w,replaceveh_d).line_height" with "w->resize.step_height" since they needed to be the same anyway - Cleaned the code a litte for readability (like correct tabbing) - Added company color to replace vehicle windows to make them look like the rest of the vehicle windows and made the caption text white (also to fit the standard) --This line, and those below, will be ignored-- M vehicle_gui.c M lang/english.txt M window.h
This commit is contained in:
parent
f23a382f82
commit
578d34cfe0
@ -2761,6 +2761,7 @@ STR_SCHEDULED_AIRCRAFT_TIP :{BLACK}Show all aircraft which have this station
|
|||||||
STR_SCHEDULED_SHIPS_TIP :{BLACK}Show all ships which have this station on their schedule
|
STR_SCHEDULED_SHIPS_TIP :{BLACK}Show all ships which have this station on their schedule
|
||||||
|
|
||||||
STR_REPLACE_VEHICLES :{BLACK}Replace Vehicles
|
STR_REPLACE_VEHICLES :{BLACK}Replace Vehicles
|
||||||
|
STR_REPLACE_VEHICLES_WHITE :{WHITE}Replace Vehicles
|
||||||
STR_REPLACE_VEHICLES_START :{BLACK}Start Replacing Vehicles
|
STR_REPLACE_VEHICLES_START :{BLACK}Start Replacing Vehicles
|
||||||
STR_REPLACE_VEHICLES_STOP :{BLACK}Stop Replaing Vehicles
|
STR_REPLACE_VEHICLES_STOP :{BLACK}Stop Replaing Vehicles
|
||||||
STR_NOT_REPLACING :{BLACK}Not replacing
|
STR_NOT_REPLACING :{BLACK}Not replacing
|
||||||
|
@ -704,7 +704,7 @@ static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
DrawString(145, (WP(w,replaceveh_d).line_height == 24 ? 67 : 77 ) + ( WP(w,replaceveh_d).line_height * w->vscroll.cap), STR_02BD, 0x10);
|
DrawString(145, (w->resize.step_height == 24 ? 67 : 77 ) + ( w->resize.step_height * w->vscroll.cap), STR_02BD, 0x10);
|
||||||
|
|
||||||
|
|
||||||
/* now we draw the two arrays according to what we just counted */
|
/* now we draw the two arrays according to what we just counted */
|
||||||
@ -776,10 +776,6 @@ static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
|
|||||||
|
|
||||||
case WE_CLICK: {
|
case WE_CLICK: {
|
||||||
switch(e->click.widget) {
|
switch(e->click.widget) {
|
||||||
/*case 0:
|
|
||||||
DeleteWindowById(WC_REPLACE_VEHICLE, WP(w,replaceveh_d).vehicletype );
|
|
||||||
break;*/
|
|
||||||
|
|
||||||
case 14: case 15:/* Select sorting criteria dropdown menu */
|
case 14: case 15:/* Select sorting criteria dropdown menu */
|
||||||
// finds mask for available engines
|
// finds mask for available engines
|
||||||
{
|
{
|
||||||
@ -790,7 +786,7 @@ static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
|
|||||||
engine_avail = 6;
|
engine_avail = 6;
|
||||||
}
|
}
|
||||||
ShowDropDownMenu(w, _rail_types_list, WP(w,replaceveh_d).railtype, 15, engine_avail, 1);
|
ShowDropDownMenu(w, _rail_types_list, WP(w,replaceveh_d).railtype, 15, engine_avail, 1);
|
||||||
return;
|
break;
|
||||||
}
|
}
|
||||||
case 4: {
|
case 4: {
|
||||||
_autoreplace_array[WP(w,replaceveh_d).sel_engine[0]] = WP(w,replaceveh_d).sel_engine[1];
|
_autoreplace_array[WP(w,replaceveh_d).sel_engine[0]] = WP(w,replaceveh_d).sel_engine[1];
|
||||||
@ -811,7 +807,7 @@ static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
|
|||||||
click_scroll_cap = w->vscroll.cap;
|
click_scroll_cap = w->vscroll.cap;
|
||||||
click_side = 0;
|
click_side = 0;
|
||||||
case 9: {
|
case 9: {
|
||||||
uint i = (e->click.pt.y - 14) / WP(w,replaceveh_d).line_height;
|
uint i = (e->click.pt.y - 14) / w->resize.step_height;
|
||||||
if (i < click_scroll_cap) {
|
if (i < click_scroll_cap) {
|
||||||
WP(w,replaceveh_d).sel_index[click_side] = i + click_scroll_pos;
|
WP(w,replaceveh_d).sel_index[click_side] = i + click_scroll_pos;
|
||||||
SetWindowDirty(w);
|
SetWindowDirty(w);
|
||||||
@ -839,7 +835,7 @@ static void ReplaceVehicleWndProc(Window *w, WindowEvent *e)
|
|||||||
|
|
||||||
static const Widget _replace_rail_vehicle_widgets[] = {
|
static const Widget _replace_rail_vehicle_widgets[] = {
|
||||||
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
||||||
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 443, 0, 13, STR_REPLACE_VEHICLES, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 443, 0, 13, STR_REPLACE_VEHICLES_WHITE, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
||||||
{ WWT_STICKYBOX, RESIZE_NONE, 14, 444, 455, 0, 13, 0x0, STR_STICKY_BUTTON},
|
{ WWT_STICKYBOX, RESIZE_NONE, 14, 444, 455, 0, 13, 0x0, STR_STICKY_BUTTON},
|
||||||
{ WWT_PANEL, RESIZE_TB, 14, 0, 227, 126, 187, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 0, 227, 126, 187, 0x0, STR_NULL},
|
||||||
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 138, 200, 211, STR_REPLACE_VEHICLES_START,STR_REPLACE_HELP_START_BUTTON},
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 138, 200, 211, STR_REPLACE_VEHICLES_START,STR_REPLACE_HELP_START_BUTTON},
|
||||||
@ -850,20 +846,21 @@ static const Widget _replace_rail_vehicle_widgets[] = {
|
|||||||
{ WWT_MATRIX, RESIZE_BOTTOM, 14, 228, 455, 14, 125, 0x801, STR_REPLACE_HELP_RIGHT_ARRAY},
|
{ WWT_MATRIX, RESIZE_BOTTOM, 14, 228, 455, 14, 125, 0x801, STR_REPLACE_HELP_RIGHT_ARRAY},
|
||||||
{ WWT_SCROLL2BAR, RESIZE_BOTTOM, 14, 445, 455, 14, 125, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
{ WWT_SCROLL2BAR, RESIZE_BOTTOM, 14, 445, 455, 14, 125, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
||||||
{ WWT_PANEL, RESIZE_TB, 14, 228, 455, 126, 187, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 228, 455, 126, 187, 0x0, STR_NULL},
|
||||||
// the rest are train specific stuff
|
// train specific stuff
|
||||||
{ WWT_PANEL, RESIZE_TB, 14, 0, 138, 188, 199, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 0, 138, 188, 199, 0x0, STR_NULL},
|
||||||
{ WWT_PANEL, RESIZE_TB, 3, 139, 153, 200, 211, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 139, 153, 200, 211, 0x0, STR_NULL},
|
||||||
{ WWT_PANEL, RESIZE_TB, 14, 154, 289, 200, 211, 0x0, STR_REPLACE_HELP_RAILTYPE},
|
{ WWT_PANEL, RESIZE_TB, 14, 154, 289, 200, 211, 0x0, STR_REPLACE_HELP_RAILTYPE},
|
||||||
{ WWT_CLOSEBOX, RESIZE_TB, 14, 279, 287, 201, 210, STR_0225, STR_REPLACE_HELP_RAILTYPE},
|
{ WWT_CLOSEBOX, RESIZE_TB, 14, 279, 287, 201, 210, STR_0225, STR_REPLACE_HELP_RAILTYPE},
|
||||||
{ WWT_PANEL, RESIZE_TB, 3, 290, 305, 200, 211, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 290, 305, 200, 211, 0x0, STR_NULL},
|
||||||
{ WWT_PANEL, RESIZE_TB, 14, 317, 455, 188, 199, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 317, 455, 188, 199, 0x0, STR_NULL},
|
||||||
|
// end of train specific stuff
|
||||||
{ WWT_RESIZEBOX, RESIZE_TB, 14, 445, 455, 200, 211, 0x0, STR_RESIZE_BUTTON},
|
{ WWT_RESIZEBOX, RESIZE_TB, 14, 445, 455, 200, 211, 0x0, STR_RESIZE_BUTTON},
|
||||||
{ WIDGETS_END},
|
{ WIDGETS_END},
|
||||||
};
|
};
|
||||||
|
|
||||||
static const Widget _replace_road_vehicle_widgets[] = {
|
static const Widget _replace_road_vehicle_widgets[] = {
|
||||||
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
||||||
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 443, 0, 13, STR_REPLACE_VEHICLES, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 443, 0, 13, STR_REPLACE_VEHICLES_WHITE, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
||||||
{ WWT_STICKYBOX, RESIZE_NONE, 14, 444, 455, 0, 13, 0x0, STR_STICKY_BUTTON},
|
{ WWT_STICKYBOX, RESIZE_NONE, 14, 444, 455, 0, 13, 0x0, STR_STICKY_BUTTON},
|
||||||
{ WWT_PANEL, RESIZE_TB, 14, 0, 227, 126, 187, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 0, 227, 126, 187, 0x0, STR_NULL},
|
||||||
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 138, 188, 199, STR_REPLACE_VEHICLES_START, STR_REPLACE_HELP_START_BUTTON},
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 138, 188, 199, STR_REPLACE_VEHICLES_START, STR_REPLACE_HELP_START_BUTTON},
|
||||||
@ -880,7 +877,7 @@ static const Widget _replace_road_vehicle_widgets[] = {
|
|||||||
|
|
||||||
static const Widget _replace_ship_aircraft_vehicle_widgets[] = {
|
static const Widget _replace_ship_aircraft_vehicle_widgets[] = {
|
||||||
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
||||||
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 443, 0, 13, STR_REPLACE_VEHICLES, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 443, 0, 13, STR_REPLACE_VEHICLES_WHITE, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
||||||
{ WWT_STICKYBOX, RESIZE_NONE, 14, 444, 455, 0, 13, 0x0, STR_STICKY_BUTTON},
|
{ WWT_STICKYBOX, RESIZE_NONE, 14, 444, 455, 0, 13, 0x0, STR_STICKY_BUTTON},
|
||||||
{ WWT_PANEL, RESIZE_TB, 14, 0, 227, 110, 161, 0x0, STR_NULL},
|
{ WWT_PANEL, RESIZE_TB, 14, 0, 227, 110, 161, 0x0, STR_NULL},
|
||||||
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 138, 162, 173, STR_REPLACE_VEHICLES_START, STR_REPLACE_HELP_START_BUTTON},
|
{ WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 138, 162, 173, STR_REPLACE_VEHICLES_START, STR_REPLACE_HELP_START_BUTTON},
|
||||||
@ -931,22 +928,22 @@ void ShowReplaceVehicleWindow(byte vehicletype)
|
|||||||
w = AllocateWindowDescFront(&_replace_rail_vehicle_desc, vehicletype);
|
w = AllocateWindowDescFront(&_replace_rail_vehicle_desc, vehicletype);
|
||||||
w->vscroll.cap = 8;
|
w->vscroll.cap = 8;
|
||||||
w->resize.step_height = 14;
|
w->resize.step_height = 14;
|
||||||
WP(w,replaceveh_d).line_height = 14;
|
w->widget[13].color = _player_colors[_local_player];
|
||||||
|
w->widget[16].color = _player_colors[_local_player];
|
||||||
break;
|
break;
|
||||||
case VEH_Road:
|
case VEH_Road:
|
||||||
w = AllocateWindowDescFront(&_replace_road_vehicle_desc, vehicletype);
|
w = AllocateWindowDescFront(&_replace_road_vehicle_desc, vehicletype);
|
||||||
w->vscroll.cap = 8;
|
w->vscroll.cap = 8;
|
||||||
w->resize.step_height = 14;
|
w->resize.step_height = 14;
|
||||||
WP(w,replaceveh_d).line_height = 14;
|
|
||||||
break;
|
break;
|
||||||
case VEH_Ship: case VEH_Aircraft:
|
case VEH_Ship: case VEH_Aircraft:
|
||||||
w = AllocateWindowDescFront(&_replace_ship_aircraft_vehicle_desc, vehicletype);
|
w = AllocateWindowDescFront(&_replace_ship_aircraft_vehicle_desc, vehicletype);
|
||||||
w->vscroll.cap = 4;
|
w->vscroll.cap = 4;
|
||||||
w->resize.step_height = 24;
|
w->resize.step_height = 24;
|
||||||
WP(w,replaceveh_d).line_height = 24;
|
|
||||||
break;
|
break;
|
||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
|
w->caption_color = _local_player;
|
||||||
WP(w,replaceveh_d).vehicletype = vehicletype;
|
WP(w,replaceveh_d).vehicletype = vehicletype;
|
||||||
w->vscroll2.cap = w->vscroll.cap; // these two are always the same
|
w->vscroll2.cap = w->vscroll.cap; // these two are always the same
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user