]> Dogcows Code - chaz/thecheat/blob - CheatData.h
The Cheat 1.2
[chaz/thecheat] / CheatData.h
1
2 // **********************************************************************
3 // The Cheat - A universal game cheater for Mac OS X
4 // (C) 2003-2005 Chaz McGarvey (BrokenZipper)
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 1, or (at your option)
9 // any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 //
20
21 #import <Cocoa/Cocoa.h>
22
23 #import "Process.h"
24 #import "Variable.h"
25
26
27 @interface CheatData : NSObject < NSCoding >
28 {
29 NSString *myWindowTitle;
30 NSString *myCheatInfo;
31
32 Process *myProcess;
33 NSMutableArray *myVariables;
34
35 BOOL myRepeats;
36 NSTimeInterval myRepeatInterval;
37 }
38
39 // #############################################################################
40 #pragma mark NSCoding
41 // #############################################################################
42
43 - (id)initWithCoder:(NSCoder *)coder;
44 - (void)encodeWithCoder:(NSCoder *)coder;
45
46
47 // #############################################################################
48 #pragma mark Accessing Properties
49 // #############################################################################
50
51 - (NSString *)windowTitle;
52 - (NSString *)cheatInfo;
53 - (NSString *)gameName;
54 - (NSString *)gameVersion;
55 - (Process *)process;
56 - (BOOL)repeats;
57 - (NSTimeInterval)repeatInterval;
58
59 - (void)setWindowTitle:(NSString *)title;
60 - (void)setCheatInfo:(NSString *)info;
61 - (void)setProcess:(Process *)process;
62 - (void)setRepeats:(BOOL)repeats;
63 - (void)setRepeatInterval:(NSTimeInterval)interval;
64
65
66 // #############################################################################
67 #pragma mark Variables
68 // #############################################################################
69
70 - (NSArray *)variables;
71 - (unsigned)variableCount;
72 - (unsigned)indexOfVariable:(Variable *)variable;
73 - (Variable *)variableAtIndex:(unsigned)index;
74 - (Variable *)lastVariable;
75
76 - (void)addVariable:(Variable *)variable;
77 - (void)insertVariable:(Variable *)variable atIndex:(unsigned)index;
78
79 - (void)removeAllVariables;
80 - (void)removeVariable:(Variable *)variable;
81 - (void)removeVariableAtIndex:(unsigned)index;
82
83 - (NSArray *)enabledVariables;
84 - (unsigned)enabledVariableCount;
85
86
87 @end
This page took 0.038024 seconds and 5 git commands to generate.