--- deliantra/server/common/player.C 2008/09/29 10:32:50 1.47 +++ deliantra/server/common/player.C 2009/10/12 14:00:57 1.55 @@ -1,22 +1,23 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * Copyright (©) 2005,2006,2007,2008,2009 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team * Copyright (©) 1992,2007 Frank Tore Johansen * - * Deliantra is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * Deliantra is free software: you can redistribute it and/or modify it under + * the terms of the Affero GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the Affero GNU General Public License + * and the GNU General Public License along with this program. If not, see + * . * * The authors can be reached via e-mail to */ @@ -48,8 +49,7 @@ if (op && op->type == PLAYER && op->arch - && op->arch->race - && !strcmp (op->arch->race, "dragon")) + && op->arch->race == shstr_dragon) return 1; return 0; @@ -340,6 +340,9 @@ case '\r': buf << '\n'; + /* \r\n+ becomes one or more newlines */ + while (*cfpod == '\n') + buf << *cfpod++; break; case '\n': @@ -358,7 +361,9 @@ buf << *cfpod++; while (*cfpod == '\n'); } - else if (*cfpod != ' ') + else if (*cfpod == ' ') + buf << '\n'; + else buf << ' '; // verbatim block? @@ -397,6 +402,7 @@ case 'I': pfx = "" ; sfx = "" ; break; case 'U': pfx = "" ; sfx = "" ; break; case 'T': pfx = ""; sfx = ""; break; + case 'Z': pfx = "" ; sfx = "" ; break; case 'H': // hint { @@ -406,17 +412,17 @@ nest.clear (); if (pl->hintmode == 1) - buf << "[Hint suppressed, see hintmode]"; + buf << "[Hint available]"; else - while (*cfpod == ' ') // eat trailing whitespace + while (*cfpod <= ' '&& *cfpod) // eat trailing whitespace ++cfpod; goto skip; } else { - pfx = "["; - sfx = " (Use hintmode to suppress hints)]"; + pfx = "[Hint: "; + sfx = "]"; } } break; @@ -463,12 +469,12 @@ buf << ""; cfpod = expand_cfpod (pl, buf, cfpod, -2); buf << "\n"; + + while (*cfpod == '\n') + buf << *cfpod++; } while (*cfpod == ' '); - while (*cfpod == '\n') - buf << *cfpod++; - break; } }