![Attached Image: eduke32 2014-03-24 20-10-52-90.png](https://forums.duke4.net/uploads/monthly_03_2014/post-1256-0-69873700-1395668246_thumb.png)
![Attached Image: eduke32 2014-03-24 20-10-27-09.png](https://forums.duke4.net/uploads/monthly_03_2014/post-1256-0-40281800-1395668332_thumb.png)
soon you'll all have an eternity SDK with 100+ models with clipmaps and 100+ new textures with height / spec maps to play with
Maarten, on 25 March 2014 - 12:45 PM, said:
typedef enum MenuType { Menu, Panel, Verify, Message, // used for episodes 2+ in the shareware Password, // used for Adult Mode FileSelect, // used for User Map } MenuType; typedef struct Menu_t { int32_t menuID; int32_t parentID; MenuType type; void *object; } Menu_t; // must be in ascending order of enums due to binary search static Menu_t Menus[] = { { MENU_MAIN, MENU_NONE, Menu, &M_MAIN, }, { MENU_MAIN_INGAME, MENU_NONE, Menu, &M_MAIN_INGAME, }, { MENU_EPISODE, MENU_MAIN, Menu, &M_EPISODE, }, { MENU_USERMAP, MENU_EPISODE, FileSelect, &M_USERMAP, }, { MENU_SKILL, MENU_EPISODE, Menu, &M_SKILL, }, { MENU_GAMESETUP, MENU_OPTIONS, Menu, &M_GAMESETUP, }, { MENU_OPTIONS, MENU_MAIN, Menu, &M_OPTIONS, }, { MENU_VIDEOSETUP, MENU_OPTIONS, Menu, &M_VIDEOSETUP, }, { MENU_KEYBOARDSETUP, MENU_OPTIONS, Menu, &M_KEYBOARDSETUP, }, { MENU_MOUSESETUP, MENU_OPTIONS, Menu, &M_MOUSESETUP, }, { MENU_JOYSTICKSETUP, MENU_OPTIONS, Menu, &M_JOYSTICKSETUP, }, { MENU_JOYSTICKBTNS, MENU_JOYSTICKSETUP, Menu, &M_JOYSTICKBTNS, }, { MENU_JOYSTICKAXES, MENU_JOYSTICKSETUP, Menu, &M_JOYSTICKAXES, }, { MENU_MOUSEADVANCED, MENU_MOUSESETUP, Menu, &M_MOUSEADVANCED, }, { MENU_JOYSTICKDEAD, MENU_JOYSTICKSETUP, Menu, &M_JOYSTICKDEAD, }, { MENU_RENDERERSETUP, MENU_VIDEOSETUP, Menu, &M_RENDERERSETUP, },
This post has been edited by Fox: 28 March 2014 - 09:05 PM
This post has been edited by MrGlasses: 31 March 2014 - 02:48 PM
This post has been edited by Fox: 02 April 2014 - 08:51 PM
This post has been edited by pmw: 05 April 2014 - 10:42 AM
This post has been edited by Paul B: 13 April 2014 - 01:31 PM
The Commander, on 02 December 2013 - 02:54 PM, said:
This post has been edited by Ivan Dragunov: 12 April 2014 - 03:26 AM
This post has been edited by Micky C: 12 April 2014 - 03:28 AM
Ivan Dragunov, on 12 April 2014 - 03:16 AM, said:
This post has been edited by Drek: 12 April 2014 - 06:21 AM
Mr. Alias Nameless, on 12 April 2014 - 04:56 AM, said:
This post has been edited by Fox: 12 April 2014 - 07:48 AM
Ivan Dragunov, on 12 April 2014 - 06:06 AM, said:
Drek, on 12 April 2014 - 07:53 AM, said:
Fox, on 12 April 2014 - 07:45 AM, said:
This post has been edited by Mark.: 12 April 2014 - 08:19 AM
Mr. Alias Nameless, on 12 April 2014 - 04:56 AM, said:
This post has been edited by Ivan Dragunov: 12 April 2014 - 08:47 AM
Ivan Dragunov, on 12 April 2014 - 08:46 AM, said: