qedefs.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #import <appkit/appkit.h>
  2. #import <ctype.h>
  3. #import <sys/types.h>
  4. #import <sys/dir.h>
  5. #import "UserPath.h"
  6. #import "cmdlib.h"
  7. #import "mathlib.h"
  8. #import "EntityClass.h"
  9. #import "Project.h"
  10. #import "QuakeEd.h"
  11. #import "Map.h"
  12. #import "TexturePalette.h"
  13. #import "SetBrush.h"
  14. #import "render.h"
  15. #import "Entity.h"
  16. #import "XYView.h"
  17. #import "CameraView.h"
  18. #import "ZView.h"
  19. #import "ZScrollView.h"
  20. #import "Preferences.h"
  21. #import "InspectorControl.h"
  22. #import "PopScrollView.h"
  23. #import "Dict.h"
  24. #import "DictList.h"
  25. #import "KeypairView.h"
  26. #import "Things.h"
  27. #import "TextureView.h"
  28. #import "Clipper.h"
  29. void PrintRect (NXRect *r);
  30. int FileTime (char *path);
  31. void Sys_UpdateFile (char *path, char *netpath);
  32. void CleanupName (char *in, char *out);
  33. extern BOOL in_error;
  34. void Error (char *error, ...);
  35. #define MAXTOKEN 128
  36. extern char token[MAXTOKEN];
  37. extern int scriptline;
  38. void StartTokenParsing (char *data);
  39. boolean GetToken (boolean crossline); // returns false at eof
  40. void UngetToken ();
  41. #define FN_CMDOUT "/tmp/QuakeEdCmd.txt"
  42. #define FN_TEMPSAVE "/qcache/temp.map"
  43. #define FN_AUTOSAVE "/qcache/AutoSaveMap.map"
  44. #define FN_CRASHSAVE "/qcache/ErrorSaveMap.map"
  45. #define FN_DEVLOG "/qcache/devlog"