2014-08-04 07:12:15 -05:00
|
|
|
// vim: set ts=4 sw=4 tw=99 noet:
|
|
|
|
//
|
|
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
|
|
//
|
|
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
|
|
|
|
//
|
|
|
|
// Info. Messages Plugin
|
|
|
|
//
|
2004-01-31 20:56:22 +00:00
|
|
|
|
2004-03-05 19:35:38 +00:00
|
|
|
#include <amxmodx>
|
2004-03-07 14:30:53 +00:00
|
|
|
#include <amxmisc>
|
2004-01-31 20:56:22 +00:00
|
|
|
|
2018-09-12 14:54:07 +02:00
|
|
|
#pragma semicolon 1
|
|
|
|
|
2004-08-05 11:09:16 +00:00
|
|
|
#define X_POS -1.0
|
2006-06-07 23:11:45 +00:00
|
|
|
#define Y_POS 0.20
|
2004-08-05 11:09:16 +00:00
|
|
|
#define HOLD_TIME 12.0
|
2018-09-12 14:54:07 +02:00
|
|
|
#define MAX_MSG_LEN 384
|
|
|
|
#define TASK_MSG 12345
|
|
|
|
|
|
|
|
enum _:MessageInfo
|
|
|
|
{
|
|
|
|
Message[MAX_MSG_LEN],
|
|
|
|
R,
|
|
|
|
G,
|
|
|
|
B
|
|
|
|
}
|
2004-01-31 20:56:22 +00:00
|
|
|
|
|
|
|
|
2018-09-12 14:54:07 +02:00
|
|
|
new Array:g_Messages;
|
|
|
|
new g_MessagesNum;
|
|
|
|
new g_Current;
|
|
|
|
|
|
|
|
new g_amx_freq_imessage;
|
|
|
|
new g_hostname;
|
2007-04-24 18:18:45 +00:00
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
public plugin_init()
|
|
|
|
{
|
2018-09-12 14:54:07 +02:00
|
|
|
register_plugin("Info. Messages", AMXX_VERSION_STR, "AMXX Dev Team");
|
|
|
|
register_dictionary("imessage.txt");
|
|
|
|
register_dictionary("common.txt");
|
|
|
|
register_srvcmd("amx_imessage", "setMessage");
|
|
|
|
|
|
|
|
g_Messages = ArrayCreate(MessageInfo);
|
|
|
|
g_amx_freq_imessage = create_cvar("amx_freq_imessage", "10", _, "Frequency in seconds of colored messages", true, 0.0);
|
|
|
|
g_hostname
|
|
|
|
|
|
|
|
new lastinfo[8];
|
|
|
|
get_localinfo("lastinfomsg", lastinfo, charsmax(lastinfo));
|
|
|
|
g_Current = str_to_num(lastinfo);
|
|
|
|
set_localinfo("lastinfomsg", "");
|
2004-01-31 20:56:22 +00:00
|
|
|
}
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
public infoMessage()
|
|
|
|
{
|
2018-09-12 14:54:07 +02:00
|
|
|
// If the last message is reached, go back to the first one
|
2005-09-12 21:06:24 +00:00
|
|
|
if (g_Current >= g_MessagesNum)
|
2018-09-12 14:54:07 +02:00
|
|
|
{
|
|
|
|
g_Current = 0;
|
|
|
|
}
|
2006-04-25 07:35:02 +00:00
|
|
|
|
2007-04-24 18:18:45 +00:00
|
|
|
// No messages, just get out of here
|
2018-09-12 14:54:07 +02:00
|
|
|
if (g_MessagesNum == 0)
|
2007-04-24 18:18:45 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-12 14:54:07 +02:00
|
|
|
static message[MessageInfo];
|
|
|
|
ArrayGetArray(g_Messages, g_Current, message);
|
2006-04-25 07:35:02 +00:00
|
|
|
|
2018-09-12 14:54:07 +02:00
|
|
|
new hostname[64];
|
2014-07-29 16:32:32 +02:00
|
|
|
get_cvar_string("hostname", hostname, charsmax(hostname));
|
2018-09-12 14:54:07 +02:00
|
|
|
replace(message, charsmax(message), "%hostname%", hostname);
|
2005-09-12 21:06:24 +00:00
|
|
|
|
2007-04-24 18:18:45 +00:00
|
|
|
set_hudmessage(values[0], values[1], values[2], X_POS, Y_POS, 0, 0.5, HOLD_TIME, 2.0, 2.0, -1);
|
2005-09-12 21:06:24 +00:00
|
|
|
|
2018-09-12 14:54:07 +02:00
|
|
|
show_hudmessage(0, "%s", message);
|
2007-04-24 18:18:45 +00:00
|
|
|
|
2018-09-12 14:54:07 +02:00
|
|
|
client_print(0, print_console, "%s", message);
|
2007-04-24 18:18:45 +00:00
|
|
|
++g_Current;
|
|
|
|
|
2007-04-25 17:24:02 +00:00
|
|
|
new Float:freq_im = get_pcvar_float(amx_freq_imessage);
|
2005-09-12 21:06:24 +00:00
|
|
|
|
|
|
|
if (freq_im > 0.0)
|
2007-04-24 18:18:45 +00:00
|
|
|
set_task(freq_im, "infoMessage", 12345);
|
2004-01-31 20:56:22 +00:00
|
|
|
}
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
public setMessage()
|
|
|
|
{
|
|
|
|
|
2007-04-24 18:18:45 +00:00
|
|
|
new Message[384];
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
remove_task(12345)
|
2014-07-29 16:32:32 +02:00
|
|
|
read_argv(1, Message, charsmax(Message))
|
2005-09-12 21:06:24 +00:00
|
|
|
|
2014-07-29 16:32:32 +02:00
|
|
|
while (replace(Message, charsmax(Message), "\n", "^n")) {}
|
2005-09-12 21:06:24 +00:00
|
|
|
|
|
|
|
new mycol[12]
|
2007-04-24 18:18:45 +00:00
|
|
|
new vals[3];
|
2005-09-12 21:06:24 +00:00
|
|
|
|
2014-07-29 16:32:32 +02:00
|
|
|
read_argv(2, mycol, charsmax(mycol)) // RRRGGGBBB
|
2007-04-24 18:18:45 +00:00
|
|
|
vals[2] = str_to_num(mycol[6])
|
2005-09-12 21:06:24 +00:00
|
|
|
|
|
|
|
mycol[6] = 0
|
2007-04-24 18:18:45 +00:00
|
|
|
vals[1] = str_to_num(mycol[3])
|
2005-09-12 21:06:24 +00:00
|
|
|
|
|
|
|
mycol[3] = 0
|
2007-04-24 18:18:45 +00:00
|
|
|
vals[0] = str_to_num(mycol[0])
|
2005-09-12 21:06:24 +00:00
|
|
|
|
|
|
|
g_MessagesNum++
|
|
|
|
|
2007-04-24 18:18:45 +00:00
|
|
|
new Float:freq_im = get_pcvar_float(amx_freq_imessage)
|
|
|
|
|
|
|
|
ArrayPushString(g_Messages, Message);
|
|
|
|
ArrayPushArray(g_Values, vals);
|
2005-09-12 21:06:24 +00:00
|
|
|
|
|
|
|
if (freq_im > 0.0)
|
|
|
|
set_task(freq_im, "infoMessage", 12345)
|
|
|
|
|
|
|
|
return PLUGIN_HANDLED
|
2004-01-31 20:56:22 +00:00
|
|
|
}
|
|
|
|
|
2005-09-12 21:06:24 +00:00
|
|
|
public plugin_end()
|
|
|
|
{
|
|
|
|
new lastinfo[8]
|
|
|
|
|
2014-07-29 16:32:32 +02:00
|
|
|
num_to_str(g_Current, lastinfo, charsmax(lastinfo))
|
2005-09-12 21:06:24 +00:00
|
|
|
set_localinfo("lastinfomsg", lastinfo)
|
2015-07-11 00:39:34 +03:00
|
|
|
|
|
|
|
ArrayDestroy(g_Messages)
|
|
|
|
ArrayDestroy(g_Values)
|
2005-09-12 21:06:24 +00:00
|
|
|
}
|