mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-18 04:23:20 +01:00
44 lines
1.6 KiB
C
44 lines
1.6 KiB
C
/*****************************************************************************
|
|
* Copyright (c) 2014 Ted John
|
|
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
|
|
*
|
|
* This file is part of OpenRCT2.
|
|
*
|
|
* OpenRCT2 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*****************************************************************************/
|
|
|
|
#include "../common.h"
|
|
#include "track.h"
|
|
|
|
// 0x009968BB, 0x009968BC, 0x009968BD, 0x009968BF, 0x009968C1, 0x009968C3
|
|
extern const rct_track_coordinates TrackCoordinates[256];
|
|
// 0x009972BB, 0x009972BC, 0x009972BD, 0x009972BF, 0x009972C1, 0x009972C3
|
|
extern const rct_track_coordinates* FlatTrackCoordinates;
|
|
|
|
extern const uint64 RideTypePossibleTrackConfigurations[91];
|
|
extern const rct_preview_track *TrackBlocks[256];
|
|
extern const rct_preview_track *FlatRideTrackBlocks[255];
|
|
|
|
extern const uint8 TrackPieceLengths[256];
|
|
|
|
typedef struct {
|
|
uint16 next;
|
|
uint16 previous;
|
|
} track_curve_chain;
|
|
|
|
extern const track_curve_chain gTrackCurveChain[256];
|
|
extern const track_curve_chain gFlatRideTrackCurveChain[256];
|
|
|
|
extern const uint32 RideTypeTrackPaintFunctions[91];
|