OpenTTD Source
1.11.2
|
#include <stdarg.h>
#include "../stdafx.h"
#include "../strings_func.h"
#include "../blitter/factory.hpp"
#include "../console_func.h"
#include "../video/video_driver.hpp"
#include "../querystring_gui.h"
#include "../town.h"
#include "../window_func.h"
#include "../toolbar_gui.h"
#include "../core/geometry_func.hpp"
#include "network.h"
#include "network_client.h"
#include "network_base.h"
#include "../widgets/network_chat_widget.h"
#include "table/strings.h"
#include "../safeguards.h"
Go to the source code of this file.
Data Structures | |
struct | ChatMessage |
Container for a message. More... | |
struct | NetworkChatWindow |
Window to enter the chat message in. More... | |
Functions | |
static uint | GetChatMessageCount () |
Count the chat messages. More... | |
void CDECL | NetworkAddChatMessage (TextColour colour, uint duration, const char *message,...) |
Add a text message to the 'chat window' to be shown. More... | |
void | NetworkReInitChatBoxSize () |
Initialize all font-dependent chat box sizes. | |
void | NetworkInitChatMessage () |
Initialize all buffers of the chat visualisation. | |
void | NetworkUndrawChatMessage () |
Hide the chatbox. | |
void | NetworkChatMessageLoop () |
Check if a message is expired. | |
void | NetworkDrawChatMessage () |
Draw the chat message-box. | |
static void | SendChat (const char *buf, DestType type, int dest) |
Send an actual chat message. More... | |
void | ShowNetworkChatQueryWindow (DestType type, int dest) |
Show the chat window. More... | |
Variables | |
static const uint | NETWORK_CHAT_LINE_SPACING = 3 |
The draw buffer must be able to contain the chat message, client name and the "[All]" message, some spaces and possible translations of [All] to other languages. More... | |
static ChatMessage * | _chatmsg_list = nullptr |
The actual chat message list. | |
static bool | _chatmessage_dirty = false |
Does the chat message need repainting? | |
static bool | _chatmessage_visible = false |
Is a chat message visible. | |
static bool | _chat_tab_completion_active |
Whether tab completion is active. | |
static uint | MAX_CHAT_MESSAGES = 0 |
The limit of chat messages to show. | |
static PointDimension | _chatmsg_box |
The chatbox grows from the bottom so the coordinates are pixels from the left and pixels from the bottom. More... | |
static uint8 * | _chatmessage_backup = nullptr |
Backup in case text is moved. | |
static const NWidgetPart | _nested_chat_window_widgets [] |
The widgets of the chat window. More... | |
static WindowDesc | _chat_window_desc (WDP_MANUAL, nullptr, 0, 0, WC_SEND_NETWORK_MSG, WC_NONE, 0, _nested_chat_window_widgets, lengthof(_nested_chat_window_widgets)) |
The description of the chat window. | |
GUI for handling chat messages.
Definition in file network_chat_gui.cpp.
|
inlinestatic |
Count the chat messages.
Definition at line 64 of file network_chat_gui.cpp.
References _chatmsg_list, and MAX_CHAT_MESSAGES.
Referenced by NetworkAddChatMessage().
void CDECL NetworkAddChatMessage | ( | TextColour | colour, |
uint | duration, | ||
const char * | message, | ||
... | |||
) |
Add a text message to the 'chat window' to be shown.
colour | The colour this message is to be shown in |
duration | The duration of the chat message in seconds |
message | message itself in printf() style |
Definition at line 80 of file network_chat_gui.cpp.
References _chatmsg_list, ChatMessage::colour, DRAW_STRING_BUFFER, GetChatMessageCount(), lastof, MAX_CHAT_MESSAGES, ChatMessage::message, strecpy(), TC_IS_PALETTE_COLOUR, Utf8TrimString(), and vseprintf().
|
static |
Send an actual chat message.
buf | The message to send. |
type | The type of destination. |
dest | The actual destination index. |
Definition at line 268 of file network_chat_gui.cpp.
References _network_server, ClientNetworkGameSocketHandler::SendChat(), and StrEmpty().
Referenced by NetworkChatWindow::OnClick().
void ShowNetworkChatQueryWindow | ( | DestType | type, |
int | dest | ||
) |
Show the chat window.
type | The type of destination. |
dest | The actual destination index. |
Definition at line 553 of file network_chat_gui.cpp.
References _chat_window_desc, DeleteWindowByClass(), and WC_SEND_NETWORK_MSG.
|
static |
The chatbox grows from the bottom so the coordinates are pixels from the left and pixels from the bottom.
The height is the maximum height.
Definition at line 57 of file network_chat_gui.cpp.
Referenced by NetworkInitChatMessage(), and NetworkReInitChatBoxSize().
|
static |
The widgets of the chat window.
Definition at line 525 of file network_chat_gui.cpp.
|
static |
The draw buffer must be able to contain the chat message, client name and the "[All]" message, some spaces and possible translations of [All] to other languages.
Spacing between chat lines.
Definition at line 37 of file network_chat_gui.cpp.
Referenced by NetworkReInitChatBoxSize().