]> git.mxchange.org Git - quix0rs-blobwars.git/blob - src/CList.cpp
Don't link pak tool with SDL.
[quix0rs-blobwars.git] / src / CList.cpp
1 /*
2 Copyright (C) 2004-2011 Parallel Realities
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 #include "headers.h"
22
23 List::List()
24 {
25         objectTail = &objectHead;
26 }
27
28 void List::add(GameObject *object)
29 {
30         objectTail->next = object;
31         objectTail = object;
32 }
33
34 void List::remove(GameObject *previous, GameObject *object)
35 {
36         if (object == objectTail)
37         {
38                 objectTail = previous;
39         }
40         
41         previous->next = object->next;
42         delete object;
43 }
44
45 void List::clear()
46 {
47         int count = 0;
48
49         GameObject *obj, *obj2;
50
51         for (obj = objectHead.next ; obj != NULL ; obj = obj2)
52         {
53                 obj2 = obj->next;
54                 delete obj;
55                 count++;
56         }
57
58         objectHead.next = NULL;
59         objectTail = &objectHead;
60 }
61
62 GameObject *List::getHead()
63 {
64         return &objectHead;
65 }
66
67 GameObject *List::getTail()
68 {
69         return objectTail;
70 }