1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Add generated Spiral RC

This commit is contained in:
Michał Janiszewski
2016-10-09 14:17:02 +02:00
parent e5141c0f69
commit 482e7c15f0
3 changed files with 6319 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6241,7 +6241,7 @@ const track_curve_chain gFlatRideTrackCurveChain[256] = {
};
const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
0, // RIDE_TYPE_SPIRAL_ROLLER_COASTER
get_track_paint_function_spiral_rc, // RIDE_TYPE_SPIRAL_ROLLER_COASTER
0, // RIDE_TYPE_STAND_UP_ROLLER_COASTER
0, // RIDE_TYPE_SUSPENDED_SWINGING_COASTER
0, // RIDE_TYPE_INVERTED_ROLLER_COASTER

View File

@@ -260,6 +260,7 @@ void track_paint_util_diag_tiles_paint(sint8 thickness, sint16 height, int direc
typedef void (*TRACK_PAINT_FUNCTION)(uint8 rideIndex, uint8 trackSequence, uint8 direction, int height, rct_map_element* mapElement);
typedef TRACK_PAINT_FUNCTION (*TRACK_PAINT_FUNCTION_GETTER)(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_spiral_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_junior_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_monorail(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_boat_ride(int trackType, int direction);