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.12 by root, Sun Dec 31 10:28:36 2006 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) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
5 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (C) 1992 Frank Tore Johansen
6 7 *
7 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
8 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
9 the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version. 11 * (at your option) any later version.
11 12 *
12 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,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details. 16 * GNU General Public License for more details.
16 17 *
17 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
18 along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 21 *
21 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>
22*/ 23 */
23 24
24#include <global.h> 25#include <global.h>
25#include <sproto.h> 26#include <sproto.h>
26#include <spells.h> 27#include <spells.h>
27 28
70remove_party (partylist *target_party) 71remove_party (partylist *target_party)
71{ 72{
72 partylist *tmpparty; 73 partylist *tmpparty;
73 partylist *previousparty; 74 partylist *previousparty;
74 partylist *nextparty; 75 partylist *nextparty;
75 player *pl;
76 76
77 if (firstparty == NULL) 77 if (firstparty == NULL)
78 { 78 {
79 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);
80 return; 80 return;
138/* 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. */
139void 139void
140obsolete_parties (void) 140obsolete_parties (void)
141{ 141{
142 int player_count; 142 int player_count;
143 player *pl;
144 partylist *party; 143 partylist *party;
145 partylist *next = NULL; 144 partylist *next = NULL;
146 145
147 if (!firstparty) 146 if (!firstparty)
148 return; /* we can't obsolete parties if there aren't any */ 147 return; /* we can't obsolete parties if there aren't any */
157 remove_party (party); 156 remove_party (party);
158 } 157 }
159} 158}
160 159
161void 160void
162add_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)
163{ 162{
164 int i, pos; 163 int i, pos;
165 164
166 if (party == NULL) 165 if (party == NULL)
167 return; 166 return;
229} 228}
230 229
231void 230void
232send_party_message (object *op, char *msg) 231send_party_message (object *op, char *msg)
233{ 232{
234 player *pl;
235
236 for_all_players (pl) 233 for_all_players (pl)
237 if (pl->ob->contr->party == op->contr->party && pl->ob != op) 234 if (pl->ob->contr->party == op->contr->party && pl->ob != op)
238 new_draw_info (NDI_WHITE, 0, pl->ob, msg); 235 new_draw_info (NDI_WHITE, 0, pl->ob, msg);
239} 236}
240 237
363 } 360 }
364 361
365 if (strncmp (params, "form ", 5) == 0) 362 if (strncmp (params, "form ", 5) == 0)
366 { 363 {
367 int player_count; 364 int player_count;
368 player *pl;
369 365
370 params += 5; 366 params += 5;
371 if (op->contr->party) 367 if (op->contr->party)
372 oldparty = op->contr->party; 368 oldparty = op->contr->party;
373 else 369 else
396 * 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
397 */ 393 */
398 player_count = 0; 394 player_count = 0;
399 if (oldparty) 395 if (oldparty)
400 { 396 {
401 for (pl = first_player; pl->next != NULL; pl = pl->next) 397 for_all_players (pl)
402 {
403 if (pl->party == oldparty) 398 if (pl->party == oldparty)
404 player_count++; 399 player_count++;
405 } 400
406 if (player_count == 0) 401 if (player_count == 0)
407 remove_party (oldparty); 402 remove_party (oldparty);
408 } 403 }
404
409 return 0; 405 return 0;
410 } /* form */ 406 } /* form */
411 407
412 if (strcmp (params, "leave") == 0) 408 if (strcmp (params, "leave") == 0)
413 { 409 {
424 return 1; 420 return 1;
425 } 421 }
426 422
427 if (strcmp (params, "who") == 0) 423 if (strcmp (params, "who") == 0)
428 { 424 {
429 player *pl;
430
431 tmpparty = op->contr->party; 425 tmpparty = op->contr->party;
432 if (op->contr->party == NULL) 426 if (op->contr->party == NULL)
433 { 427 {
434 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.");
435 return 1; 429 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines