ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/c_party.C
(Generate patch)

Comparing deliantra/server/server/c_party.C (file contents):
Revision 1.13 by pippijn, Sat Jan 6 14:42:30 2007 UTC vs.
Revision 1.17 by root, Sun Mar 18 03:05:40 2007 UTC

1/* 1/*
2 CrossFire, A Multiplayer game for X-windows 2 * CrossFire, A Multiplayer game for X-windows
3 3 *
4 Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
6 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (C) 1992 Frank Tore Johansen
7 7 *
8 This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version. 11 * (at your option) any later version.
12 12 *
13 This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details. 16 * GNU General Public License for more details.
17 17 *
18 You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 21 *
22 The authors can be reached via e-mail at <crossfire@schmorp.de> 22 * The authors can be reached via e-mail at <crossfire@schmorp.de>
23*/ 23 */
24 24
25#include <global.h> 25#include <global.h>
26#include <sproto.h> 26#include <sproto.h>
27#include <spells.h> 27#include <spells.h>
28 28
71remove_party (partylist *target_party) 71remove_party (partylist *target_party)
72{ 72{
73 partylist *tmpparty; 73 partylist *tmpparty;
74 partylist *previousparty; 74 partylist *previousparty;
75 partylist *nextparty; 75 partylist *nextparty;
76 player *pl;
77 76
78 if (firstparty == NULL) 77 if (firstparty == NULL)
79 { 78 {
80 LOG (llevError, "remove_party(): I was asked to remove party %s, but no parties are defined", target_party->partyname); 79 LOG (llevError, "remove_party(): I was asked to remove party %s, but no parties are defined", target_party->partyname);
81 return; 80 return;
139/* Remove unused parties, this could be made to scale a lot better. */ 138/* Remove unused parties, this could be made to scale a lot better. */
140void 139void
141obsolete_parties (void) 140obsolete_parties (void)
142{ 141{
143 int player_count; 142 int player_count;
144 player *pl;
145 partylist *party; 143 partylist *party;
146 partylist *next = NULL; 144 partylist *next = NULL;
147 145
148 if (!firstparty) 146 if (!firstparty)
149 return; /* we can't obsolete parties if there aren't any */ 147 return; /* we can't obsolete parties if there aren't any */
158 remove_party (party); 156 remove_party (party);
159 } 157 }
160} 158}
161 159
162void 160void
163add_kill_to_party (partylist *party, char *killer, char *dead, long exp) 161add_kill_to_party (partylist *party, const char *killer, const char *dead, long exp)
164{ 162{
165 int i, pos; 163 int i, pos;
166 164
167 if (party == NULL) 165 if (party == NULL)
168 return; 166 return;
230} 228}
231 229
232void 230void
233send_party_message (object *op, char *msg) 231send_party_message (object *op, char *msg)
234{ 232{
235 player *pl;
236
237 for_all_players (pl) 233 for_all_players (pl)
238 if (pl->ob->contr->party == op->contr->party && pl->ob != op) 234 if (pl->ob->contr->party == op->contr->party && pl->ob != op)
239 new_draw_info (NDI_WHITE, 0, pl->ob, msg); 235 new_draw_info (NDI_WHITE, 0, pl->ob, msg);
240} 236}
241 237
364 } 360 }
365 361
366 if (strncmp (params, "form ", 5) == 0) 362 if (strncmp (params, "form ", 5) == 0)
367 { 363 {
368 int player_count; 364 int player_count;
369 player *pl;
370 365
371 params += 5; 366 params += 5;
372 if (op->contr->party) 367 if (op->contr->party)
373 oldparty = op->contr->party; 368 oldparty = op->contr->party;
374 else 369 else
397 * it, so check if there are any other members and if not, delete the party 392 * it, so check if there are any other members and if not, delete the party
398 */ 393 */
399 player_count = 0; 394 player_count = 0;
400 if (oldparty) 395 if (oldparty)
401 { 396 {
402 for (pl = first_player; pl->next != NULL; pl = pl->next) 397 for_all_players (pl)
403 {
404 if (pl->party == oldparty) 398 if (pl->party == oldparty)
405 player_count++; 399 player_count++;
406 } 400
407 if (player_count == 0) 401 if (player_count == 0)
408 remove_party (oldparty); 402 remove_party (oldparty);
409 } 403 }
404
410 return 0; 405 return 0;
411 } /* form */ 406 } /* form */
412 407
413 if (strcmp (params, "leave") == 0) 408 if (strcmp (params, "leave") == 0)
414 { 409 {
425 return 1; 420 return 1;
426 } 421 }
427 422
428 if (strcmp (params, "who") == 0) 423 if (strcmp (params, "who") == 0)
429 { 424 {
430 player *pl;
431
432 tmpparty = op->contr->party; 425 tmpparty = op->contr->party;
433 if (op->contr->party == NULL) 426 if (op->contr->party == NULL)
434 { 427 {
435 new_draw_info (NDI_UNIQUE, 0, op, "You are not a member of any party."); 428 new_draw_info (NDI_UNIQUE, 0, op, "You are not a member of any party.");
436 return 1; 429 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines