root / editor.vcproj

View | Annotate | Download (6.2 KB)

# Date Author Comment
78 01 August 2009 16:27 Derek Stobbs

Added in (very) basic state machine support so the app can change between menu, game and text demo.

Modified the location of classes.h so each project has one containing forward declarations of classes specific to that project.

The text allignment flags are now accesible as static member variables of the Text class rather than macro-style constants.

70 19 June 2009 08:52 Derek Stobbs

Told VC to ignore "insecure" functions

61 17 June 2009 18:46 Derek Stobbs

Modified the project structure so that the game and editor projects can see the res folder when running inside VC. Eclipse needs updated run profiles for this to work (instructions will be added to wiki)

55 14 June 2009 21:24 Mark Burns

Moved classes.h to libtoap, added math_util.h and added rudimentary rotation matrix support to Matrix3.

52 13 June 2009 12:38 Derek Stobbs

Fixed some file dependencies in visual studio, ignored the erroneous dll warning "4251", and added in support for Visual Leak Detector

43 12 June 2009 11:11 Derek Stobbs

Removed duplicated header files again to avoid code synchronisation problems. Any header files shared by both the game and the editor should reside in the library only

42 11 June 2009 23:17 Mark Burns

Added Matrix3 class (3x3 square matrix). Added mouse listener functionality to InputMgr.

32 10 June 2009 14:56 Derek Stobbs

Moved a lot of the duplicated functionality into the shared library. Working fine on windows using VC and Eclipse

27 09 June 2009 16:19 Derek Stobbs

Moved to a new file and project structure.

3 sub-projects: editor, game, library

Both the editor and the game rely on the library, although there's nothing there atm it's just to get the dependencies sorted out. There is also a lot of duplicated code between the editor and the game that will eventually be moved to the library