340 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			340 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "stdafx.h"
 | |
| #include "ttd.h"
 | |
| #include "table/strings.h"
 | |
| #include "map.h"
 | |
| #include "window.h"
 | |
| #include "station.h"
 | |
| #include "gui.h"
 | |
| #include "viewport.h"
 | |
| #include "gfx.h"
 | |
| #include "sound.h"
 | |
| #include "command.h"
 | |
| 
 | |
| static void ShowBuildDockStationPicker();
 | |
| static void ShowBuildDocksDepotPicker();
 | |
| 
 | |
| static byte _ship_depot_direction;
 | |
| 
 | |
| void CcBuildDocks(bool success, uint tile, uint32 p1, uint32 p2)
 | |
| {
 | |
| 	if (success) {
 | |
| 		SndPlayTileFx(SND_02_SPLAT, tile);
 | |
| 		ResetObjectToPlace();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void CcBuildCanal(bool success, uint tile, uint32 p1, uint32 p2)
 | |
| {
 | |
| 	if (success) SndPlayTileFx(SND_02_SPLAT, tile);
 | |
| }
 | |
| 
 | |
| 
 | |
| static void PlaceDocks_Dock(uint tile)
 | |
| {
 | |
| 	DoCommandP(tile, 0, 0, CcBuildDocks, CMD_BUILD_DOCK | CMD_AUTO | CMD_MSG(STR_9802_CAN_T_BUILD_DOCK_HERE));
 | |
| }
 | |
| 
 | |
| static void PlaceDocks_Depot(uint tile)
 | |
| {
 | |
| 	DoCommandP(tile, _ship_depot_direction, 0, CcBuildDocks, CMD_BUILD_SHIP_DEPOT | CMD_AUTO | CMD_MSG(STR_3802_CAN_T_BUILD_SHIP_DEPOT));
 | |
| }
 | |
| 
 | |
| static void PlaceDocks_Buoy(uint tile)
 | |
| {
 | |
| 	DoCommandP(tile, 0, 0, CcBuildDocks, CMD_BUILD_BUOY | CMD_AUTO | CMD_MSG(STR_9835_CAN_T_POSITION_BUOY_HERE));
 | |
| }
 | |
| 
 | |
| static void PlaceDocks_DemolishArea(uint tile)
 | |
| {
 | |
| 	VpStartPlaceSizing(tile, VPM_X_AND_Y);
 | |
| }
 | |
| 
 | |
| static void PlaceDocks_BuildCanal(uint tile)
 | |
| {
 | |
| 	VpStartPlaceSizing(tile, VPM_X_OR_Y);
 | |
| }
 | |
| 
 | |
| static void PlaceDocks_BuildLock(uint tile)
 | |
| {
 | |
| 	DoCommandP(tile, 0, 0, CcBuildDocks, CMD_BUILD_LOCK | CMD_AUTO | CMD_MSG(STR_CANT_BUILD_LOCKS));
 | |
| }
 | |
| 
 | |
| 
 | |
| static void BuildDocksClick_Canal(Window *w)
 | |
| {
 | |
| 	HandlePlacePushButton(w, 3, SPR_OPENTTD_BASE + 11, 1, PlaceDocks_BuildCanal);
 | |
| }
 | |
| 
 | |
| static void BuildDocksClick_Lock(Window *w)
 | |
| {
 | |
| 	HandlePlacePushButton(w, 4, SPR_OPENTTD_BASE + 64, 1, PlaceDocks_BuildLock);
 | |
| }
 | |
| 
 | |
| static void BuildDocksClick_Demolish(Window *w)
 | |
| {
 | |
| 	HandlePlacePushButton(w, 6, ANIMCURSOR_DEMOLISH, 1, PlaceDocks_DemolishArea);
 | |
| }
 | |
| 
 | |
| static void BuildDocksClick_Depot(Window *w)
 | |
| {
 | |
| 	if (HandlePlacePushButton(w, 7, 0x2D1, 1, PlaceDocks_Depot)) ShowBuildDocksDepotPicker();
 | |
| }
 | |
| 
 | |
| static void BuildDocksClick_Dock(Window *w)
 | |
| {
 | |
| 
 | |
| 	if (HandlePlacePushButton(w, 8, 0xE54, 3, PlaceDocks_Dock)) ShowBuildDockStationPicker();
 | |
| }
 | |
| 
 | |
| static void BuildDocksClick_Buoy(Window *w)
 | |
| {
 | |
| 	HandlePlacePushButton(w, 9, 0x2BE, 1, PlaceDocks_Buoy);
 | |
| }
 | |
| 
 | |
| static void BuildDocksClick_Landscaping(Window *w)
 | |
| {
 | |
| 	ShowTerraformToolbar();
 | |
| }
 | |
| 
 | |
| typedef void OnButtonClick(Window *w);
 | |
| static OnButtonClick * const _build_docks_button_proc[] = {
 | |
| 	BuildDocksClick_Canal,
 | |
| 	BuildDocksClick_Lock,
 | |
| 	0,
 | |
| 	BuildDocksClick_Demolish,
 | |
| 	BuildDocksClick_Depot,
 | |
| 	BuildDocksClick_Dock,
 | |
| 	BuildDocksClick_Buoy,
 | |
| 	BuildDocksClick_Landscaping,
 | |
| };
 | |
| 
 | |
| static void BuildDocksToolbWndProc(Window *w, WindowEvent *e)
 | |
| {
 | |
| 	switch(e->event) {
 | |
| 	case WE_PAINT:
 | |
| 		DrawWindowWidgets(w);
 | |
| 		break;
 | |
| 
 | |
| 	case WE_CLICK: {
 | |
| 		if (e->click.widget - 3 >= 0 && e->click.widget != 5) _build_docks_button_proc[e->click.widget - 3](w);
 | |
| 	} break;
 | |
| 
 | |
| 	case WE_PLACE_OBJ:
 | |
| 		_place_proc(e->place.tile);
 | |
| 		break;
 | |
| 
 | |
| 	case WE_PLACE_DRAG: {
 | |
| 		VpSelectTilesWithMethod(e->place.pt.x, e->place.pt.y, e->place.userdata);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	case WE_PLACE_MOUSEUP:
 | |
| 		if (e->click.pt.x != -1) {
 | |
| 			if (e->place.userdata == VPM_X_AND_Y)
 | |
| 				DoCommandP(e->place.tile, e->place.starttile, 0, CcPlaySound10, CMD_CLEAR_AREA | CMD_MSG(STR_00B5_CAN_T_CLEAR_THIS_AREA));
 | |
| 			else if(e->place.userdata == VPM_X_OR_Y)
 | |
| 				DoCommandP(e->place.tile, e->place.starttile, 0, CcBuildCanal, CMD_BUILD_CANAL | CMD_AUTO | CMD_MSG(STR_CANT_BUILD_CANALS));
 | |
| 		}
 | |
| 		break;
 | |
| 
 | |
| 	case WE_ABORT_PLACE_OBJ:
 | |
| 		UnclickWindowButtons(w);
 | |
| 		SetWindowDirty(w);
 | |
| 
 | |
| 		w = FindWindowById(WC_BUILD_STATION, 0);
 | |
| 		if (w != NULL) WP(w,def_d).close=true;
 | |
| 
 | |
| 		w = FindWindowById(WC_BUILD_DEPOT, 0);
 | |
| 		if (w != NULL) WP(w,def_d).close=true;
 | |
| 		break;
 | |
| 
 | |
| 	case WE_PLACE_PRESIZE: {
 | |
| 		uint tile_from, tile_to;
 | |
| 
 | |
| 		tile_from = tile_to = e->place.tile;
 | |
| 		switch(GetTileSlope(tile_from, NULL)) {
 | |
| 		case 3: tile_to += TILE_XY(-1,0); break;
 | |
| 		case 6:	tile_to += TILE_XY(0,-1);	break;
 | |
| 		case 9:	tile_to += TILE_XY(0,1);	break;
 | |
| 		case 12:tile_to += TILE_XY(1,0);	break;
 | |
| 		}
 | |
| 		VpSetPresizeRange(tile_from, tile_to);
 | |
| 	} break;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| static const Widget _build_docks_toolb_widgets[] = {
 | |
| {   WWT_CLOSEBOX,     7,     0,    10,     0,    13, STR_00C5,										STR_018B_CLOSE_WINDOW},
 | |
| {    WWT_CAPTION,     7,    11,   145,     0,    13, STR_9801_DOCK_CONSTRUCTION,	STR_018C_WINDOW_TITLE_DRAG_THIS},
 | |
| {  WWT_STICKYBOX,     7,   146,   157,     0,    13, 0x0,                         STR_STICKY_BUTTON},
 | |
| {      WWT_PANEL,     7,     0,    21,    14,    35, SPR_OPENTTD_BASE+65,					STR_BUILD_CANALS_TIP},
 | |
| {      WWT_PANEL,     7,    22,    43,    14,    35, SPR_CANALS_BASE+69,					STR_BUILD_LOCKS_TIP},
 | |
| 
 | |
| {      WWT_PANEL,     7,    44,    47,    14,    35, 0x0,													STR_NULL},
 | |
| 
 | |
| {      WWT_PANEL,     7,    48,    69,    14,    35, 703,													STR_018D_DEMOLISH_BUILDINGS_ETC},
 | |
| {      WWT_PANEL,     7,    70,    91,    14,    35, 748,													STR_981E_BUILD_SHIP_DEPOT_FOR_BUILDING},
 | |
| {      WWT_PANEL,     7,    92,   113,    14,    35, 746,													STR_981D_BUILD_SHIP_DOCK},
 | |
| {      WWT_PANEL,     7,   114,   135,    14,    35, 693,													STR_9834_POSITION_BUOY_WHICH_CAN},
 | |
| {      WWT_PANEL,     7,   136,   157,    14,    35, SPR_IMG_LANDSCAPING,				STR_LANDSCAPING_TOOLBAR_TIP},
 | |
| {   WIDGETS_END},
 | |
| };
 | |
| 
 | |
| static const WindowDesc _build_docks_toolbar_desc = {
 | |
| 	640-158, 22, 158, 36,
 | |
| 	WC_BUILD_TOOLBAR,0,
 | |
| 	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
 | |
| 	_build_docks_toolb_widgets,
 | |
| 	BuildDocksToolbWndProc
 | |
| };
 | |
| 
 | |
| void ShowBuildDocksToolbar()
 | |
| {
 | |
| 	DeleteWindowById(WC_BUILD_TOOLBAR, 0);
 | |
| 	AllocateWindowDesc(&_build_docks_toolbar_desc);
 | |
| }
 | |
| 
 | |
| static void BuildDockStationWndProc(Window *w, WindowEvent *e)
 | |
| {
 | |
| 	int rad;
 | |
| 
 | |
| 	switch(e->event) {
 | |
| 	case WE_PAINT: {
 | |
| 		if (WP(w,def_d).close)
 | |
| 			return;
 | |
| 		w->click_state = (1<<3) << _station_show_coverage;
 | |
| 		DrawWindowWidgets(w);
 | |
| 		if (_patches.modified_catchment) {
 | |
| 			rad = CA_DOCK;
 | |
| 		} else {
 | |
| 			rad = 4;
 | |
| 		}
 | |
| 
 | |
| 		if (_station_show_coverage)	SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad);
 | |
| 		else SetTileSelectBigSize(0, 0, 0, 0);
 | |
| 
 | |
| 		DrawStringCentered(74, 17, STR_3066_COVERAGE_AREA_HIGHLIGHT, 0);
 | |
| 		DrawStationCoverageAreaText(4, 50, (uint)-1, rad);
 | |
| 	} break;
 | |
| 
 | |
| 	case WE_CLICK: {
 | |
| 		switch(e->click.widget) {
 | |
| 		case 0:
 | |
| 			ResetObjectToPlace();
 | |
| 			break;
 | |
| 		case 3: case 4:
 | |
| 			_station_show_coverage = e->click.widget - 3;
 | |
| 			SndPlayFx(SND_15_BEEP);
 | |
| 			SetWindowDirty(w);
 | |
| 			break;
 | |
| 		}
 | |
| 	} break;
 | |
| 
 | |
| 	case WE_MOUSELOOP: {
 | |
| 		if (WP(w,def_d).close) {
 | |
| 			DeleteWindow(w);
 | |
| 			return;
 | |
| 		}
 | |
| 
 | |
| 		CheckRedrawStationCoverage(w);
 | |
| 		break;
 | |
| 	}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| static const Widget _build_dock_station_widgets[] = {
 | |
| {   WWT_CLOSEBOX,     7,     0,    10,     0,    13, STR_00C5,			STR_018B_CLOSE_WINDOW},
 | |
| {    WWT_CAPTION,     7,    11,   147,     0,    13, STR_3068_DOCK,	STR_018C_WINDOW_TITLE_DRAG_THIS},
 | |
| {      WWT_PANEL,     7,     0,   147,    14,    74, 0x0,						STR_NULL},
 | |
| {   WWT_CLOSEBOX,    14,    14,    73,    30,    40, STR_02DB_OFF,	STR_3065_DON_T_HIGHLIGHT_COVERAGE},
 | |
| {   WWT_CLOSEBOX,    14,    74,   133,    30,    40, STR_02DA_ON,		STR_3064_HIGHLIGHT_COVERAGE_AREA},
 | |
| {   WIDGETS_END},
 | |
| };
 | |
| 
 | |
| static const WindowDesc _build_dock_station_desc = {
 | |
| 	-1, -1, 148, 75,
 | |
| 	WC_BUILD_STATION,WC_BUILD_TOOLBAR,
 | |
| 	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
 | |
| 	_build_dock_station_widgets,
 | |
| 	BuildDockStationWndProc
 | |
| };
 | |
| 
 | |
| static void ShowBuildDockStationPicker()
 | |
| {
 | |
| 	AllocateWindowDesc(&_build_dock_station_desc);
 | |
| }
 | |
| 
 | |
| static void UpdateDocksDirection()
 | |
| {
 | |
| 	if (_ship_depot_direction != 0) {
 | |
| 		SetTileSelectSize(1, 2);
 | |
| 	} else {
 | |
| 		SetTileSelectSize(2, 1);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| static void BuildDocksDepotWndProc(Window *w, WindowEvent *e)
 | |
| {
 | |
| 	switch(e->event) {
 | |
| 	case WE_PAINT:
 | |
| 		w->click_state = (1<<3) << _ship_depot_direction;
 | |
| 		DrawWindowWidgets(w);
 | |
| 
 | |
| 		DrawShipDepotSprite(67, 35, 0);
 | |
| 		DrawShipDepotSprite(35, 51, 1);
 | |
| 		DrawShipDepotSprite(135, 35, 2);
 | |
| 		DrawShipDepotSprite(167, 51, 3);
 | |
| 		return;
 | |
| 
 | |
| 	case WE_CLICK: {
 | |
| 		switch(e->click.widget) {
 | |
| 		case 0:
 | |
| 			ResetObjectToPlace();
 | |
| 			break;
 | |
| 		case 3:
 | |
| 		case 4:
 | |
| 			_ship_depot_direction = e->click.widget - 3;
 | |
| 			SndPlayFx(SND_15_BEEP);
 | |
| 			UpdateDocksDirection();
 | |
| 			SetWindowDirty(w);
 | |
| 			break;
 | |
| 		}
 | |
| 	} break;
 | |
| 
 | |
| 	case WE_MOUSELOOP:
 | |
| 		if (WP(w,def_d).close)
 | |
| 			DeleteWindow(w);
 | |
| 		break;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| static const Widget _build_docks_depot_widgets[] = {
 | |
| {   WWT_CLOSEBOX,     7,     0,    10,     0,    13, STR_00C5,												STR_018B_CLOSE_WINDOW},
 | |
| {    WWT_CAPTION,     7,    11,   203,     0,    13, STR_3800_SHIP_DEPOT_ORIENTATION,	STR_018C_WINDOW_TITLE_DRAG_THIS},
 | |
| {      WWT_PANEL,     7,     0,   203,    14,    85, 0x0,															STR_NULL},
 | |
| {      WWT_PANEL,    14,     3,   100,    17,    82, 0x0,															STR_3803_SELECT_SHIP_DEPOT_ORIENTATION},
 | |
| {      WWT_PANEL,    14,   103,   200,    17,    82, 0x0,															STR_3803_SELECT_SHIP_DEPOT_ORIENTATION},
 | |
| {   WIDGETS_END},
 | |
| };
 | |
| 
 | |
| static const WindowDesc _build_docks_depot_desc = {
 | |
| 	-1, -1, 204, 86,
 | |
| 	WC_BUILD_DEPOT,WC_BUILD_TOOLBAR,
 | |
| 	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
 | |
| 	_build_docks_depot_widgets,
 | |
| 	BuildDocksDepotWndProc
 | |
| };
 | |
| 
 | |
| 
 | |
| static void ShowBuildDocksDepotPicker()
 | |
| {
 | |
| 	AllocateWindowDesc(&_build_docks_depot_desc);
 | |
| 	UpdateDocksDirection();
 | |
| }
 | |
| 
 | |
| 
 | |
| void InitializeDockGui()
 | |
| {
 | |
| 	_ship_depot_direction = 0;
 | |
| }
 | 
