quakeforge/tools/Forge/Bundles/MapEdit/Dict.h

56 lines
1.3 KiB
C
Raw Normal View History

#ifndef Dict_h
#define Dict_h
#include <AppKit/AppKit.h>
#include "Storage.h"
typedef struct {
char *key;
char *value;
} dict_t;
@interface Dict: Storage
2010-09-11 16:41:18 +00:00
{
}
- (id) initFromFile: (FILE *)fp;
- (id) parseMultipleFrom: (const char *)value;
- (int) getValueUnits: (const char *)key;
- (id) delString: (const char *)string fromValue: (const char *)key;
- (id) addString: (const char *)string toValue: (const char *)key;
- (char *) convertListToString: (id)list;
- (const char *) getStringFor: (const char *)name;
- (id) removeKeyword: (const char *)key;
- (unsigned int) getValueFor: (const char *)name;
- (id) changeStringFor: (const char *)key to: (const char *)value;
2010-09-11 10:06:04 +00:00
- (dict_t *) findKeyword: (const char *)key;
- (id) writeBlockTo: (FILE *)fp;
- (id) writeFile: (const char *)path;
2010-09-11 10:06:04 +00:00
// INTERNAL
- (id) init;
- (id) parseBraceBlock: (FILE *)fp;
- (id) setupMultiple: (const char *)value;
- (char *) getNextParameter;
2010-09-11 16:41:18 +00:00
@end
2010-09-11 16:41:18 +00:00
int GetNextChar (FILE * fp);
void CopyUntilWhitespc (FILE * fp, char *buffer);
void CopyUntilQuote (FILE * fp, char *buffer);
int FindBrace (FILE * fp);
int FindQuote (FILE * fp);
int FindWhitespc (FILE * fp);
int FindNonwhitespc (FILE * fp);
char *FindWhitespcInBuffer (char *buffer);
char *FindNonwhitespcInBuffer (char *buffer);
2010-09-11 10:06:04 +00:00
#endif // Dict_h