mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 06:44:38 +01:00
Clang-format sees the text behind `#pragma region` as code and formats it. Instead of stating the copyright and date there, it's now in the comment block right below it. The text "Copyright" is left in the `#pragma region` line, as clang-format sees it as a single identifier. I took the opportunity to normalize the dates, and add the copyright notice to the source files where it was missing them (except for third-party and the generated resources.h file).
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*****************************************************************************
|
|
* Copyright (c) 2014-2018 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#ifndef _CHAT_H_
|
|
#define _CHAT_H_
|
|
|
|
#include "../common.h"
|
|
|
|
#define CHAT_HISTORY_SIZE 10
|
|
#define CHAT_INPUT_SIZE 1024
|
|
#define CHAT_MAX_MESSAGE_LENGTH 200
|
|
#define CHAT_MAX_WINDOW_WIDTH 600
|
|
|
|
struct rct_drawpixelinfo;
|
|
|
|
enum CHAT_INPUT
|
|
{
|
|
CHAT_INPUT_NONE,
|
|
CHAT_INPUT_SEND,
|
|
CHAT_INPUT_CLOSE,
|
|
};
|
|
|
|
extern bool gChatOpen;
|
|
|
|
void chat_open();
|
|
void chat_close();
|
|
void chat_toggle();
|
|
|
|
void chat_init();
|
|
void chat_update();
|
|
void chat_draw(rct_drawpixelinfo * dpi, uint8 chatBackgroundColour);
|
|
|
|
void chat_history_add(const char *src);
|
|
void chat_input(CHAT_INPUT input);
|
|
|
|
sint32 chat_string_wrapped_get_height(void *args, sint32 width);
|
|
sint32 chat_history_draw_string(rct_drawpixelinfo *dpi, void *args, sint32 x, sint32 y, sint32 width);
|
|
|
|
#endif
|