-
Notifications
You must be signed in to change notification settings - Fork 13
/
SearchData.h
83 lines (59 loc) · 1.63 KB
/
SearchData.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* The Cheat - The legendary universal game trainer for Mac OS X.
* http://www.brokenzipper.com/trac/wiki/TheCheat
*
* Copyright (c) 2003-2011, Charles McGarvey et al.
*
* Distributable under the terms and conditions of the 2-clause BSD
* license; see the file COPYING for the legal text of the license.
*/
#import <Cocoa/Cocoa.h>
#import "CheaterTypes.h"
#import "Cheater.h"
#import "Variable.h"
#import "Process.h"
@interface SearchData : NSObject
{
TCVariableType _variableType;
TCIntegerSign _integerSign;
TCSearchOperator _operator;
TCSearchType _value;
Variable *_variableValue;
TCArray _addresses;
TCArray _values;
Process *_process;
int _undoes;
int _redoes;
}
// ACCESSORS
- (void)setProcess:(Process *)process;
- (TCVariableType)variableType;
- (void)setVariableType:(TCVariableType)varType;
- (TCIntegerSign)integerSign;
- (void)setIntegerSign:(TCIntegerSign)sign;
- (TCSearchOperator)searchOperator;
- (void)setSearchOperator:(TCSearchOperator)op;
- (TCSearchType)valueUsed;
- (void)setValueUsed:(TCSearchType)value;
- (Variable *)searchValue;
- (void)setSearchValue:(Variable *)value;
- (unsigned)numberOfResults;
- (TCArray)addresses;
- (void)setAddresses:(TCArray)addresses;
- (TCArray)values;
- (void)setValues:(TCArray)values;
- (void)setValue:(Variable *)value atIndex:(unsigned)index;
- (BOOL)valuesLoaded;
- (Variable *)variableAtIndex:(unsigned)index;
- (NSString *)stringForRow:(unsigned)rowIndex;
- (BOOL)hasSearchedOnce;
- (int)undoesLeft;
- (int)redoesLeft;
- (void)didAddResults;
- (void)didUndo;
- (void)didRedo;
// this is convenient
- (BOOL)isTypeInteger;
// ACTIONS
- (void)clearResults;
@end