mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
cleaned up the kill messages
This commit is contained in:
parent
8780c2fd9b
commit
57da0cae4f
|
@ -391,6 +391,7 @@ static const int chat_max_lines = 10;
|
||||||
struct chatline
|
struct chatline
|
||||||
{
|
{
|
||||||
int tick;
|
int tick;
|
||||||
|
int client_id;
|
||||||
char text[512+64];
|
char text[512+64];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -408,16 +409,13 @@ void chat_add_line(int client_id, const char *line)
|
||||||
{
|
{
|
||||||
chat_current_line = (chat_current_line+1)%chat_max_lines;
|
chat_current_line = (chat_current_line+1)%chat_max_lines;
|
||||||
chat_lines[chat_current_line].tick = client_tick();
|
chat_lines[chat_current_line].tick = client_tick();
|
||||||
|
chat_lines[chat_current_line].client_id = client_id;
|
||||||
|
if(client_id == -1) // server message
|
||||||
|
sprintf(chat_lines[chat_current_line].text, "*** %s", line);
|
||||||
|
else
|
||||||
sprintf(chat_lines[chat_current_line].text, "%s: %s", client_datas[client_id].name, line); // TODO: abit nasty
|
sprintf(chat_lines[chat_current_line].text, "%s: %s", client_datas[client_id].name, line); // TODO: abit nasty
|
||||||
}
|
}
|
||||||
|
|
||||||
void status_add_line(const char *line)
|
|
||||||
{
|
|
||||||
chat_current_line = (chat_current_line+1)%chat_max_lines;
|
|
||||||
chat_lines[chat_current_line].tick = client_tick();
|
|
||||||
strcpy(chat_lines[chat_current_line].text, line);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct killmsg
|
struct killmsg
|
||||||
{
|
{
|
||||||
int weapon;
|
int weapon;
|
||||||
|
@ -1354,8 +1352,12 @@ void modc_render()
|
||||||
|
|
||||||
// pseudo format
|
// pseudo format
|
||||||
float zoom = 3.0f;
|
float zoom = 3.0f;
|
||||||
if(!chat_active && inp_key_pressed('I'))
|
|
||||||
|
if(config.debug)
|
||||||
|
{
|
||||||
|
if(!chat_active && inp_key_pressed(input::f8))
|
||||||
zoom = 1.0f;
|
zoom = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
float width = 400*zoom;
|
float width = 400*zoom;
|
||||||
float height = 300*zoom;
|
float height = 300*zoom;
|
||||||
|
@ -1815,18 +1817,4 @@ void modc_message(int msg)
|
||||||
killmsgs[killmsg_current].weapon = msg_unpack_int();
|
killmsgs[killmsg_current].weapon = msg_unpack_int();
|
||||||
killmsgs[killmsg_current].tick = client_tick();
|
killmsgs[killmsg_current].tick = client_tick();
|
||||||
}
|
}
|
||||||
else if(msg == MSG_JOIN)
|
|
||||||
{
|
|
||||||
int cid = msg_unpack_int();
|
|
||||||
char message[256];
|
|
||||||
sprintf(message, "%s joined the game", client_datas[cid].name);
|
|
||||||
status_add_line(message);
|
|
||||||
}
|
|
||||||
else if(msg == MSG_QUIT)
|
|
||||||
{
|
|
||||||
int cid = msg_unpack_int();
|
|
||||||
char message[256];
|
|
||||||
sprintf(message, "%s quit the game", client_datas[cid].name);
|
|
||||||
status_add_line(message);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <engine/config.h>
|
#include <engine/config.h>
|
||||||
#include "../game.h"
|
#include "../game.h"
|
||||||
|
@ -1714,6 +1715,15 @@ void mods_client_input(int client_id, void *input)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void send_chat_all(int cid, const char *msg)
|
||||||
|
{
|
||||||
|
msg_pack_start(MSG_CHAT, MSGFLAG_VITAL);
|
||||||
|
msg_pack_int(cid);
|
||||||
|
msg_pack_string(msg, 512);
|
||||||
|
msg_pack_end();
|
||||||
|
server_send_msg(-1);
|
||||||
|
}
|
||||||
|
|
||||||
void mods_client_enter(int client_id)
|
void mods_client_enter(int client_id)
|
||||||
{
|
{
|
||||||
players[client_id].init();
|
players[client_id].init();
|
||||||
|
@ -1754,12 +1764,17 @@ void mods_client_enter(int client_id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mods_message(MSG_JOIN, client_id);
|
char buf[512];
|
||||||
|
sprintf(buf, "%s has joined the game", players[client_id].name);
|
||||||
|
send_chat_all(-1, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void mods_client_drop(int client_id)
|
void mods_client_drop(int client_id)
|
||||||
{
|
{
|
||||||
mods_message(MSG_QUIT, client_id);
|
char buf[512];
|
||||||
|
sprintf(buf, "%s has left the game", players[client_id].name);
|
||||||
|
send_chat_all(-1, buf);
|
||||||
|
|
||||||
dbg_msg("mods", "client drop %d", client_id);
|
dbg_msg("mods", "client drop %d", client_id);
|
||||||
world.remove_entity(&players[client_id]);
|
world.remove_entity(&players[client_id]);
|
||||||
players[client_id].client_id = -1;
|
players[client_id].client_id = -1;
|
||||||
|
@ -1769,11 +1784,7 @@ void mods_message(int msg, int client_id)
|
||||||
{
|
{
|
||||||
if(msg == MSG_SAY)
|
if(msg == MSG_SAY)
|
||||||
{
|
{
|
||||||
msg_pack_start(MSG_CHAT, MSGFLAG_VITAL);
|
send_chat_all(client_id, msg_unpack_string());
|
||||||
msg_pack_int(client_id);
|
|
||||||
msg_pack_string(msg_unpack_string(), 512);
|
|
||||||
msg_pack_end();
|
|
||||||
server_send_msg(-1);
|
|
||||||
}
|
}
|
||||||
else if (msg == MSG_SWITCHTEAM)
|
else if (msg == MSG_SWITCHTEAM)
|
||||||
{
|
{
|
||||||
|
@ -1782,20 +1793,6 @@ void mods_message(int msg, int client_id)
|
||||||
players[client_id].die(client_id, -1);
|
players[client_id].die(client_id, -1);
|
||||||
players[client_id].score--;
|
players[client_id].score--;
|
||||||
}
|
}
|
||||||
else if (msg == MSG_JOIN)
|
|
||||||
{
|
|
||||||
msg_pack_start(MSG_JOIN, MSGFLAG_VITAL);
|
|
||||||
msg_pack_int(client_id);
|
|
||||||
msg_pack_end();
|
|
||||||
server_send_msg(-1);
|
|
||||||
}
|
|
||||||
else if (msg == MSG_QUIT)
|
|
||||||
{
|
|
||||||
msg_pack_start(MSG_QUIT, MSGFLAG_VITAL);
|
|
||||||
msg_pack_int(client_id);
|
|
||||||
msg_pack_end();
|
|
||||||
server_send_msg(-1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extern unsigned char internal_data[];
|
extern unsigned char internal_data[];
|
||||||
|
|
Loading…
Reference in a new issue