*/}}

la_controllers.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. /*
  2. * LaGUI: A graphical application framework.
  3. * Copyright (C) 2022-2023 Wu Yiming
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "la_5.h"
  19. #include <math.h>
  20. #ifdef __linux__
  21. #include <fcntl.h>
  22. #include <sys/types.h>
  23. #include <sys/stat.h>
  24. #include <sys/ioctl.h>
  25. #include <sys/inotify.h>
  26. #include <linux/input.h>
  27. #include <linux/joystick.h>
  28. #include <fcntl.h>
  29. #include <unistd.h>
  30. #include <errno.h>
  31. #include <X11/extensions/XInput2.h>
  32. #endif
  33. extern LA MAIN;
  34. #define LA_JS_EVENT_BUTTON 0x01 // button pressed/released
  35. #define LA_JS_EVENT_AXIS 0x02 // joystick moved
  36. #define LA_JS_EVENT_INIT 0x80 // initial state of device
  37. #define LA_JS_TYPE_X56_THROTTLE 1
  38. #define LA_JS_TYPE_X56_STICK 2
  39. char LA_JS_BTN_NAMES[LA_JS_MAX_BUTTONS][10];
  40. char LA_JS_AXIS_NAMES[LA_JS_MAX_AXES][10];
  41. int la_IdentifyControllerInternalType(char* name){
  42. if(strstr(name, "X-56") && strstr(name, "Throttle")){ return LA_JS_TYPE_X56_THROTTLE; }
  43. if(strstr(name, "X-56") && strstr(name, "Stick")){ return LA_JS_TYPE_X56_STICK; }
  44. return 0;
  45. }
  46. laController* la_NewController(char* name, char* path, int device, int NumAxes, int NumButtons){
  47. laController* c=memAcquire(sizeof(laController));
  48. logPrint("Found controller %s\n at %s\n with %d axes, %d buttons\n", name, path, NumAxes, NumButtons);
  49. strSafeSet(&c->Name, name); strSafeSet(&c->Path, path); c->fd=device;
  50. c->NumAxes = NumAxes; c->NumButtons=NumButtons;
  51. c->InternalType = la_IdentifyControllerInternalType(name);
  52. lstAppendItem(&MAIN.Controllers,c);
  53. c->UserAssignedID=MAIN.NextControllerID; MAIN.NextControllerID++;
  54. return c;
  55. }
  56. void la_DestroyController(laController* c){
  57. strSafeDestroy(&c->Name); strSafeDestroy(&c->Path);
  58. memFree(c); laNotifyUsers("la.controllers");
  59. }
  60. laController* la_FindControllerWithID(int id){
  61. for(laController* c=MAIN.Controllers.pFirst;c;c=c->Item.pNext){ if(c->UserAssignedID==id) return c; } return 0;
  62. }
  63. void la_ReadControllerAxisLimit(laController* c, int i, int Min, int Max){
  64. c->AxisMins[i] = Min;
  65. c->AxisMaxes[i] = Max;
  66. c->AxisLimitMins[i] = -32768*0.95;
  67. c->AxisLimitMaxes[i] = 32767*0.95;
  68. }
  69. int la_ControllerButtonToMap(int btn){
  70. if(btn<BTN_MISC) return -1;
  71. if(btn<=BTN_GEAR_UP) return btn-BTN_MISC;
  72. if(btn<BTN_DPAD_UP) return -1;
  73. if(btn<=BTN_DPAD_RIGHT) return BTN_GEAR_UP-BTN_MISC+1+btn-BTN_DPAD_UP;
  74. if(btn<BTN_TRIGGER_HAPPY) return -1;
  75. if(btn<=BTN_TRIGGER_HAPPY40) return BTN_GEAR_UP-BTN_MISC+1+BTN_DPAD_RIGHT-BTN_DPAD_UP+1+btn-BTN_TRIGGER_HAPPY;
  76. return -1;
  77. }
  78. int la_ControllerButtonToIndex(laController* c,int btn){
  79. int map=la_ControllerButtonToMap(btn); if(map<0) return -1; return c->ButtonsMap[map];
  80. }
  81. int la_ControllerAxisToMap(int abs){
  82. if(abs<ABS_X) return -1; if(abs>ABS_MAX) return -1;
  83. return abs;
  84. }
  85. int la_ControllerAxisToIndex(laController* c,int abs){
  86. int map=la_ControllerAxisToMap(abs); if(map<0) return -1; return c->AxisMap[map];
  87. }
  88. void la_InitControllers(){
  89. #ifdef __linux__
  90. char path[32]="/dev/input/js";
  91. char name[128]={0};
  92. int numpos=strlen(path);
  93. char fileName[32];
  94. for (int i=0; i<32; ++i) {
  95. sprintf(fileName, "/dev/input/event%d", i);
  96. int file = open(fileName, O_RDWR | O_NONBLOCK);
  97. if (file != -1){
  98. // Get name
  99. ioctl(file, EVIOCGNAME(128), name);
  100. printf("%s\n",name);
  101. barray_t *abs_barray = barray_init(ABS_CNT);
  102. ioctl(file, EVIOCGBIT(EV_ABS, ABS_CNT), barray_data(abs_barray));
  103. size_t abs_count = barray_count_set(abs_barray);
  104. barray_t *key_barray = barray_init(KEY_CNT);
  105. ioctl(file, EVIOCGBIT(EV_KEY, KEY_CNT), barray_data(key_barray));
  106. size_t key_count = barray_count_set(key_barray);
  107. if(!abs_count && !key_count){ close(file); continue; }
  108. laController* c=la_NewController(name, fileName, file, abs_count, key_count);
  109. int nextid=0;
  110. for (unsigned int j=0; j<KEY_CNT; j++){
  111. if(barray_is_set(key_barray,j)){
  112. int mapid=la_ControllerButtonToMap(j); if(mapid<0){ continue; }
  113. c->ButtonsMap[mapid]=nextid; nextid++;
  114. }
  115. }
  116. nextid=0;
  117. for (unsigned int j=0; j<ABS_CNT; j++){ struct input_absinfo axisInfo;
  118. if (barray_is_set(abs_barray,j) && (ioctl(file, EVIOCGABS(j), &axisInfo) != -1)){
  119. int mapid=la_ControllerAxisToMap(j); if(mapid<0){ continue; }
  120. la_ReadControllerAxisLimit(c,nextid,axisInfo.minimum,axisInfo.maximum);
  121. c->AxisMap[mapid]=nextid; nextid++;
  122. }
  123. }
  124. barray_free(abs_barray);
  125. barray_free(key_barray);
  126. }
  127. }
  128. #endif
  129. }
  130. void la_UpdateControllerStatus(){
  131. #ifdef __linux__
  132. struct input_event event; int HasEvent=0;
  133. for(laController* c=MAIN.Controllers.pFirst;c;c=c->Item.pNext){ if(c->Error) continue;
  134. int bytes; while((bytes=read(c->fd, &event, sizeof(struct input_event)))>0){
  135. if(event.type == EV_KEY){
  136. int idx = la_ControllerButtonToIndex(c,event.code); if(idx<0) continue;
  137. c->ButtonValues[idx]=event.value; HasEvent=1;
  138. //printf("b %d\n", idx);
  139. }
  140. else if(event.type == EV_ABS){
  141. int idx = la_ControllerAxisToIndex(c,event.code); if(idx<0) continue;
  142. c->AxisValues[idx]=rint(tnsLinearItp(-32768.0f,32767.0f,((real)event.value/(c->AxisMaxes[idx]-c->AxisMins[idx]))));
  143. HasEvent=1; //printf("a %d %d\n", idx, event.value);
  144. }
  145. }
  146. if(bytes<=0){ struct stat buffer; if(stat(c->Path->Ptr,&buffer)<0){ c->Error=1; HasEvent=1; } }
  147. }
  148. if(HasEvent){ laNotifyUsers("la.controllers"); laMappingRequestEval(); }
  149. #endif
  150. }
  151. void la_RefreshControllers(){
  152. laController* c; while(c=lstPopItem(&MAIN.Controllers)){ la_DestroyController(c); } MAIN.NextControllerID=0;
  153. la_InitControllers();
  154. }
  155. int OPINV_RefreshControllers(){
  156. la_RefreshControllers();
  157. #ifdef __linux__
  158. la_ScanWacomDevices(MAIN.dpy,XIAllDevices);
  159. #endif
  160. #ifdef _WIN32
  161. MAIN.WinTabOpened = 0;
  162. if(MAIN.CurrentWindow){ la_OpenWacomWinTab(MAIN.CurrentWindow->win); }
  163. #endif
  164. return LA_FINISHED;
  165. }
  166. void la_AddButtonProp(laPropContainer* pc, char* id, char* name, char* desc, int i, int array_len, char* array_prefix){
  167. laProp* p=laAddEnumProperty(pc, id, name, desc, LA_WIDGET_ENUM_HIGHLIGHT,
  168. array_prefix,0,0,0,offsetof(laController, ButtonValues[i]),0,0,array_len,0,0,0,0,0,0,LA_READ_ONLY);
  169. laAddEnumItemAs(p,"IDLE", "Idle", "Button is not pressed", 0, 0);
  170. laAddEnumItemAs(p,"ACTIVE", "Active", "Button is pressed", 1, 0);
  171. p->ElementBytes=1;
  172. }
  173. void la_AddAxisProp(laPropContainer* pc, char* id, char* name, char* id_min, char* id_max, char* id_cmin, char* id_cmax, char* desc, int i, int array_len, char* array_prefix){
  174. laProp* p=laAddIntProperty(pc,id,name,desc,array_len>1?LA_WIDGET_VALUE_METER_2D:LA_WIDGET_METER_TYPE2,
  175. array_prefix,0,32767,-32768,1,0,0,offsetof(laController, AxisValues[i]),0,0,array_len,0,0,0,0,0,0,0,LA_READ_ONLY);
  176. if(id_min) p=laAddIntProperty(pc,id_min,id_min,desc,0,
  177. array_prefix,0,-25000,-32768,1,0,0,offsetof(laController, AxisLimitMins[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  178. if(id_max) p=laAddIntProperty(pc,id_max,id_max,desc,0,
  179. array_prefix,0,32767,25000,1,0,0,offsetof(laController, AxisLimitMaxes[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  180. if(id_min) p=laAddIntProperty(pc,id_cmax,id_cmax,desc,0,
  181. array_prefix,0,-25000,-32768,1,0,0,offsetof(laController, AxisCenterMins[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  182. if(id_cmax) p=laAddIntProperty(pc,id_cmin,id_cmin,desc,0,
  183. array_prefix,0,32767,25000,1,0,0,offsetof(laController, AxisCenterMaxes[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  184. }
  185. void la_AddGenericButtonProps(laPropContainer* pc){
  186. for(int i=0;i<LA_JS_MAX_BUTTONS;i++){ char* name=LA_JS_BTN_NAMES[i]; la_AddButtonProp(pc,name,name,name,i,0,0); }
  187. }
  188. void la_AddGenericAxisProps(laPropContainer* pc){
  189. for(int i=0;i<LA_JS_MAX_AXES;i++){ char* name=LA_JS_AXIS_NAMES[i]; la_AddAxisProp(pc,name,name,0,0,0,0,name,i,0,0); }
  190. }
  191. #define ADD_AXIS_PROP(pc,id,name,desc,i,array_len,array_prefix) \
  192. la_AddAxisProp(pc,id,name,id "_min",id "_max",id "_cmin",id "_cmax",desc,i,array_len,array_prefix)
  193. void laui_X56Throttle(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context);
  194. void laui_X56Stick(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context);
  195. laPropContainer* LA_PC_JS_GENERIC;
  196. laPropContainer* LA_PC_JS_X56_THROTTLE;
  197. laPropContainer* LA_PC_JS_X56_STICK;
  198. laPropContainer* laget_ControllerType(laController* c){
  199. switch(c->InternalType){
  200. default: case 0: return LA_PC_JS_GENERIC;
  201. case LA_JS_TYPE_X56_THROTTLE: return LA_PC_JS_X56_THROTTLE;
  202. case LA_JS_TYPE_X56_STICK: return LA_PC_JS_X56_STICK;
  203. }
  204. }
  205. void la_RegisterControllerProps(){
  206. for(int i=0;i<LA_JS_MAX_AXES;i++){ sprintf(LA_JS_AXIS_NAMES[i],"a%d",i); }
  207. for(int i=0;i<LA_JS_MAX_BUTTONS;i++){ sprintf(LA_JS_BTN_NAMES[i],"b%d",i); }
  208. laCreateOperatorType("LA_refresh_controllers", "Refresh Controllers", "Look for connected controllers",0,0,0,OPINV_RefreshControllers,0,U'🗘',0);
  209. laPropContainer* pc; laProp* p;
  210. pc=laAddPropertyContainer("la_controller", "Controller", "A joystick/gamepad controller", U'🕹', 0, sizeof(laController), 0,0,1);
  211. LA_PC_JS_GENERIC = pc;
  212. laAddStringProperty(pc,"name","Name","Name of the controller", LA_WIDGET_STRING_PLAIN,0,0,0,1,offsetof(laController,Name),0,0,0,0,LA_READ_ONLY);
  213. laAddStringProperty(pc,"path","Path","Device path to the controller", LA_WIDGET_STRING_PLAIN,0,0,0,1,offsetof(laController,Path),0,0,0,0,LA_READ_ONLY);
  214. laAddIntProperty(pc,"user_assigned_id", "ID", "User assigned ID", 0,0,0,0,0,0,0,0,offsetof(laController, UserAssignedID),0,0,0,0,0,0,0,0,0,0,LA_AS_IDENTIFIER);
  215. laAddIntProperty(pc,"error", "Error", "Device error", 0,0,0,0,0,0,0,0,offsetof(laController, Error),0,0,0,0,0,0,0,0,0,0,0);
  216. la_AddGenericButtonProps(pc);
  217. la_AddGenericAxisProps(pc);
  218. pc=laAddPropertyContainer("la_controller_x56_throttle", "X56 Throttle", "X56 Throttle", 0,laui_X56Throttle,sizeof(laController),0,0,1);
  219. LA_PC_JS_X56_THROTTLE = pc;
  220. laAddStringProperty(pc,"name","Name","Name of the controller", LA_WIDGET_STRING_PLAIN,0,0,0,1,offsetof(laController,Name),0,0,0,0,LA_READ_ONLY|LA_AS_IDENTIFIER);
  221. laAddSubGroup(pc,"base","Base","Generic controller status", "la_controller",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  222. ADD_AXIS_PROP(pc,"thr1","THR1","Throttle 1",0,0,0);
  223. ADD_AXIS_PROP(pc,"thr2","THR2","Throttle 1",1,0,0);
  224. ADD_AXIS_PROP(pc,"wf","WF","Wheel F (big wheel)",2,0,0);
  225. ADD_AXIS_PROP(pc,"ball","Ball","Thumb ball",3,2,"Left/Right,Up/Down");
  226. ADD_AXIS_PROP(pc,"wg","WG","Wheel G (smaller wheel)",5,0,0);
  227. ADD_AXIS_PROP(pc,"r4","RTY4","Rotary 4",6,0,0);
  228. ADD_AXIS_PROP(pc,"r3","RTY3","Rotary 3",7,0,0);
  229. la_AddButtonProp(pc,"be","E","Button E (thumb flat switch)", 0,0,0);
  230. la_AddButtonProp(pc,"bf","F","Button F (big push down switch)", 1,0,0);
  231. la_AddButtonProp(pc,"bg","G","Button G (smaller up-side-down switch)", 2,0,0);
  232. la_AddButtonProp(pc,"bi","I","Button I (left reverser)", 3,0,0);
  233. la_AddButtonProp(pc,"bh","H","Button H (right reverser)", 4,0,0);
  234. la_AddButtonProp(pc,"sw1","SW1","Switch 1", 5,0,0);
  235. la_AddButtonProp(pc,"sw2","SW2","Switch 2", 6,0,0);
  236. la_AddButtonProp(pc,"sw3","SW3","Switch 3", 7,0,0);
  237. la_AddButtonProp(pc,"sw4","SW4","Switch 4", 8,0,0);
  238. la_AddButtonProp(pc,"sw5","SW5","Switch 5", 9,0,0);
  239. la_AddButtonProp(pc,"sw6","SW6","Switch 6", 10,0,0);
  240. la_AddButtonProp(pc,"t1_up","T1+","Toggle 1+", 11,0,0);
  241. la_AddButtonProp(pc,"t1_dn","T1-","Toggle 1-", 12,0,0);
  242. la_AddButtonProp(pc,"t2_up","T2+","Toggle 2+", 13,0,0);
  243. la_AddButtonProp(pc,"t2_dn","T2-","Toggle 2-", 14,0,0);
  244. la_AddButtonProp(pc,"t3_up","T3+","Toggle 3+", 15,0,0);
  245. la_AddButtonProp(pc,"t3_dn","T3-","Toggle 3-", 16,0,0);
  246. la_AddButtonProp(pc,"t4_up","T4+","Toggle 4+", 17,0,0);
  247. la_AddButtonProp(pc,"t4_dn","T4-","Toggle 4-", 18,0,0);
  248. la_AddButtonProp(pc,"h3","H3","Hat 3 (Upper round hat)", 19,4,"N,E,S,W");
  249. la_AddButtonProp(pc,"h4","H4","Hat 4 (lower jagged hat)", 23,4,"N,E,S,W");
  250. la_AddButtonProp(pc,"pinky_up","P+","Pinky up", 27,0,0);
  251. la_AddButtonProp(pc,"pinky_dn","P-","Pinky down", 28,0,0);
  252. la_AddButtonProp(pc,"dial_fwd","D+","Dial forward", 29,0,0);
  253. la_AddButtonProp(pc,"dial_back","D-","Dial backward", 30,0,0);
  254. la_AddButtonProp(pc,"bball","BP","Ball push", 31,0,0);
  255. la_AddButtonProp(pc,"slider","SLD","Slider", 32,0,0);
  256. la_AddButtonProp(pc,"mode","Mode","Mode switch", 33,3,"M1,M2,S1");
  257. pc=laAddPropertyContainer("la_controller_x56_stick", "X56 Stick", "X56 Stick", 0,laui_X56Stick,sizeof(laController),0,0,1);
  258. LA_PC_JS_X56_STICK = pc;
  259. laAddStringProperty(pc,"name","Name","Name of the controller", LA_WIDGET_STRING_PLAIN,0,0,0,1,offsetof(laController,Name),0,0,0,0,LA_READ_ONLY|LA_AS_IDENTIFIER);
  260. laAddSubGroup(pc,"base","Base","Generic controller status", "la_controller",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  261. ADD_AXIS_PROP(pc,"stick","Stick","Main stick",0,2,"Left/Right,Up/Down");
  262. ADD_AXIS_PROP(pc,"ball","Ball","Ball stick",2,2,"Left/Right,Up/Down");
  263. ADD_AXIS_PROP(pc,"rudder","Rudder","Ruder twist",4,0,0);
  264. ADD_AXIS_PROP(pc,"pov","POV","POV hat",5,2,"Left/Right,Up/Down");
  265. la_AddButtonProp(pc,"trigger","Trigger","Trigger", 0,0,0);
  266. la_AddButtonProp(pc,"ba","A","Button A", 1,0,0);
  267. la_AddButtonProp(pc,"bb","B","Button B (Side of stick)", 2,0,0);
  268. la_AddButtonProp(pc,"bball","BP","Ball push", 3,0,0); la_AddButtonProp(pc,"bc","BC","Button C (ball push)", 3,0,0);
  269. la_AddButtonProp(pc,"pinky","PK","Pinky small button", 4,0,0); la_AddButtonProp(pc,"bd","BD","Button D pinky small button", 4,0,0);
  270. la_AddButtonProp(pc,"pinkyl","PKL","Pinky lever", 5,0,0);
  271. la_AddButtonProp(pc,"h1","H1","Hat 1 (Upper round hat)", 6,4,"N,E,S,W");
  272. la_AddButtonProp(pc,"h2","H2","Hat 2 (lower jagged hat)", 10,4,"N,E,S,W");
  273. //button 14-16 not sure where it is....
  274. }
  275. void laui_X56Throttle(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context){
  276. laColumn* c=laFirstColumn(uil),*cl, *cr, *crl,*crr, *rc, *vc, *rcl,*rcr;
  277. laSplitColumn(uil,c,0.17); cl=laLeftColumn(c,0); cr=laRightColumn(c,0);
  278. laSplitColumn(uil,cr,0.4); crl=laLeftColumn(cr,0); crr=laRightColumn(cr,0);
  279. laSplitColumn(uil,crr,0.6); rc=laLeftColumn(crr,10); vc=laRightColumn(crr,0);
  280. laSplitColumn(uil,rc,0.4); rcl=laLeftColumn(rc,2); rcr=laRightColumn(rc,0);
  281. laUiItem* b,*ui,*g; laUiList*gu;
  282. laShowItem(uil,c,This,"base.name")->Flags|=LA_TEXT_ALIGN_CENTER;
  283. b=laBeginRow(uil,c,0,0);
  284. laShowItem(uil,c,This,"base.user_assigned_id");
  285. laUiItem* b1=laOnConditionThat(uil,c,laPropExpression(This,"base.error"));{
  286. laShowLabel(uil,c,"Device error.",0,0)->Expand=1;
  287. }laElse(uil,b1);{
  288. laShowItem(uil,c,This,"base.path")->Expand=1;
  289. }laEndCondition(uil,b1);
  290. laEndRow(uil,b);
  291. laShowSeparator(uil,c);
  292. laShowItem(uil,cl,This,"pinky_up");
  293. laShowItem(uil,cl,This,"pinky_dn");
  294. laShowSeparator(uil,cl);
  295. laShowItem(uil,cl,This,"dial_fwd");
  296. laShowItem(uil,cl,This,"dial_back");
  297. b=laBeginRow(uil,crl,0,0);
  298. ui=laShowItem(uil,crl,This,"bi");ui->Expand=1;
  299. ui=laShowItem(uil,crl,This,"bh");ui->Expand=1;
  300. laEndRow(uil,b);
  301. b=laBeginRow(uil,crl,0,0);
  302. ui=laShowItem(uil,crl,This,"thr1");ui->Expand=1;ui->Extra->HeightCoeff=10;ui->Flags|=LA_UI_FLAGS_TRANSPOSE;
  303. laShowCompoundValue(ui,LA_SLOT_MARKER_1,This,"thr1_min");
  304. laShowCompoundValue(ui,LA_SLOT_MARKER_2,This,"thr1_max");
  305. ui=laShowItem(uil,crl,This,"thr2");ui->Expand=1;ui->Extra->HeightCoeff=10;ui->Flags|=LA_UI_FLAGS_TRANSPOSE;
  306. laShowCompoundValue(ui,LA_SLOT_MARKER_1,This,"thr2_min");
  307. laShowCompoundValue(ui,LA_SLOT_MARKER_2,This,"thr2_max");
  308. laEndRow(uil,b);
  309. b=laBeginRow(uil,crl,0,0);
  310. laShowItem(uil,crl,This,"thr1_min")->Flags|=LA_UI_FLAGS_KNOB; laShowItem(uil,crl,This,"thr1_max")->Flags|=LA_UI_FLAGS_KNOB;
  311. laShowSeparator(uil,crl)->Expand=1;
  312. laShowItem(uil,crl,This,"thr2_min")->Flags|=LA_UI_FLAGS_KNOB; laShowItem(uil,crl,This,"thr2_max")->Flags|=LA_UI_FLAGS_KNOB;
  313. laEndRow(uil,b);
  314. laShowItem(uil,rcl,This,"bf");
  315. laShowItem(uil,rcr,This,"wf");
  316. laShowItem(uil,rcl,This,"bg");
  317. laShowItem(uil,rcr,This,"wg");
  318. laShowSeparator(uil,cl);
  319. laShowItem(uil,rcl,This,"slider");
  320. laShowSeparator(uil,rcl);
  321. laShowItem(uil,rcl,This,"be");
  322. laShowItem(uil,rcl,This,"bball");
  323. laShowItem(uil,rcr,This,"ball");
  324. laShowItem(uil,rc,This,"h3")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  325. laShowItem(uil,rc,This,"h4")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  326. laShowItem(uil,vc,This,"t4_up");
  327. laShowItem(uil,vc,This,"t4_dn"); laShowSeparator(uil,vc);
  328. laShowItem(uil,vc,This,"t3_up");
  329. laShowItem(uil,vc,This,"t3_dn"); laShowSeparator(uil,vc);
  330. laShowItem(uil,vc,This,"t2_up");
  331. laShowItem(uil,vc,This,"t2_dn"); laShowSeparator(uil,vc);
  332. laShowItem(uil,vc,This,"t1_up");
  333. laShowItem(uil,vc,This,"t1_dn"); laShowSeparator(uil,vc);
  334. laShowItem(uil,vc,This,"r3");
  335. laShowItem(uil,vc,This,"r4");
  336. laShowSeparator(uil,c);
  337. laShowLabel(uil,cl,"Mode",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  338. laShowItem(uil,cl,This,"mode");
  339. laShowLabel(uil,cr,"Switches",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  340. b=laBeginRow(uil,cr,0,0);
  341. laShowItem(uil,cr,This,"sw1")->Expand=1;
  342. laShowItem(uil,cr,This,"sw3")->Expand=1;
  343. laShowItem(uil,cr,This,"sw5")->Expand=1;
  344. laEndRow(uil,b);
  345. b=laBeginRow(uil,cr,0,0);
  346. laShowItem(uil,cr,This,"sw2")->Expand=1;
  347. laShowItem(uil,cr,This,"sw4")->Expand=1;
  348. laShowItem(uil,cr,This,"sw6")->Expand=1;
  349. laEndRow(uil,b);
  350. }
  351. void laui_X56Stick(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context){
  352. laColumn* c=laFirstColumn(uil),*cl, *cc, *cr;
  353. laSplitColumn(uil,c,0.2); cl=laLeftColumn(c,10); cr=laRightColumn(c,0);
  354. laSplitColumn(uil,cr,0.8); cc=laLeftColumn(cr,0); cr=laRightColumn(cr,10);
  355. laUiItem* b;
  356. laShowItem(uil,c,This,"base.name")->Flags|=LA_TEXT_ALIGN_CENTER;
  357. b=laBeginRow(uil,c,0,0);
  358. laShowItem(uil,c,This,"base.user_assigned_id");
  359. laUiItem* b1=laOnConditionThat(uil,c,laPropExpression(This,"base.error"));{
  360. laShowLabel(uil,c,"Device error.",0,0)->Expand=1;
  361. }laElse(uil,b1);{
  362. laShowItem(uil,c,This,"base.path")->Expand=1;
  363. }laEndCondition(uil,b1);
  364. laEndRow(uil,b);
  365. laShowSeparator(uil,c);
  366. laShowItem(uil,cl,This,"ba");
  367. laShowItem(uil,cl,This,"pov");
  368. laShowSeparator(uil,cl);
  369. laShowLabel(uil,cl,"Thumb",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  370. laShowItem(uil,cl,This,"bc");
  371. laShowItem(uil,cl,This,"ball");
  372. laShowSeparator(uil,cl);
  373. laShowLabel(uil,cl,"Pinky",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  374. laShowItem(uil,cl,This,"pinkyl");
  375. laShowItem(uil,cl,This,"pinky");
  376. laShowItem(uil,cr,This,"bb");
  377. laShowSeparator(uil,cr);
  378. laShowItem(uil,cc,This,"trigger");
  379. laShowItem(uil,cc,This,"stick");
  380. laShowItem(uil,cc,This,"rudder");
  381. laShowLabel(uil,cr,"H1",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  382. laShowItem(uil,cr,This,"h1");
  383. laShowSeparator(uil,cr);
  384. laShowLabel(uil,cr,"H2",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  385. laShowItem(uil,cr,This,"h2");
  386. }