X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fthecheat;a=blobdiff_plain;f=CheatServer.h;fp=CheatServer.h;h=e313dbf56ee23c0de21bd7751155194a0cd943d6;hp=0000000000000000000000000000000000000000;hb=42cf7bbe564d70233a0d73baee613f209eb00eb6;hpb=2d60a59a8ad195dd0af8f90c8d5b74a69ce7f4fa diff --git a/CheatServer.h b/CheatServer.h new file mode 100644 index 0000000..e313dbf --- /dev/null +++ b/CheatServer.h @@ -0,0 +1,104 @@ + +// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Project: The Cheat +// +// File: CheatServer.h +// Created: Sun Sep 07 2003 +// +// Copyright: 2003 Chaz McGarvey. All rights reserved. +// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +#import + +#import "ServerDelegate.h" + +#include +#include + +#include + +#include +#include +#include +#include + +#include "cheat_types.h" +#include "cheat_net.h" + + +@class SearchResults; + + +@interface CheatServer : NSObject +{ + id rootProxy; + int sockfd; + + pid_t processID; + vm_map_t processTask; + + BOOL processPaused; + + NSMutableArray *searchResults; + NSMutableArray *searchResultsUndone; +} + ++ (NSConnection *)serverWithDelegate:(id)delegate socket:(int)sock; ++ (void)serverThread:(NSArray *)array; + +- (id)initWithRootProxy:(id)proxy; + +- (void)handleSocket:(int)sock; +- (void)run; + +- (void)setAddress:(NSString *)address; +- (void)setAction:(NSString *)action; + +- (void)firstSearchString8bit:(char const *)value size:(int)vsize; +- (void)firstSearchIntegerChar:(int8_t)value; +- (void)firstSearchIntegerShort:(int16_t)value; +- (void)firstSearchIntegerLong:(int32_t)value; +- (void)firstSearchDecimalFloat:(float)value; +- (void)firstSearchDecimalDouble:(double)value; + +- (void)searchString8bit:(char const *)value size:(int)vsize; +- (void)searchIntegerChar:(int8_t)value; +- (void)searchIntegerShort:(int16_t)value; +- (void)searchIntegerLong:(int32_t)value; +- (void)searchDecimalFloat:(float)value; +- (void)searchDecimalDouble:(double)value; + +- (void)changeString8bit:(char const *)value size:(int)vsize addresses:(TCaddress *)addresses count:(int)count; +- (void)changeIntegerChar:(int8_t)value addresses:(TCaddress *)addresses count:(int)count; +- (void)changeIntegerShort:(int16_t)value addresses:(TCaddress *)addresses count:(int)count; +- (void)changeIntegerLong:(int32_t)value addresses:(TCaddress *)addresses count:(int)count; +- (void)changeDecimalFloat:(float)value addresses:(TCaddress *)addresses count:(int)count; +- (void)changeDecimalDouble:(double)value addresses:(TCaddress *)addresses count:(int)count; + +- (void)sendProcessList; +- (void)sendSearchFinished; +- (void)sendVariableList:(TCaddress const *)data amount:(int)amount; +- (void)sendChangeFinished; +- (void)sendError:(NSString *)msg fatal:(BOOL)fatal; +- (void)sendVariableValue:(u_int32_t)index; +- (void)sendUndoFinished; +- (void)sendRedoFinished; +- (void)sendUndoRedoStatus; +- (void)sendAppLaunched:(NSDictionary *)appInfo; +- (void)sendAppQuit:(NSDictionary *)appInfo; +- (void)sendTargetAppQuit; +- (void)sendPauseFinished:(BOOL)paused; + +- (void)handleClearSearch; +- (void)handleSearch:(char const *)data size:(int)dataSize; +- (void)handleChange:(char const *)data size:(int)dataSize; +- (void)handlePauseTarget; +- (void)handleUndo; +- (void)handleRedo; +- (void)handleSetTargetPID:(char const *)data size:(int)size; + +- (void)unpause; +- (void)setPID:(pid_t)pid; + +@end +