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

Comparing deliantra/server/common/links.C (file contents):
Revision 1.3 by root, Thu Sep 14 22:33:58 2006 UTC vs.
Revision 1.21 by root, Sat Nov 17 23:40:00 2018 UTC

1/* 1/*
2 CrossFire, A Multiplayer game for X-windows 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 3 *
4 * Copyright (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team
5 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
4 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
5 7 *
6 This program is free software; you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify it under
7 it under the terms of the GNU General Public License as published by 9 * the terms of the Affero GNU General Public License as published by the
8 the Free Software Foundation; either version 2 of the License, or 10 * Free Software Foundation, either version 3 of the License, or (at your
9 (at your option) any later version. 11 * option) any later version.
10 12 *
11 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,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details. 16 * GNU General Public License for more details.
15 17 *
16 You should have received a copy of the GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
17 along with this program; if not, write to the Free Software 19 * and the GNU General Public License along with this program. If not, see
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * <http://www.gnu.org/licenses/>.
19 21 *
20 The author can be reached via e-mail to frankj@ifi.uio.no. 22 * The authors can be reached via e-mail to <support@deliantra.net>
21*/ 23 */
22 24
23#include <global.h> 25#include <global.h>
24 26
25/* 27/*
26 * Allocates a new objectlink structure, initialises it, and returns 28 * Allocates a new objectlink structure, initialises it, and returns
27 * a pointer to it. 29 * a pointer to it.
28 */ 30 */
29 31
30objectlink * 32objectlink *
31get_objectlink (void) 33get_objectlink ()
32{ 34{
33 objectlink *ol = (objectlink *) CALLOC (1, sizeof (objectlink)); 35 objectlink *ol = new objectlink;
34 36
35 ol->ob = NULL; 37 ol->ob = 0;
36 ol->next = NULL; 38 ol->next = 0;
37 ol->id = 0; 39
38 return ol; 40 return ol;
39} 41}
40 42
41/* 43/*
42 * Allocates a new oblinkpt structure, initialises it, and returns 44 * Allocates a new oblinkpt structure, initialises it, and returns
43 * a pointer to it. 45 * a pointer to it.
44 */ 46 */
45 47
46oblinkpt * 48oblinkpt *
47get_objectlinkpt (void) 49get_objectlinkpt ()
48{ 50{
49 oblinkpt *obp = (oblinkpt *) malloc (sizeof (oblinkpt)); 51 oblinkpt *obp = new oblinkpt;
50 52
51 obp->link = NULL; 53 obp->link = 0;
52 obp->next = NULL; 54 obp->next = 0;
53 obp->value = 0; 55
54 return obp; 56 return obp;
55} 57}
56 58
57/* 59/*
58 * Recursively frees all objectlinks 60 * Recursively frees all objectlinks
59 */ 61 */
60 62
61void 63void
62free_objectlink (objectlink * ol) 64free_objectlink (objectlink *ol)
63{ 65{
64 if (ol->next) 66 if (ol->next)
65 free_objectlink (ol->next); 67 free_objectlink (ol->next);
66 free (ol); 68
69 delete ol;
67} 70}
68 71
69/* 72/*
70 * Recursively frees all linked list of objectlink pointers 73 * Recursively frees all linked list of objectlink pointers
71 */ 74 */
72 75
73void 76void
74free_objectlinkpt (oblinkpt * obp) 77free_objectlinkpt (oblinkpt *obp)
75{ 78{
76 if (obp->next) 79 if (obp->next)
77 free_objectlinkpt (obp->next); 80 free_objectlinkpt (obp->next);
81
78 if (obp->link) 82 if (obp->link)
79 free_objectlink (obp->link); 83 free_objectlink (obp->link);
80 free (obp); 84
85 delete obp;
81} 86}
87

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines