OpenRCT2/src/world/banner.h

55 lines
1.6 KiB
C
Raw Normal View History

#pragma region Copyright (c) 2014-2016 OpenRCT2 Developers
/*****************************************************************************
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
* For more information, visit https://github.com/OpenRCT2/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.
*
* A full copy of the GNU General Public License can be found in licence.txt
*****************************************************************************/
#pragma endregion
#ifndef _BANNER_H_
#define _BANNER_H_
#include "../common.h"
#include "../world/map.h"
#define BANNER_NULL 255
#define MAX_BANNERS 250
2016-06-02 23:22:08 +02:00
#pragma pack(push, 1)
2016-05-12 23:57:40 +02:00
typedef struct rct_banner {
2014-11-05 17:14:12 +01:00
uint8 type;
uint8 flags; //0x01 bit 0 is no entry
2014-10-21 18:59:47 +02:00
rct_string_id string_idx; //0x02
uint8 colour; //0x04
uint8 text_colour; //0x05
uint8 x; //0x06
uint8 y; //0x07
2016-06-02 23:22:08 +02:00
} rct_banner;
2016-06-03 10:54:44 +02:00
assert_struct_size(rct_banner, 8);
2016-06-02 23:22:08 +02:00
#pragma pack(pop)
2014-10-21 18:59:47 +02:00
enum{
BANNER_FLAG_NO_ENTRY = (1 << 0),
2015-06-14 13:56:12 +02:00
BANNER_FLAG_1 = (1 << 1),
BANNER_FLAG_2 = (1 << 2)
2015-12-16 21:48:27 +01:00
};
2014-10-21 18:59:47 +02:00
2016-09-04 19:42:27 +02:00
extern rct_banner gBanners[MAX_BANNERS];
2015-02-18 04:40:54 +01:00
void banner_init();
int create_new_banner(uint8 flags);
rct_map_element *banner_get_map_element(int bannerIndex);
int banner_get_closest_ride_index(int x, int y, int z);
void fix_banner_count();
void game_command_callback_place_banner(int eax, int ebx, int ecx, int edx, int esi, int edi, int ebp);
2015-02-18 04:40:54 +01:00
#endif