123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- // ----------------------------------------------------------------------------
- //
- // @file AntTweakBar.h
- //
- // @brief AntTweakBar is a light and intuitive graphical user interface
- // that can be readily integrated into OpenGL and DirectX
- // applications in order to interactively tweak them.
- //
- // @author Philippe Decaudin - http://www.antisphere.com
- // @date 2005/09/20
- //
- // @doc http://www.antisphere.com/Wiki/tools:anttweakbar
- //
- // @license This file is part of the AntTweakBar library.
- // AntTweakBar is a free software released under the zlib license.
- // For conditions of distribution and use, see License.txt
- //
- // ----------------------------------------------------------------------------
- #if !defined TW_INCLUDED
- #define TW_INCLUDED
- #include <stddef.h>
- #define TW_VERSION 113 // Version Mmm : M=Major mm=minor (e.g., 102 is version 1.02)
- #ifdef __cplusplus
- # if defined(_MSC_VER)
- # pragma warning(push)
- # pragma warning(disable: 4995 4530)
- # include <string>
- # pragma warning(pop)
- # else
- # include <string>
- # endif
- extern "C" {
- #endif // __cplusplus
- // ----------------------------------------------------------------------------
- // OS specific definitions
- // ----------------------------------------------------------------------------
- #if defined(_WIN32) || defined(_WIN64)
- # define TW_CALL __stdcall
- # define TW_EXPORT_API __declspec(dllexport)
- # define TW_IMPORT_API __declspec(dllimport)
- #else
- # define TW_CALL
- # define TW_EXPORT_API
- # define TW_IMPORT_API
- #endif
- #if defined TW_EXPORTS
- # define TW_API TW_EXPORT_API
- #elif defined TW_STATIC
- # define TW_API
- # if defined(_MSC_VER) && !defined(TW_NO_LIB_PRAGMA)
- # pragma comment(lib, "AntTweakBarStatic")
- # endif
- #else
- # define TW_API TW_IMPORT_API
- # if defined(_MSC_VER) && !defined(TW_NO_LIB_PRAGMA)
- # pragma comment(lib, "AntTweakBar")
- # endif
- #endif
- // ----------------------------------------------------------------------------
- // Bar functions and definitions
- // ----------------------------------------------------------------------------
- typedef struct CTwBar TwBar; // structure CTwBar is not exposed.
- TW_API TwBar * TW_CALL TwNewBar(const char *barName);
- TW_API int TW_CALL TwDeleteBar(TwBar *bar);
- TW_API int TW_CALL TwDeleteAllBars();
- TW_API int TW_CALL TwSetTopBar(const TwBar *bar);
- TW_API TwBar * TW_CALL TwGetTopBar();
- TW_API int TW_CALL TwSetBottomBar(const TwBar *bar);
- TW_API TwBar * TW_CALL TwGetBottomBar();
- TW_API const char * TW_CALL TwGetBarName(TwBar *bar);
- TW_API int TW_CALL TwGetBarCount();
- TW_API TwBar * TW_CALL TwGetBarByIndex(int barIndex);
- TW_API TwBar * TW_CALL TwGetBarByName(const char *barName);
- TW_API int TW_CALL TwRefreshBar(TwBar *bar);
- // ----------------------------------------------------------------------------
- // Var functions and definitions
- // ----------------------------------------------------------------------------
- typedef enum ETwType
- {
- TW_TYPE_UNDEF = 0,
- #ifdef __cplusplus
- TW_TYPE_BOOLCPP = 1,
- #endif // __cplusplus
- TW_TYPE_BOOL8 = 2,
- TW_TYPE_BOOL16,
- TW_TYPE_BOOL32,
- TW_TYPE_CHAR,
- TW_TYPE_INT8,
- TW_TYPE_UINT8,
- TW_TYPE_INT16,
- TW_TYPE_UINT16,
- TW_TYPE_INT32,
- TW_TYPE_UINT32,
- TW_TYPE_FLOAT,
- TW_TYPE_DOUBLE,
- TW_TYPE_COLOR32, // 32 bits color. Order is RGBA if API is OpenGL or Direct3D10, and inversed if API is Direct3D9 (can be modified by defining 'colorOrder=...', see doc)
- TW_TYPE_COLOR3F, // 3 floats color. Order is RGB.
- TW_TYPE_COLOR4F, // 4 floats color. Order is RGBA.
- TW_TYPE_CDSTRING, // Null-terminated C Dynamic String (pointer to an array of char dynamically allocated with malloc/realloc/strdup)
- #ifdef __cplusplus
- TW_TYPE_STDSTRING = (0x2fff0000+sizeof(std::string)), // C++ STL string (std::string)
- #endif // __cplusplus
- TW_TYPE_QUAT4F = TW_TYPE_CDSTRING+2, // 4 floats encoding a quaternion {qx,qy,qz,qs}
- TW_TYPE_QUAT4D, // 4 doubles encoding a quaternion {qx,qy,qz,qs}
- TW_TYPE_DIR3F, // direction vector represented by 3 floats
- TW_TYPE_DIR3D // direction vector represented by 3 doubles
- } TwType;
- #define TW_TYPE_CSSTRING(n) ((TwType)(0x30000000+((n)&0xfffffff))) // Null-terminated C Static String of size n (defined as char[n], with n<2^28)
- typedef void (TW_CALL * TwSetVarCallback)(const void *value, void *clientData);
- typedef void (TW_CALL * TwGetVarCallback)(void *value, void *clientData);
- typedef void (TW_CALL * TwButtonCallback)(void *clientData);
- TW_API int TW_CALL TwAddVarRW(TwBar *bar, const char *name, TwType type, void *var, const char *def);
- TW_API int TW_CALL TwAddVarRO(TwBar *bar, const char *name, TwType type, const void *var, const char *def);
- TW_API int TW_CALL TwAddVarCB(TwBar *bar, const char *name, TwType type, TwSetVarCallback setCallback, TwGetVarCallback getCallback, void *clientData, const char *def);
- TW_API int TW_CALL TwAddButton(TwBar *bar, const char *name, TwButtonCallback callback, void *clientData, const char *def);
- TW_API int TW_CALL TwAddSeparator(TwBar *bar, const char *name, const char *def);
- TW_API int TW_CALL TwRemoveVar(TwBar *bar, const char *name);
- TW_API int TW_CALL TwRemoveAllVars(TwBar *bar);
- typedef struct CTwEnumVal
- {
- int Value;
- const char * Label;
- } TwEnumVal;
- typedef struct CTwStructMember
- {
- const char * Name;
- TwType Type;
- size_t Offset;
- const char * DefString;
- } TwStructMember;
- typedef void (TW_CALL * TwSummaryCallback)(char *summaryString, size_t summaryMaxLength, const void *value, void *clientData);
- TW_API int TW_CALL TwDefine(const char *def);
- TW_API TwType TW_CALL TwDefineEnum(const char *name, const TwEnumVal *enumValues, unsigned int nbValues);
- TW_API TwType TW_CALL TwDefineStruct(const char *name, const TwStructMember *structMembers, unsigned int nbMembers, size_t structSize, TwSummaryCallback summaryCallback, void *summaryClientData);
- typedef void (TW_CALL * TwCopyCDStringToClient)(char **destinationClientStringPtr, const char *sourceString);
- TW_API void TW_CALL TwCopyCDStringToClientFunc(TwCopyCDStringToClient copyCDStringFunc);
- TW_API void TW_CALL TwCopyCDStringToLibrary(char **destinationLibraryStringPtr, const char *sourceClientString);
- #ifdef __cplusplus
- typedef void (TW_CALL * TwCopyStdStringToClient)(std::string& destinationClientString, const std::string& sourceString);
- TW_API void TW_CALL TwCopyStdStringToClientFunc(TwCopyStdStringToClient copyStdStringToClientFunc);
- TW_API void TW_CALL TwCopyStdStringToLibrary(std::string& destinationLibraryString, const std::string& sourceClientString);
- #endif // __cplusplus
- typedef enum ETwParamValueType
- {
- TW_PARAM_INT32,
- TW_PARAM_FLOAT,
- TW_PARAM_DOUBLE,
- TW_PARAM_CSTRING // Null-terminated array of char (ie, c-string)
- } TwParamValueType;
- TW_API int TW_CALL TwGetParam(TwBar *bar, const char *varName, const char *paramName, TwParamValueType paramValueType, unsigned int outValueMaxCount, void *outValues);
- TW_API int TW_CALL TwSetParam(TwBar *bar, const char *varName, const char *paramName, TwParamValueType paramValueType, unsigned int inValueCount, const void *inValues);
- // ----------------------------------------------------------------------------
- // Managment functions and definitions
- // ----------------------------------------------------------------------------
- typedef enum ETwGraphAPI
- {
- TW_OPENGL = 1,
- TW_DIRECT3D9 = 2,
- TW_DIRECT3D10 = 3
- } TwGraphAPI;
- TW_API int TW_CALL TwInit(TwGraphAPI graphAPI, void *device);
- TW_API int TW_CALL TwTerminate();
- TW_API int TW_CALL TwDraw();
- TW_API int TW_CALL TwWindowSize(int width, int height);
- typedef enum ETwKeyModifier
- {
- TW_KMOD_NONE = 0x0000, // same codes as SDL keysym.mod
- TW_KMOD_SHIFT = 0x0003,
- TW_KMOD_CTRL = 0x00c0,
- TW_KMOD_ALT = 0x0100,
- TW_KMOD_META = 0x0c00
- } TwKeyModifier;
- typedef enum EKeySpecial
- {
- TW_KEY_BACKSPACE = '\b',
- TW_KEY_TAB = '\t',
- TW_KEY_CLEAR = 0x0c,
- TW_KEY_RETURN = '\r',
- TW_KEY_PAUSE = 0x13,
- TW_KEY_ESCAPE = 0x1b,
- TW_KEY_SPACE = ' ',
- TW_KEY_DELETE = 0x7f,
- TW_KEY_UP = 273, // same codes and order as SDL keysym.sym
- TW_KEY_DOWN,
- TW_KEY_RIGHT,
- TW_KEY_LEFT,
- TW_KEY_INSERT,
- TW_KEY_HOME,
- TW_KEY_END,
- TW_KEY_PAGE_UP,
- TW_KEY_PAGE_DOWN,
- TW_KEY_F1,
- TW_KEY_F2,
- TW_KEY_F3,
- TW_KEY_F4,
- TW_KEY_F5,
- TW_KEY_F6,
- TW_KEY_F7,
- TW_KEY_F8,
- TW_KEY_F9,
- TW_KEY_F10,
- TW_KEY_F11,
- TW_KEY_F12,
- TW_KEY_F13,
- TW_KEY_F14,
- TW_KEY_F15,
- TW_KEY_LAST
- } TwKeySpecial;
- TW_API int TW_CALL TwKeyPressed(int key, int modifiers);
- typedef enum ETwMouseAction
- {
- TW_MOUSE_RELEASED,
- TW_MOUSE_PRESSED
- } TwMouseAction;
- typedef enum ETwMouseButtonID
- {
- TW_MOUSE_LEFT = 1, // same code as SDL_BUTTON_LEFT
- TW_MOUSE_MIDDLE = 2, // same code as SDL_BUTTON_MIDDLE
- TW_MOUSE_RIGHT = 3 // same code as SDL_BUTTON_RIGHT
- } TwMouseButtonID;
- TW_API int TW_CALL TwMouseButton(TwMouseAction action, TwMouseButtonID button);
- TW_API int TW_CALL TwMouseMotion(int mouseX, int mouseY);
- TW_API int TW_CALL TwMouseWheel(int pos);
- TW_API const char * TW_CALL TwGetLastError();
- typedef void (TW_CALL * TwErrorHandler)(const char *errorMessage);
- TW_API void TW_CALL TwHandleErrors(TwErrorHandler errorHandler);
- // ----------------------------------------------------------------------------
- // Helper functions to translate events from some common window management
- // frameworks to AntTweakBar.
- // They call TwKeyPressed, TwMouse* and TwWindowSize for you (implemented in
- // files TwEventWin.c TwEventSDL.c TwEventGLFW.c TwEventGLUT.c)
- // ----------------------------------------------------------------------------
- // For Windows message proc
- #ifndef _W64 // Microsoft specific (detection of 64 bits portability problems)
- # define _W64
- #endif // _W64
- TW_API int TW_CALL TwEventWin(void *wnd, unsigned int msg, unsigned int _W64 wParam, int _W64 lParam);
- #define TwEventWin32 TwEventWin // For compatibility with AntTweakBar versions prior to 1.11
- // For libSDL event loop
- TW_API int TW_CALL TwEventSDL(const void *sdlEvent);
-
- // For GLFW event callbacks
- TW_API int TW_CALL TwEventMouseButtonGLFW(int glfwButton, int glfwAction);
- TW_API int TW_CALL TwEventKeyGLFW(int glfwKey, int glfwAction);
- TW_API int TW_CALL TwEventCharGLFW(int glfwChar, int glfwAction);
- #define TwEventMousePosGLFW TwMouseMotion
- #define TwEventMouseWheelGLFW TwMouseWheel
- // For GLUT event callbacks (Windows calling convention for GLUT callbacks is cdecl)
- #if defined(_WIN32) || defined(_WIN64)
- # define TW_GLUT_CALL __cdecl
- #else
- # define TW_GLUT_CALL
- #endif
- TW_API int TW_GLUT_CALL TwEventMouseButtonGLUT(int glutButton, int glutState, int mouseX, int mouseY);
- TW_API int TW_GLUT_CALL TwEventMouseMotionGLUT(int mouseX, int mouseY);
- TW_API int TW_GLUT_CALL TwEventKeyboardGLUT(unsigned char glutKey, int mouseX, int mouseY);
- TW_API int TW_GLUT_CALL TwEventSpecialGLUT(int glutKey, int mouseX, int mouseY);
- TW_API int TW_CALL TwGLUTModifiersFunc(int (TW_CALL *glutGetModifiersFunc)(void));
- typedef void (TW_GLUT_CALL *GLUTmousebuttonfun)(int glutButton, int glutState, int mouseX, int mouseY);
- typedef void (TW_GLUT_CALL *GLUTmousemotionfun)(int mouseX, int mouseY);
- typedef void (TW_GLUT_CALL *GLUTkeyboardfun)(unsigned char glutKey, int mouseX, int mouseY);
- typedef void (TW_GLUT_CALL *GLUTspecialfun)(int glutKey, int mouseX, int mouseY);
-
- // ----------------------------------------------------------------------------
- // Make sure the types have the right sizes
- // ----------------------------------------------------------------------------
- #define TW_COMPILE_TIME_ASSERT(name, x) typedef int TW_DUMMY_ ## name[(x) * 2 - 1]
- TW_COMPILE_TIME_ASSERT(CHAR, sizeof(char) == 1);
- TW_COMPILE_TIME_ASSERT(SHORT, sizeof(short) == 2);
- TW_COMPILE_TIME_ASSERT(INT, sizeof(int) == 4);
- TW_COMPILE_TIME_ASSERT(FLOAT, sizeof(float) == 4);
- TW_COMPILE_TIME_ASSERT(DOUBLE, sizeof(double) == 8);
- // ---------------------------------------------------------------------------
- #ifdef __cplusplus
- } // extern "C"
- #endif // __cplusplus
- #endif // !defined TW_INCLUDED
|