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.1 by elmex, Sun Aug 13 17:16:00 2006 UTC vs.
Revision 1.6 by pippijn, Mon Jan 15 21:06:18 2007 UTC

1/* 1/*
2 * static char *rcsid_friend_c = 2 * CrossFire, A Multiplayer game for X-windows
3 * "$Id: links.C,v 1.1 2006/08/13 17:16:00 elmex Exp $"; 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 * Copyright (C) 1992 Frank Tore Johansen
6 *
7 * 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 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * 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 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 * The author can be reached via e-mail to frankj@ifi.uio.no.
4 */ 22 */
5 23
6/*
7 CrossFire, A Multiplayer game for X-windows
8
9 Copyright (C) 1992 Frank Tore Johansen
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 The author can be reached via e-mail to frankj@ifi.uio.no.
26*/
27
28#include <global.h> 24#include <global.h>
29 25
30/* 26/*
31 * Allocates a new objectlink structure, initialises it, and returns 27 * Allocates a new objectlink structure, initialises it, and returns
32 * a pointer to it. 28 * a pointer to it.
33 */ 29 */
34 30
35objectlink *get_objectlink(void) { 31objectlink *
36 objectlink *ol=(objectlink *)CALLOC(1,sizeof(objectlink)); 32get_objectlink (void)
37 ol->ob=NULL; 33{
38 ol->next=NULL; 34 objectlink *ol = new objectlink;
35
39 ol->id = 0; 36 ol->ob = 0;
37 ol->next = 0;
40 return ol; 38 return ol;
41} 39}
42 40
43/* 41/*
44 * Allocates a new oblinkpt structure, initialises it, and returns 42 * Allocates a new oblinkpt structure, initialises it, and returns
45 * a pointer to it. 43 * a pointer to it.
46 */ 44 */
47 45
46oblinkpt *
48oblinkpt *get_objectlinkpt(void) { 47get_objectlinkpt (void)
49 oblinkpt *obp = (oblinkpt *) malloc(sizeof(oblinkpt)); 48{
49 oblinkpt *obp = new oblinkpt;
50
50 obp->link = NULL; 51 obp->link = 0;
51 obp->next = NULL; 52 obp->next = 0;
52 obp->value = 0; 53 obp->value = 0;
53 return obp; 54 return obp;
54} 55}
55 56
56/* 57/*
57 * Recursively frees all objectlinks 58 * Recursively frees all objectlinks
58 */ 59 */
59 60
61void
60void free_objectlink(objectlink *ol) { 62free_objectlink (objectlink * ol)
63{
61 if (ol->next) 64 if (ol->next)
62 free_objectlink(ol->next); 65 free_objectlink (ol->next);
63 free(ol); 66
67 delete ol;
64} 68}
65 69
66/* 70/*
67 * Recursively frees all linked list of objectlink pointers 71 * Recursively frees all linked list of objectlink pointers
68 */ 72 */
69 73
74void
70void free_objectlinkpt(oblinkpt *obp) { 75free_objectlinkpt (oblinkpt *obp)
76{
71 if (obp->next) 77 if (obp->next)
72 free_objectlinkpt(obp->next); 78 free_objectlinkpt (obp->next);
79
73 if (obp->link) 80 if (obp->link)
74 free_objectlink(obp->link); 81 free_objectlink (obp->link);
75 free(obp); 82
83 delete obp;
76} 84}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines