| 1 |
/* |
| 2 |
* This file is part of Deliantra, the Roguelike Realtime MMORPG. |
| 3 |
* |
| 4 |
* Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team |
| 5 |
* Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team |
| 6 |
* Copyright (©) 1992,2007 Frank Tore Johansen |
| 7 |
* |
| 8 |
* Deliantra is free software: you can redistribute it and/or modify |
| 9 |
* it under the terms of the GNU General Public License as published by |
| 10 |
* the Free Software Foundation, either version 3 of the License, or |
| 11 |
* (at your option) any later version. |
| 12 |
* |
| 13 |
* This program is distributed in the hope that it will be useful, |
| 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 |
* GNU General Public License for more details. |
| 17 |
* |
| 18 |
* You should have received a copy of the GNU General Public License |
| 19 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 20 |
* |
| 21 |
* The authors can be reached via e-mail to <support@deliantra.net> |
| 22 |
*/ |
| 23 |
|
| 24 |
#include <global.h> |
| 25 |
#include <sproto.h> |
| 26 |
#include <spells.h> |
| 27 |
|
| 28 |
static partylist *firstparty; |
| 29 |
|
| 30 |
partylist * |
| 31 |
get_firstparty (void) |
| 32 |
{ |
| 33 |
return firstparty; |
| 34 |
} |
| 35 |
|
| 36 |
void |
| 37 |
remove_party (partylist *target_party) |
| 38 |
{ |
| 39 |
if (firstparty == NULL) |
| 40 |
{ |
| 41 |
LOG (llevError, "remove_party(): I was asked to remove party %s, but no parties are defined", target_party->partyname); |
| 42 |
return; |
| 43 |
} |
| 44 |
|
| 45 |
for_all_players (pl) |
| 46 |
if (pl->party == target_party) |
| 47 |
pl->party = NULL; |
| 48 |
|
| 49 |
partylist **prevlink = &firstparty; |
| 50 |
|
| 51 |
for (partylist *p = firstparty; p; p = p->next) |
| 52 |
if (p->next == target_party) |
| 53 |
{ |
| 54 |
prevlink = &p->next; |
| 55 |
break; |
| 56 |
} |
| 57 |
|
| 58 |
*prevlink = target_party->next; |
| 59 |
|
| 60 |
free (target_party->partyleader); |
| 61 |
free (target_party->partyname); |
| 62 |
sfree (target_party); |
| 63 |
} |
| 64 |
|
| 65 |
/* Remove unused parties, this could be made to scale a lot better. */ |
| 66 |
void |
| 67 |
obsolete_parties (void) |
| 68 |
{ |
| 69 |
int player_count; |
| 70 |
partylist *party; |
| 71 |
partylist *next = NULL; |
| 72 |
|
| 73 |
if (!firstparty) |
| 74 |
return; /* we can't obsolete parties if there aren't any */ |
| 75 |
|
| 76 |
for (party = firstparty; party != NULL; party = next) |
| 77 |
{ |
| 78 |
next = party->next; |
| 79 |
player_count = 0; |
| 80 |
for_all_players (pl) |
| 81 |
if (pl->party == party) |
| 82 |
player_count++; |
| 83 |
if (player_count == 0) |
| 84 |
remove_party (party); |
| 85 |
} |
| 86 |
} |
| 87 |
|
| 88 |
void |
| 89 |
add_kill_to_party (partylist *party, const char *killer, const char *dead, long exp) |
| 90 |
{ |
| 91 |
int i, pos; |
| 92 |
|
| 93 |
if (party == NULL) |
| 94 |
return; |
| 95 |
|
| 96 |
if (party->kills >= PARTY_KILL_LOG) |
| 97 |
{ |
| 98 |
pos = PARTY_KILL_LOG - 1; |
| 99 |
for (i = 0; i < PARTY_KILL_LOG - 1; i++) |
| 100 |
party->party_kills[i] = party->party_kills[i + 1]; |
| 101 |
} |
| 102 |
else |
| 103 |
pos = party->kills; |
| 104 |
|
| 105 |
party->kills++; |
| 106 |
party->total_exp += exp; |
| 107 |
party->party_kills[pos].exp = exp; |
| 108 |
assign (party->party_kills[pos].killer, killer); |
| 109 |
assign (party->party_kills[pos].dead, dead); |
| 110 |
party->party_kills[pos].killer[MAX_NAME] = 0; |
| 111 |
party->party_kills[pos].dead[MAX_NAME] = 0; |
| 112 |
} |
| 113 |
|
| 114 |
int |
| 115 |
confirm_party_password (object *op) |
| 116 |
{ |
| 117 |
partylist *tmppartylist; |
| 118 |
|
| 119 |
for (tmppartylist = firstparty; tmppartylist != NULL; tmppartylist = tmppartylist->next) |
| 120 |
{ |
| 121 |
if (!strcmp (op->contr->party_to_join->partyname, tmppartylist->partyname)) |
| 122 |
{ |
| 123 |
if (strcmp (op->contr->write_buf + 1, tmppartylist->passwd) == 0) |
| 124 |
return 0; |
| 125 |
else |
| 126 |
return 1; |
| 127 |
} |
| 128 |
} |
| 129 |
return 1; |
| 130 |
} |
| 131 |
|
| 132 |
void |
| 133 |
send_party_message (object *op, const char *msg) |
| 134 |
{ |
| 135 |
for_all_players (pl) |
| 136 |
if (pl->ob->contr->party == op->contr->party && pl->ob != op) |
| 137 |
pl->send_msg (NDI_UNIQUE, MSG_CHANNEL ("party"), msg); |
| 138 |
} |
| 139 |
|
| 140 |
void |
| 141 |
receive_party_password (object *op, char k) |
| 142 |
{ |
| 143 |
|
| 144 |
if (confirm_party_password (op) == 0) |
| 145 |
{ |
| 146 |
partylist *joined_party = op->contr->party_to_join; |
| 147 |
char buf[MAX_BUF]; |
| 148 |
|
| 149 |
op->contr->party = op->contr->party_to_join; |
| 150 |
op->contr->party_to_join = NULL; |
| 151 |
new_draw_info_format (NDI_UNIQUE, 0, op, "You have joined party: %s\n", joined_party->partyname); |
| 152 |
snprintf (buf, MAX_BUF, "%s joins party %s", &op->name, joined_party->partyname); |
| 153 |
send_party_message (op, buf); |
| 154 |
op->contr->ns->state = ST_PLAYING; |
| 155 |
return; |
| 156 |
} |
| 157 |
else |
| 158 |
{ |
| 159 |
new_draw_info (NDI_UNIQUE, 0, op, "You entered the wrong password"); |
| 160 |
op->contr->party_to_join = NULL; |
| 161 |
op->contr->ns->state = ST_PLAYING; |
| 162 |
return; |
| 163 |
} |
| 164 |
} |
| 165 |
|
| 166 |
int |
| 167 |
command_gsay (object *op, char *params) |
| 168 |
{ |
| 169 |
char party_params[MAX_BUF]; |
| 170 |
|
| 171 |
if (!params) |
| 172 |
return 0; |
| 173 |
|
| 174 |
strcpy (party_params, "say "); |
| 175 |
strcat (party_params, params); |
| 176 |
command_party (op, party_params); |
| 177 |
return 0; |
| 178 |
} |
| 179 |
|
| 180 |
int |
| 181 |
command_party (object *op, char *params) |
| 182 |
{ |
| 183 |
dynbuf_text buf; |
| 184 |
partylist *party = op->contr->party; |
| 185 |
|
| 186 |
if (!params) |
| 187 |
params = (char *)""; |
| 188 |
|
| 189 |
if (!strcmp (params, "help")) |
| 190 |
buf << "\n" |
| 191 |
" - To form a party type: C<party form> <partyname>\n" |
| 192 |
" - To join a party type: C<party join> <partyname>\n" |
| 193 |
" - If the party has a passwd, it will you prompt you for it.\n" |
| 194 |
" - For a list of current parties type: C<party list>\n" |
| 195 |
" - To leave a party type: C<party leave>\n" |
| 196 |
" - To change a passwd for a party type: C<party passwd> <password>\n" |
| 197 |
" - There is an 8 character max\n" |
| 198 |
" - To talk to party members type: C<party say> <msg>\n" |
| 199 |
" - To see who is in your party: C<party who>\n" |
| 200 |
" - To see what you've killed, type: C<party kills>\n"; |
| 201 |
else if (strncmp (params, "form ", 5) == 0) |
| 202 |
{ |
| 203 |
params += 5; |
| 204 |
|
| 205 |
if (party) |
| 206 |
buf << "You are already a member of party " << party->partyname << ". You must leave it first."; |
| 207 |
else |
| 208 |
{ |
| 209 |
for (partylist *tmpparty = firstparty; tmpparty; tmpparty = tmpparty->next) |
| 210 |
{ |
| 211 |
if (!strcmp (tmpparty->partyname, params)) |
| 212 |
{ |
| 213 |
buf << "The party " << tmpparty->partyname << " already exists, pick another name"; |
| 214 |
goto reply; |
| 215 |
} |
| 216 |
} |
| 217 |
|
| 218 |
/* Forms the party struct for a party called 'params'. it is the responsibility |
| 219 |
* of the caller to ensure that the name is unique, and that it is placed in the |
| 220 |
* main party list correctly */ |
| 221 |
|
| 222 |
party = salloc0<partylist> (); |
| 223 |
party->partyname = strdup (params); |
| 224 |
party->total_exp = 0; |
| 225 |
party->kills = 0; |
| 226 |
party->passwd[0] = '\0'; |
| 227 |
party->next = NULL; |
| 228 |
party->partyleader = strdup (op->name); |
| 229 |
|
| 230 |
buf << "You have formed party: " << party->partyname << "."; |
| 231 |
|
| 232 |
party->next = firstparty; |
| 233 |
op->contr->party = firstparty = party; |
| 234 |
} |
| 235 |
} |
| 236 |
else if (strcmp (params, "list") == 0) |
| 237 |
{ |
| 238 |
if (!firstparty) |
| 239 |
buf << "There are no parties active right now"; |
| 240 |
else |
| 241 |
{ |
| 242 |
buf << "Party name Leader\n\n" |
| 243 |
"---------- ------\n\n"; |
| 244 |
|
| 245 |
for (partylist *p = firstparty; p; p = p->next) |
| 246 |
buf.printf ("%-32s %s\n\n", p->partyname, p->partyleader); |
| 247 |
} |
| 248 |
} |
| 249 |
else if (strncmp (params, "join ", 5) == 0) |
| 250 |
{ |
| 251 |
params += 5; |
| 252 |
|
| 253 |
/* Can't join a party cause non exist */ |
| 254 |
if (!firstparty) |
| 255 |
buf << "Party: " << params << " does not exist. You must form it first."; |
| 256 |
else if (party) |
| 257 |
buf << "You are already a member of party " << party->partyname << ". You must leave it first."; |
| 258 |
else |
| 259 |
for (partylist *p = firstparty; p; p = p->next) |
| 260 |
if (!strcmp (p->partyname, params)) |
| 261 |
{ |
| 262 |
if (!*p->passwd) |
| 263 |
{ |
| 264 |
op->contr->party = p; |
| 265 |
|
| 266 |
buf << op->name << " joins party " << p->partyname << "."; |
| 267 |
send_party_message (op, buf); |
| 268 |
buf.clear (); |
| 269 |
|
| 270 |
buf << "You have joined party: " << p->partyname << "."; |
| 271 |
} |
| 272 |
else |
| 273 |
get_party_password (op, p); |
| 274 |
|
| 275 |
goto reply; |
| 276 |
} |
| 277 |
else |
| 278 |
buf << "Party " << params << " does not exist. You must form it first."; |
| 279 |
} |
| 280 |
else if (!party) |
| 281 |
buf << "You are not a member of any party.\n\n" |
| 282 |
"For help try: C<party help>"; |
| 283 |
else if (!*params) |
| 284 |
buf << "You are a member of party " << party->partyname << "."; |
| 285 |
else if (!strncmp (params, "kills", 5)) |
| 286 |
{ |
| 287 |
if (!party->kills) |
| 288 |
buf << "You haven't killed anything yet."; |
| 289 |
else |
| 290 |
{ |
| 291 |
int max = min (party->kills - 1, PARTY_KILL_LOG - 1); |
| 292 |
|
| 293 |
buf << " Killed | Killer| Exp\n" |
| 294 |
<< " ----------------+----------------+--------\n"; |
| 295 |
|
| 296 |
for (int i = 0; i <= max; i++) |
| 297 |
{ |
| 298 |
sint64 exp = party->party_kills[i].exp; |
| 299 |
char suffix = ' '; |
| 300 |
if (exp > 1000000) |
| 301 |
{ |
| 302 |
exp /= 1000000; |
| 303 |
suffix = 'M'; |
| 304 |
} |
| 305 |
else if (exp > 1000) |
| 306 |
{ |
| 307 |
exp /= 1000; |
| 308 |
suffix = 'k'; |
| 309 |
} |
| 310 |
|
| 311 |
buf.printf (" %16s|%16s|%6.1f%c\n", party->party_kills[i].dead, party->party_kills[i].killer, (double)exp, suffix); |
| 312 |
} |
| 313 |
|
| 314 |
buf << " ----------------+----------------+--------\n"; |
| 315 |
|
| 316 |
{ |
| 317 |
sint64 exp = party->total_exp; |
| 318 |
char suffix = ' '; |
| 319 |
|
| 320 |
if (exp > 1000000) |
| 321 |
{ |
| 322 |
exp /= 1000000; |
| 323 |
suffix = 'M'; |
| 324 |
} |
| 325 |
else if (exp > 1000) |
| 326 |
{ |
| 327 |
exp /= 1000; |
| 328 |
suffix = 'k'; |
| 329 |
} |
| 330 |
|
| 331 |
buf.printf (" Totals: %d kills, %.1f%c exp", party->kills, (double)exp, suffix); |
| 332 |
} |
| 333 |
} |
| 334 |
} |
| 335 |
else if (strncmp (params, "say ", 4) == 0) |
| 336 |
{ |
| 337 |
params += 4; |
| 338 |
|
| 339 |
buf << "[" << party->partyname << "] " << op->name << " says: " << params; |
| 340 |
send_party_message (op, buf); |
| 341 |
buf.clear (); |
| 342 |
|
| 343 |
buf << "[" << party->partyname << "] You say: " << params; |
| 344 |
} |
| 345 |
else if (strcmp (params, "leave") == 0) |
| 346 |
{ |
| 347 |
buf << op->name << " leaves party " << party->partyname << "."; |
| 348 |
send_party_message (op, buf); |
| 349 |
buf.clear (); |
| 350 |
|
| 351 |
buf << "You leave party " << party->partyname << "."; |
| 352 |
|
| 353 |
op->contr->party = 0; |
| 354 |
obsolete_parties (); |
| 355 |
} |
| 356 |
else if (strcmp (params, "who") == 0) |
| 357 |
{ |
| 358 |
buf << "Members of party " << party->partyname << ".\n"; |
| 359 |
|
| 360 |
for_all_players (pl) |
| 361 |
if (pl->ob->contr->party == party) |
| 362 |
buf.printf (" - %s/%d %s\n\n", &pl->ob->name, pl->ob->level, |
| 363 |
*pl->ob->contr->own_title ? pl->ob->contr->own_title : pl->ob->contr->title); |
| 364 |
} |
| 365 |
else if (strncmp (params, "passwd ", 7) == 0) |
| 366 |
{ |
| 367 |
params += 7; |
| 368 |
|
| 369 |
if (strlen (params) > 8) |
| 370 |
buf << "The password must not exceed 8 characters"; |
| 371 |
else |
| 372 |
{ |
| 373 |
strcpy (party->passwd, params); |
| 374 |
buf << "The password for party " << party->partyname << " is set to B<" << params << "> by " << &op->name; |
| 375 |
} |
| 376 |
} |
| 377 |
else |
| 378 |
buf << "I did not understand your command. For help try: C<party help>"; |
| 379 |
|
| 380 |
reply: |
| 381 |
op->contr->send_msg (NDI_UNIQUE | NDI_REPLY, MSG_CHANNEL ("party"), buf); |
| 382 |
|
| 383 |
return 1; |
| 384 |
} |