ACE3/addons/spectator/script_component.hpp
SilentSpike 1c79c8fa45 Update spectator UI styling
Adds a title to the unit tree to match the help list and enters the title text.
2015-08-07 15:15:04 +01:00

58 lines
1.3 KiB
C++

#define COMPONENT spectator
#include "\z\ace\addons\main\script_mod.hpp"
#ifdef DEBUG_ENABLED_SPECTATOR
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_SPECTATOR
#define DEBUG_SETTINGS DEBUG_SETTINGS_SPECTATOR
#endif
#include "\z\ace\addons\main\script_macros.hpp"
// UI grid
#define SIZEX ((safezoneW / safezoneH) min 1.2)
#define SIZEY (SIZEX / 1.2)
#define W_PART(num) (num * (SIZEX / 40))
#define H_PART(num) (num * (SIZEY / 25))
#define X_PART(num) (W_PART(num) + (safezoneX + (safezoneW - SIZEX)/2))
#define Y_PART(num) (H_PART(num) + (safezoneY + (safezoneH - SIZEY)/2))
// UI tools
#define TOOL_H H_PART(1)
#define TOOL_W W_PART(5)
#define MARGIN TOOL_W * 0.05
// UI compass
#define COMPASS_W (TOOL_W * 4)
#define COMPASS_X (safeZoneX + safeZoneW * 0.5 - COMPASS_W * 0.5)
// UI IDCs
#define IDC_COMP 4490
#define IDC_COMP_0 5000
#define IDC_COMP_90 5090
#define IDC_COMP_180 5180
#define IDC_COMP_270 5270
#define IDC_HELP 7631
#define IDC_HELP_LIST 7622
#define IDC_MAP 6791
#define IDC_TOOL 3000
#define IDC_TOOL_CLOCK 3003
#define IDC_TOOL_FOV 3005
#define IDC_TOOL_NAME 3001
#define IDC_TOOL_SPEED 3006
#define IDC_TOOL_VIEW 3002
#define IDC_TOOL_VISION 3004
#define IDC_UNIT 6002
#define IDC_UNIT_TREE 6005
// UI colours
#define COL_BACK 0.1,0.1,0.1,0.7
#define COL_FORE 1,1,1,1
#define COL_FORE_D 0.1,0.1,0.1,0.8