Home
last modified time | relevance | path

Searched refs:chat_msg (Results 1 – 25 of 31) sorted by relevance

12

/dports/games/heretic/glheretic-1.2/
H A Dct_chat.c49 char chat_msg[MAXPLAYERS][MESSAGESIZE]; variable
93 memset(chat_msg[i], 0, MESSAGESIZE); in CT_Init()
286 strcat(plr_lastmsg[i], chat_msg[i]); in CT_Ticker()
290 strcpy(plr_lastmsg[i], chat_msg[i]); in CT_Ticker()
293 || chat_dest[i] == CT_PLR_ALL) && *chat_msg[i]) in CT_Ticker()
348 if(chat_msg[consoleplayer][i] < 33) in CT_Drawer()
355 chat_msg[consoleplayer][i]-33, PU_CACHE); in CT_Drawer()
421 chat_msg[player][msgptr[player]] = c; in CT_AddChar()
453 c = chat_msg[player][msgptr[player]]; in CT_BackSpace()
463 chat_msg[player][msgptr[player]] = 0; in CT_BackSpace()
[all …]
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/hexen/
H A Dct_chat.c67 char chat_msg[MAXPLAYERS][MESSAGESIZE]; variable
114 memset(chat_msg[i], 0, MESSAGESIZE); in CT_Init()
316 M_StringConcat(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
321 M_StringCopy(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
326 && *chat_msg[i]) in CT_Ticker()
332 else if (i == consoleplayer && (*chat_msg[i])) in CT_Ticker()
374 if (chat_msg[consoleplayer][i] < 33) in CT_Drawer()
442 chat_msg[player][msgptr[player]] = c; in CT_AddChar()
472 c = chat_msg[player][msgptr[player]]; in CT_BackSpace()
482 chat_msg[player][msgptr[player]] = 0; in CT_BackSpace()
[all …]
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/heretic/
H A Dct_chat.c62 char chat_msg[MAXPLAYERS][MESSAGESIZE]; variable
104 memset(chat_msg[i], 0, MESSAGESIZE); in CT_Init()
289 M_StringConcat(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
294 M_StringCopy(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
299 && *chat_msg[i]) in CT_Ticker()
305 else if (i == consoleplayer && (*chat_msg[i])) in CT_Ticker()
353 if (chat_msg[consoleplayer][i] < 33) in CT_Drawer()
421 chat_msg[player][msgptr[player]] = c; in CT_AddChar()
451 c = chat_msg[player][msgptr[player]]; in CT_BackSpace()
461 chat_msg[player][msgptr[player]] = 0; in CT_BackSpace()
[all …]
/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/heretic/
H A Dct_chat.c62 char chat_msg[MAXPLAYERS][MESSAGESIZE]; variable
104 memset(chat_msg[i], 0, MESSAGESIZE); in CT_Init()
289 M_StringConcat(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
294 M_StringCopy(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
299 && *chat_msg[i]) in CT_Ticker()
305 else if (i == consoleplayer && (*chat_msg[i])) in CT_Ticker()
353 if (chat_msg[consoleplayer][i] < 33) in CT_Drawer()
421 chat_msg[player][msgptr[player]] = c; in CT_AddChar()
451 c = chat_msg[player][msgptr[player]]; in CT_BackSpace()
461 chat_msg[player][msgptr[player]] = 0; in CT_BackSpace()
[all …]
/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/hexen/
H A Dct_chat.c67 char chat_msg[MAXPLAYERS][MESSAGESIZE]; variable
125 memset(chat_msg[i], 0, MESSAGESIZE); in CT_Init()
327 M_StringConcat(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
332 M_StringCopy(plr_lastmsg[i], chat_msg[i], in CT_Ticker()
337 && *chat_msg[i]) in CT_Ticker()
343 else if (i == consoleplayer && (*chat_msg[i])) in CT_Ticker()
385 if (chat_msg[consoleplayer][i] < 33) in CT_Drawer()
453 chat_msg[player][msgptr[player]] = c; in CT_AddChar()
483 c = chat_msg[player][msgptr[player]]; in CT_BackSpace()
493 chat_msg[player][msgptr[player]] = 0; in CT_BackSpace()
[all …]
/dports/games/uhexen/uhexen-0.601/src/
H A Dct_chat.c71 char chat_msg[MAXPLAYERS][MESSAGESIZE]; variable
119 memset(chat_msg[i], 0, MESSAGESIZE); in CT_Init()
320 strcat(plr_lastmsg[i], chat_msg[i]); in CT_Ticker()
324 strcpy(plr_lastmsg[i], chat_msg[i]); in CT_Ticker()
333 else if(i == consoleplayer && (*chat_msg[i])) in CT_Ticker()
374 if(chat_msg[consoleplayer][i] < 33) in CT_Drawer()
381 chat_msg[consoleplayer][i]-33, PU_CACHE); in CT_Drawer()
441 chat_msg[player][msgptr[player]] = c; in CT_AddChar()
471 c = chat_msg[player][msgptr[player]]; in CT_BackSpace()
481 chat_msg[player][msgptr[player]] = 0; in CT_BackSpace()
[all …]
/dports/games/wesnoth/wesnoth-1.14.17/src/
H A Dreplay.hpp34 class chat_msg { class
40 chat_msg(const config &cfg);
41 virtual ~chat_msg();
87 const std::vector<chat_msg>& build_chat_log() const;
134 …void add_chat_log_entry(const config &speak, std::back_insert_iterator< std::vector<chat_msg>> &i)…
H A Dreplay.cpp143 chat_msg::chat_msg(const config &cfg) in chat_msg() function in chat_msg
174 chat_msg::~chat_msg() in ~chat_msg()
353 void replay::add_chat_log_entry(const config &cfg, std::back_insert_iterator<std::vector<chat_msg>>… in add_chat_log_entry()
359 *i = chat_msg(cfg); in add_chat_log_entry()
373 static std::vector< chat_msg > message_log;
376 const std::vector<chat_msg>& replay::build_chat_log() const in build_chat_log()
381 std::back_insert_iterator<std::vector < chat_msg >> chat_log_appender( back_inserter(message_log)); in build_chat_log()
/dports/irc/bitlbee/bitlbee-3.6/protocols/
H A Dbee_chat.c122 if (bee->ui->chat_msg) { in imcb_chat_msg()
123 bee->ui->chat_msg(bee, c, bu, msg, flags, sent_at); in imcb_chat_msg()
247 ic->acc->prpl->chat_msg(c, buf, flags); in bee_chat_msg()
H A Dnogaim.h240 void (* chat_msg) (struct groupchat *, char *message, int flags); member
H A Dbee.h125 …gboolean (*chat_msg)(bee_t *bee, struct groupchat *c, bee_user_t *bu, const char *msg, guint32 fla… member
H A Dnogaim.c749 c->ic->acc->prpl->chat_msg(c, msg, flags); in imc_chat_msg()
/dports/games/7kaa/7kaa-2.15.4p1/include/
H A DONEWS.h175 void chat_msg();
253 void chat_msg(int nationRecno, char* chatStr);
/dports/games/quadra/quadra-1.3.0/include/
H A Dquadra.h225 Player_gone(Canvas *c, bool chat_msg);
H A Dpackets.h515 bool chat_msg; //Inverted on the net
518 chat_msg = true; in Packet_gone()
/dports/net/liblinphone/linphone-3.12.0/coreapi/
H A Dcallbacks.c1388 LinphoneChatMessage *chat_msg=(LinphoneChatMessage* )sal_op_get_user_pointer(op); in message_delivery_update() local
1390 if (chat_msg == NULL) { in message_delivery_update()
1395 if (chat_msg->chat_room != NULL) { in message_delivery_update()
1396 linphone_chat_message_update_state(chat_msg, chatStatusSal2Linphone(status)); in message_delivery_update()
1399 linphone_chat_message_destroy(chat_msg); in message_delivery_update()
/dports/net/liblinphone/linphone-3.12.0/tester/
H A Dflexisip_tester.c938 LinphoneChatMessage * chat_msg = NULL; in dos_module_trigger() local
950 chat_msg = linphone_chat_room_create_message(chat_room, msg); in dos_module_trigger()
951 linphone_chat_room_send_chat_message(chat_room, chat_msg); in dos_module_trigger()
962 chat_msg = linphone_chat_room_create_message(chat_room, passmsg); in dos_module_trigger()
963 linphone_chat_room_send_chat_message(chat_room, chat_msg); in dos_module_trigger()
/dports/games/7kaa/7kaa-2.15.4p1/src/
H A DONEWSENG.cpp86 { &News::chat_msg, 1 },
1652 void News::chat_msg() in chat_msg() function in News
H A DONEWS2.cpp915 void NewsArray::chat_msg(int fromNationRecno, char* chatStr) in chat_msg() function in NewsArray
/dports/games/quadra/quadra-1.3.0/source/
H A Dquadra.cpp368 bool chat_msg=p->chat_msg; in check_gone() local
371 exec(new Player_gone(canvas, chat_msg)); in check_gone()
383 p.chat_msg=!game->terminated; in check_gone()
1364 Player_gone::Player_gone(Canvas *c, bool chat_msg): Player_base(c) { in Player_gone() argument
1371 if(chat_msg) { in Player_gone()
H A Dpackets.cpp792 chat_msg=!p->read_bool(); in read()
798 p->write_bool(!chat_msg); in write()
/dports/games/wesnoth/wesnoth-1.14.17/src/gui/dialogs/
H A Dchat_log.cpp88 const std::vector<chat_msg>& chat_log_history;
/dports/irc/bitlbee-discord/bitlbee-discord-0.4.3-7-g607f988/src/
H A Ddiscord.c318 .chat_msg = discord_chat_msg, in init_plugin()
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/webserver/
H A Dprocess_handler.py249 chat_msg = ("<span class='chat_sender'>%s</span>: <span class='chat_msg'>%s</span>" %
251 self.send_to_all("chat", content = chat_msg)
/dports/irc/bitlbee/bitlbee-3.6/protocols/jabber/
H A Djabber.c786 ret->chat_msg = jabber_chat_msg_; in jabber_initmodule()

12