mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-05 11:59:41 +01:00
-Change: make (rail) waypoints sub classes of 'base stations', make buoys waypoints and unify code between them where possible.
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/* $Id$ */
|
|
|
|
/** @file saveload_internal.h Declaration of functions used in more save/load files */
|
|
|
|
#ifndef SAVELOAD_INTERNAL_H
|
|
#define SAVELOAD_INTERNAL_H
|
|
|
|
#include "../strings_type.h"
|
|
#include "../company_manager_face.h"
|
|
#include "../order_base.h"
|
|
#include "../engine_type.h"
|
|
#include "saveload.h"
|
|
|
|
void InitializeOldNames();
|
|
StringID RemapOldStringID(StringID s);
|
|
char *CopyFromOldName(StringID id);
|
|
void ResetOldNames();
|
|
|
|
void MoveBuoysToWaypoints();
|
|
void MoveWaypointsToBaseStations();
|
|
const SaveLoad *GetBaseStationDescription();
|
|
|
|
void AfterLoadVehicles(bool part_of_load);
|
|
void AfterLoadStations();
|
|
void AfterLoadLabelMaps();
|
|
void UpdateHousesAndTowns();
|
|
|
|
void UpdateOldAircraft();
|
|
|
|
void SaveViewportBeforeSaveGame();
|
|
void ResetViewportAfterLoadGame();
|
|
|
|
void ConvertOldMultiheadToNew();
|
|
void ConnectMultiheadedTrains();
|
|
|
|
Engine *GetTempDataEngine(EngineID index);
|
|
void CopyTempEngineData();
|
|
|
|
extern int32 _saved_scrollpos_x;
|
|
extern int32 _saved_scrollpos_y;
|
|
|
|
extern SavegameType _savegame_type;
|
|
extern uint32 _ttdp_version;
|
|
|
|
CompanyManagerFace ConvertFromOldCompanyManagerFace(uint32 face);
|
|
|
|
Order UnpackOldOrder(uint16 packed);
|
|
|
|
#endif /* SAVELOAD_INTERNAL_H */
|