Last change
on this file since 451 was
343,
checked in by Maciej Komosinski, 10 years ago
|
Code formatting
|
-
Property svn:eol-style set to
native
|
File size:
704 bytes
|
Line | |
---|
1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
3 | // See LICENSE.txt for details. |
---|
4 | |
---|
5 | #include <stdlib.h> |
---|
6 | #include <string.h> |
---|
7 | #include <stdio.h> |
---|
8 | #include "advlist.h" |
---|
9 | |
---|
10 | void AdvList::remove(int i) |
---|
11 | { |
---|
12 | l_del.action(i); |
---|
13 | SList::remove(i); |
---|
14 | l_postdel.action(i); |
---|
15 | } |
---|
16 | |
---|
17 | void AdvList::clear() |
---|
18 | { |
---|
19 | int i; |
---|
20 | for (i = size() - 1; i >= 0; i--) remove(i); |
---|
21 | resize(0); |
---|
22 | used = 0; |
---|
23 | } |
---|
24 | |
---|
25 | void AdvList::operator-=(void* e) |
---|
26 | { |
---|
27 | int i = find(e); |
---|
28 | if (i >= 0) remove(i); |
---|
29 | } |
---|
30 | |
---|
31 | int AdvList::operator+=(void* e) |
---|
32 | { |
---|
33 | int p = size(); |
---|
34 | SList::operator+=(e); |
---|
35 | l_add.action(p); |
---|
36 | return p; |
---|
37 | } |
---|
38 | |
---|
39 | void AdvList::mod(int x) |
---|
40 | { |
---|
41 | if (x < -1) x = -1; |
---|
42 | l_mod.action(x); |
---|
43 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.