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

Comparing deliantra/server/socket/sounds.C (file contents):
Revision 1.27 by root, Mon Oct 12 14:00:59 2009 UTC vs.
Revision 1.36 by root, Sat Nov 17 23:33:18 2018 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 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 * 5 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 6 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 7 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your 8 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version. 9 * option) any later version.
12 * 10 *
13 * This program is distributed in the hope that it will be useful, 11 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 14 * GNU General Public License for more details.
17 * 15 *
18 * You should have received a copy of the Affero GNU General Public License 16 * You should have received a copy of the Affero GNU General Public License
19 * and the GNU General Public License along with this program. If not, see 17 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>. 18 * <http://www.gnu.org/licenses/>.
21 * 19 *
22 * The authors can be reached via e-mail to <support@deliantra.net> 20 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 21 */
24 22
25/* Send bug reports to Raphael Quinet (quinet@montefiore.ulg.ac.be) */ 23/* Send bug reports to Raphael Quinet (quinet@montefiore.ulg.ac.be) */
26 24
33 31
34#include <global.h> 32#include <global.h>
35#include <sproto.h> 33#include <sproto.h>
36#include <sounds.h> 34#include <sounds.h>
37 35
38#include <tr1/unordered_map> 36#include <flat_hash_map.hpp>
39 37
40// the hashtable 38// the hashtable
41typedef std::tr1::unordered_map 39typedef ska::flat_hash_map
42 < 40 <
43 const char *, 41 const char *,
44 faceidx, 42 faceidx,
45 str_hash, 43 str_hash,
46 str_equal, 44 str_equal,
101 99
102 packet sl ("sc"); 100 packet sl ("sc");
103 101
104 uint8 *len = sl.cur; 102 uint8 *len = sl.cur;
105 103
106 sl << uint8 (0) // group length 104 sl << uint8 (0) // group length, decoded as BER in clients
107 << uint8 (0) // type == one-time effect 105 << uint8 (0) // type == one-time effect
108 << ber32 (sound) 106 << ber32 (sound)
109 << sint8 (dx) 107 << sint8 (dx)
110 << sint8 (dy) 108 << sint8 (dy)
111 << uint8 (vol); // 0 == silent, 255 max 109 << uint8 (vol); // 0 == silent, 255 max
112 110
113 *len = sl.cur - len; // patch in group length 111 *len = sl.cur - len - 1; // patch in group length
114 112
115 send_packet (sl); 113 send_packet (sl);
116 } 114 }
117 else if (this->sound) 115 else if (this->sound)
118 { 116 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines