*/}}

la_controllers.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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. void la_InitControllers(){
  70. #ifdef __linux__
  71. char path[32]="/dev/input/js";
  72. char name[128]={0};
  73. int numpos=strlen(path);
  74. char fileName[32];
  75. for (int i=0; i<32; ++i) {
  76. sprintf(fileName, "/dev/input/event%d", i);
  77. int file = open(fileName, O_RDWR | O_NONBLOCK);
  78. if (file != -1){
  79. // Get name
  80. ioctl(file, EVIOCGNAME(128), name);
  81. printf("%s ",name);
  82. barray_t *abs_barray = barray_init(ABS_CNT);
  83. ioctl(file, EVIOCGBIT(EV_ABS, ABS_CNT), barray_data(abs_barray));
  84. size_t abs_count = barray_count_set(abs_barray);
  85. barray_t *key_barray = barray_init(KEY_CNT);
  86. ioctl(file, EVIOCGBIT(EV_KEY, KEY_CNT), barray_data(key_barray));
  87. size_t key_count = barray_count_set(key_barray);
  88. if(!abs_count && !key_count){ close(file); continue; }
  89. laController* c=la_NewController(name, fileName, file, abs_count, key_count);
  90. for (unsigned int j=0; j<abs_count; j++){ struct input_absinfo axisInfo;
  91. if (ioctl(file, EVIOCGABS(j), &axisInfo) != -1){
  92. la_ReadControllerAxisLimit(c,j,axisInfo.minimum,axisInfo.maximum);
  93. }
  94. }
  95. barray_free(abs_barray);
  96. barray_free(key_barray);
  97. }
  98. }
  99. #endif
  100. }
  101. void la_UpdateControllerStatus(){
  102. #ifdef __linux__
  103. struct input_event event; int HasEvent=0;
  104. for(laController* c=MAIN.Controllers.pFirst;c;c=c->Item.pNext){ if(c->Error) continue;
  105. int bytes; while((bytes=read(c->fd, &event, sizeof(struct input_event)))>0){
  106. if(event.type == EV_KEY){
  107. printf("b %d %d", event.code, event.value);
  108. if(event.code>=BTN_JOYSTICK && event.code<=BTN_THUMBR){
  109. event.code -= BTN_JOYSTICK;
  110. }elif(event.code>=BTN_TRIGGER_HAPPY && event.code<=BTN_TRIGGER_HAPPY40){
  111. event.code=event.code-BTN_TRIGGER_HAPPY+BTN_THUMBR-BTN_JOYSTICK+1;
  112. }
  113. printf(" %d \n", event.code, event.value);
  114. //if(event.code>=c->NumButtons+BTN_THUMBR) continue;
  115. c->ButtonValues[event.code]=event.value; HasEvent=1;
  116. }
  117. else if(event.type == EV_ABS){
  118. if(event.code>=c->NumAxes+ABS_X) continue;
  119. int axis=event.code-ABS_X;
  120. c->AxisValues[axis]=rint(tnsLinearItp(-32768.0f,32767.0f,((real)event.value/(c->AxisMaxes[axis]-c->AxisMins[axis]))));
  121. HasEvent=1;
  122. //printf("a %d %d\n", event.code, event.value);
  123. }
  124. }
  125. if(bytes<=0){ struct stat buffer; if(stat(c->Path->Ptr,&buffer)<0){ c->Error=1; HasEvent=1; } }
  126. }
  127. if(HasEvent){ laNotifyUsers("la.controllers"); laMappingRequestEval(); }
  128. #endif
  129. }
  130. void la_RefreshControllers(){
  131. laController* c; while(c=lstPopItem(&MAIN.Controllers)){ la_DestroyController(c); } MAIN.NextControllerID=0;
  132. la_InitControllers();
  133. }
  134. int OPINV_RefreshControllers(){
  135. la_RefreshControllers();
  136. #ifdef __linux__
  137. la_ScanWacomDevices(MAIN.dpy,XIAllDevices);
  138. #endif
  139. #ifdef _WIN32
  140. MAIN.WinTabOpened = 0;
  141. if(MAIN.CurrentWindow){ la_OpenWacomWinTab(MAIN.CurrentWindow->win); }
  142. #endif
  143. return LA_FINISHED;
  144. }
  145. void la_AddButtonProp(laPropContainer* pc, char* id, char* name, char* desc, int i, int array_len, char* array_prefix){
  146. laProp* p=laAddEnumProperty(pc, id, name, desc, LA_WIDGET_ENUM_HIGHLIGHT,
  147. array_prefix,0,0,0,offsetof(laController, ButtonValues[i]),0,0,array_len,0,0,0,0,0,0,LA_READ_ONLY);
  148. laAddEnumItemAs(p,"IDLE", "Idle", "Button is not pressed", 0, 0);
  149. laAddEnumItemAs(p,"ACTIVE", "Active", "Button is pressed", 1, 0);
  150. p->ElementBytes=1;
  151. }
  152. 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){
  153. laProp* p=laAddIntProperty(pc,id,name,desc,array_len>1?LA_WIDGET_VALUE_METER_2D:LA_WIDGET_METER_TYPE2,
  154. 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);
  155. if(id_min) p=laAddIntProperty(pc,id_min,id_min,desc,0,
  156. array_prefix,0,32767,-32768,1,0,0,offsetof(laController, AxisLimitMins[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  157. if(id_max) p=laAddIntProperty(pc,id_max,id_max,desc,0,
  158. array_prefix,0,32767,-32768,1,0,0,offsetof(laController, AxisLimitMaxes[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  159. if(id_min) p=laAddIntProperty(pc,id_cmax,id_cmax,desc,0,
  160. array_prefix,0,32767,-32768,1,0,0,offsetof(laController, AxisCenterMins[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  161. if(id_cmax) p=laAddIntProperty(pc,id_cmin,id_cmin,desc,0,
  162. array_prefix,0,32767,-32768,1,0,0,offsetof(laController, AxisCenterMaxes[i]),0,0,array_len,0,0,0,0,0,0,0,0);
  163. }
  164. void la_AddGenericButtonProps(laPropContainer* pc){
  165. 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); }
  166. }
  167. void la_AddGenericAxisProps(laPropContainer* pc){
  168. 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); }
  169. }
  170. #define ADD_AXIS_PROP(pc,id,name,desc,i,array_len,array_prefix) \
  171. la_AddAxisProp(pc,id,name,id "_min",id "_max",id "_cmin",id "_cmax",desc,i,array_len,array_prefix)
  172. void laui_X56Throttle(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context);
  173. void laui_X56Stick(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context);
  174. laPropContainer* LA_PC_JS_GENERIC;
  175. laPropContainer* LA_PC_JS_X56_THROTTLE;
  176. laPropContainer* LA_PC_JS_X56_STICK;
  177. laPropContainer* laget_ControllerType(laController* c){
  178. switch(c->InternalType){
  179. default: case 0: return LA_PC_JS_GENERIC;
  180. case LA_JS_TYPE_X56_THROTTLE: return LA_PC_JS_X56_THROTTLE;
  181. case LA_JS_TYPE_X56_STICK: return LA_PC_JS_X56_STICK;
  182. }
  183. }
  184. void la_RegisterControllerProps(){
  185. for(int i=0;i<LA_JS_MAX_AXES;i++){ sprintf(LA_JS_AXIS_NAMES[i],"a%d",i); }
  186. for(int i=0;i<LA_JS_MAX_BUTTONS;i++){ sprintf(LA_JS_BTN_NAMES[i],"b%d",i); }
  187. laCreateOperatorType("LA_refresh_controllers", "Refresh Controllers", "Look for connected controllers",0,0,0,OPINV_RefreshControllers,0,U'🗘',0);
  188. laPropContainer* pc; laProp* p;
  189. pc=laAddPropertyContainer("la_controller", "Controller", "A joystick/gamepad controller", U'🕹', 0, sizeof(laController), 0,0,1);
  190. LA_PC_JS_GENERIC = pc;
  191. 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);
  192. 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);
  193. 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);
  194. 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);
  195. la_AddGenericButtonProps(pc);
  196. la_AddGenericAxisProps(pc);
  197. pc=laAddPropertyContainer("la_controller_x56_throttle", "X56 Throttle", "X56 Throttle", 0,laui_X56Throttle,sizeof(laController),0,0,1);
  198. LA_PC_JS_X56_THROTTLE = pc;
  199. 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);
  200. laAddSubGroup(pc,"base","Base","Generic controller status", "la_controller",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  201. ADD_AXIS_PROP(pc,"thr1","THR1","Throttle 1",0,0,0);
  202. ADD_AXIS_PROP(pc,"thr2","THR2","Throttle 1",1,0,0);
  203. ADD_AXIS_PROP(pc,"wf","WF","Wheel F (big wheel)",2,0,0);
  204. ADD_AXIS_PROP(pc,"ball","Ball","Thumb ball",3,2,"Left/Right,Up/Down");
  205. ADD_AXIS_PROP(pc,"wg","WG","Wheel G (smaller wheel)",5,0,0);
  206. ADD_AXIS_PROP(pc,"r4","RTY4","Rotary 4",6,0,0);
  207. ADD_AXIS_PROP(pc,"r3","RTY3","Rotary 3",7,0,0);
  208. la_AddButtonProp(pc,"be","E","Button E (thumb flat switch)", 0,0,0);
  209. la_AddButtonProp(pc,"bf","F","Button F (big push down switch)", 1,0,0);
  210. la_AddButtonProp(pc,"bg","G","Button G (smaller up-side-down switch)", 2,0,0);
  211. la_AddButtonProp(pc,"bi","I","Button I (left reverser)", 3,0,0);
  212. la_AddButtonProp(pc,"bh","H","Button H (right reverser)", 4,0,0);
  213. la_AddButtonProp(pc,"sw1","SW1","Switch 1", 5,0,0);
  214. la_AddButtonProp(pc,"sw2","SW2","Switch 2", 6,0,0);
  215. la_AddButtonProp(pc,"sw3","SW3","Switch 3", 7,0,0);
  216. la_AddButtonProp(pc,"sw4","SW4","Switch 4", 8,0,0);
  217. la_AddButtonProp(pc,"sw5","SW5","Switch 5", 9,0,0);
  218. la_AddButtonProp(pc,"sw6","SW6","Switch 6", 10,0,0);
  219. la_AddButtonProp(pc,"t1_up","T1+","Toggle 1+", 11,0,0);
  220. la_AddButtonProp(pc,"t1_dn","T1-","Toggle 1-", 12,0,0);
  221. la_AddButtonProp(pc,"t2_up","T2+","Toggle 2+", 13,0,0);
  222. la_AddButtonProp(pc,"t2_dn","T2-","Toggle 2-", 14,0,0);
  223. la_AddButtonProp(pc,"t3_up","T3+","Toggle 3+", 15,0,0);
  224. la_AddButtonProp(pc,"t3_dn","T3-","Toggle 3-", 31,0,0);
  225. la_AddButtonProp(pc,"t4_up","T4+","Toggle 4+", 32,0,0);
  226. la_AddButtonProp(pc,"t4_dn","T4-","Toggle 4-", 33,0,0);
  227. la_AddButtonProp(pc,"h3","H3","Hat 3 (Upper round hat)", 34,4,"N,E,S,W");
  228. la_AddButtonProp(pc,"h4","H4","Hat 4 (lower jagged hat)", 38,4,"N,E,S,W");
  229. la_AddButtonProp(pc,"pinky_up","P+","Pinky up", 42,0,0);
  230. la_AddButtonProp(pc,"pinky_dn","P-","Pinky down", 43,0,0);
  231. la_AddButtonProp(pc,"dial_fwd","D+","Dial forward", 44,0,0);
  232. la_AddButtonProp(pc,"dial_back","D-","Dial backward", 45,0,0);
  233. la_AddButtonProp(pc,"bball","BP","Ball push", 46,0,0);
  234. la_AddButtonProp(pc,"slider","SLD","Slider", 47,0,0);
  235. la_AddButtonProp(pc,"mode","Mode","Mode switch", 48,3,"M1,M2,S1");
  236. pc=laAddPropertyContainer("la_controller_x56_stick", "X56 Stick", "X56 Stick", 0,laui_X56Stick,sizeof(laController),0,0,1);
  237. LA_PC_JS_X56_STICK = pc;
  238. 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);
  239. laAddSubGroup(pc,"base","Base","Generic controller status", "la_controller",0,0,0,0,0,0,0,0,0,0,0,LA_UDF_LOCAL);
  240. ADD_AXIS_PROP(pc,"stick","Stick","Main stick",0,2,"Left/Right,Up/Down");
  241. ADD_AXIS_PROP(pc,"ball","Ball","Ball stick",2,2,"Left/Right,Up/Down");
  242. ADD_AXIS_PROP(pc,"rudder","Rudder","Ruder twist",4,0,0);
  243. ADD_AXIS_PROP(pc,"pov","POV","POV hat",5,2,"Left/Right,Up/Down");
  244. la_AddButtonProp(pc,"trigger","Trigger","Trigger", 0,0,0);
  245. la_AddButtonProp(pc,"ba","A","Button A", 1,0,0);
  246. la_AddButtonProp(pc,"bb","B","Button B (Side of stick)", 2,0,0);
  247. la_AddButtonProp(pc,"bball","BP","Ball push", 3,0,0); la_AddButtonProp(pc,"bc","BC","Button C (ball push)", 3,0,0);
  248. la_AddButtonProp(pc,"pinky","PK","Pinky small button", 4,0,0); la_AddButtonProp(pc,"bd","BD","Button D pinky small button", 4,0,0);
  249. la_AddButtonProp(pc,"pinkyl","PKL","Pinky lever", 5,0,0);
  250. la_AddButtonProp(pc,"h1","H1","Hat 1 (Upper round hat)", 6,4,"N,E,S,W");
  251. la_AddButtonProp(pc,"h2","H2","Hat 2 (lower jagged hat)", 10,4,"N,E,S,W");
  252. //button 14-16 not sure where it is....
  253. }
  254. void laui_X56Throttle(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context){
  255. laColumn* c=laFirstColumn(uil),*cl, *cr, *crl,*crr, *rc, *vc, *rcl,*rcr;
  256. laSplitColumn(uil,c,0.17); cl=laLeftColumn(c,0); cr=laRightColumn(c,0);
  257. laSplitColumn(uil,cr,0.4); crl=laLeftColumn(cr,0); crr=laRightColumn(cr,0);
  258. laSplitColumn(uil,crr,0.6); rc=laLeftColumn(crr,10); vc=laRightColumn(crr,0);
  259. laSplitColumn(uil,rc,0.4); rcl=laLeftColumn(rc,2); rcr=laRightColumn(rc,0);
  260. laUiItem* b,*ui,*g; laUiList*gu;
  261. laShowItem(uil,c,This,"base.name")->Flags|=LA_TEXT_ALIGN_CENTER;
  262. b=laBeginRow(uil,c,0,0);
  263. laShowItem(uil,c,This,"base.user_assigned_id");
  264. laUiItem* b1=laOnConditionThat(uil,c,laPropExpression(This,"base.error"));{
  265. laShowLabel(uil,c,"Device error.",0,0)->Expand=1;
  266. }laElse(uil,b1);{
  267. laShowItem(uil,c,This,"base.path")->Expand=1;
  268. }laEndCondition(uil,b1);
  269. laEndRow(uil,b);
  270. laShowSeparator(uil,c);
  271. laShowItem(uil,cl,This,"pinky_up");
  272. laShowItem(uil,cl,This,"pinky_dn");
  273. laShowSeparator(uil,cl);
  274. laShowItem(uil,cl,This,"dial_fwd");
  275. laShowItem(uil,cl,This,"dial_back");
  276. b=laBeginRow(uil,crl,0,0);
  277. ui=laShowItem(uil,crl,This,"bi");ui->Expand=1;
  278. ui=laShowItem(uil,crl,This,"bh");ui->Expand=1;
  279. laEndRow(uil,b);
  280. b=laBeginRow(uil,crl,0,0);
  281. ui=laShowItem(uil,crl,This,"thr1");ui->Expand=1;ui->Extra->HeightCoeff=10;ui->Flags|=LA_UI_FLAGS_TRANSPOSE;
  282. laShowCompoundValue(ui,LA_SLOT_MARKER_1,This,"thr1_min");
  283. laShowCompoundValue(ui,LA_SLOT_MARKER_2,This,"thr1_max");
  284. ui=laShowItem(uil,crl,This,"thr2");ui->Expand=1;ui->Extra->HeightCoeff=10;ui->Flags|=LA_UI_FLAGS_TRANSPOSE;
  285. laShowCompoundValue(ui,LA_SLOT_MARKER_1,This,"thr2_min");
  286. laShowCompoundValue(ui,LA_SLOT_MARKER_2,This,"thr2_max");
  287. laEndRow(uil,b);
  288. b=laBeginRow(uil,crl,0,0);
  289. laShowItem(uil,crl,This,"thr1_min")->Flags|=LA_UI_FLAGS_KNOB; laShowItem(uil,crl,This,"thr1_max")->Flags|=LA_UI_FLAGS_KNOB;
  290. laShowSeparator(uil,crl)->Expand=1;
  291. laShowItem(uil,crl,This,"thr2_min")->Flags|=LA_UI_FLAGS_KNOB; laShowItem(uil,crl,This,"thr2_max")->Flags|=LA_UI_FLAGS_KNOB;
  292. laEndRow(uil,b);
  293. laShowItem(uil,rcl,This,"bf");
  294. laShowItem(uil,rcr,This,"wf");
  295. laShowItem(uil,rcl,This,"bg");
  296. laShowItem(uil,rcr,This,"wg");
  297. laShowSeparator(uil,cl);
  298. laShowItem(uil,rcl,This,"slider");
  299. laShowSeparator(uil,rcl);
  300. laShowItem(uil,rcl,This,"be");
  301. laShowItem(uil,rcl,This,"bball");
  302. laShowItem(uil,rcr,This,"ball");
  303. laShowItem(uil,rc,This,"h3")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  304. laShowItem(uil,rc,This,"h4")->Flags|=LA_UI_FLAGS_TRANSPOSE;
  305. laShowItem(uil,vc,This,"t4_up");
  306. laShowItem(uil,vc,This,"t4_dn"); laShowSeparator(uil,vc);
  307. laShowItem(uil,vc,This,"t3_up");
  308. laShowItem(uil,vc,This,"t3_dn"); laShowSeparator(uil,vc);
  309. laShowItem(uil,vc,This,"t2_up");
  310. laShowItem(uil,vc,This,"t2_dn"); laShowSeparator(uil,vc);
  311. laShowItem(uil,vc,This,"t1_up");
  312. laShowItem(uil,vc,This,"t1_dn"); laShowSeparator(uil,vc);
  313. laShowItem(uil,vc,This,"r3");
  314. laShowItem(uil,vc,This,"r4");
  315. laShowSeparator(uil,c);
  316. laShowLabel(uil,cl,"Mode",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  317. laShowItem(uil,cl,This,"mode");
  318. laShowLabel(uil,cr,"Switches",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  319. b=laBeginRow(uil,cr,0,0);
  320. laShowItem(uil,cr,This,"sw1")->Expand=1;
  321. laShowItem(uil,cr,This,"sw3")->Expand=1;
  322. laShowItem(uil,cr,This,"sw5")->Expand=1;
  323. laEndRow(uil,b);
  324. b=laBeginRow(uil,cr,0,0);
  325. laShowItem(uil,cr,This,"sw2")->Expand=1;
  326. laShowItem(uil,cr,This,"sw4")->Expand=1;
  327. laShowItem(uil,cr,This,"sw6")->Expand=1;
  328. laEndRow(uil,b);
  329. }
  330. void laui_X56Stick(laUiList *uil, laPropPack *This, laPropPack *Extra, laColumn *UNUSED, int context){
  331. laColumn* c=laFirstColumn(uil),*cl, *cc, *cr;
  332. laSplitColumn(uil,c,0.2); cl=laLeftColumn(c,10); cr=laRightColumn(c,0);
  333. laSplitColumn(uil,cr,0.8); cc=laLeftColumn(cr,0); cr=laRightColumn(cr,10);
  334. laUiItem* b;
  335. laShowItem(uil,c,This,"base.name")->Flags|=LA_TEXT_ALIGN_CENTER;
  336. b=laBeginRow(uil,c,0,0);
  337. laShowItem(uil,c,This,"base.user_assigned_id");
  338. laUiItem* b1=laOnConditionThat(uil,c,laPropExpression(This,"base.error"));{
  339. laShowLabel(uil,c,"Device error.",0,0)->Expand=1;
  340. }laElse(uil,b1);{
  341. laShowItem(uil,c,This,"base.path")->Expand=1;
  342. }laEndCondition(uil,b1);
  343. laEndRow(uil,b);
  344. laShowSeparator(uil,c);
  345. laShowItem(uil,cl,This,"ba");
  346. laShowItem(uil,cl,This,"pov");
  347. laShowSeparator(uil,cl);
  348. laShowLabel(uil,cl,"Thumb",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  349. laShowItem(uil,cl,This,"bc");
  350. laShowItem(uil,cl,This,"ball");
  351. laShowSeparator(uil,cl);
  352. laShowLabel(uil,cl,"Pinky",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  353. laShowItem(uil,cl,This,"pinkyl");
  354. laShowItem(uil,cl,This,"pinky");
  355. laShowItem(uil,cr,This,"bb");
  356. laShowSeparator(uil,cr);
  357. laShowItem(uil,cc,This,"trigger");
  358. laShowItem(uil,cc,This,"stick");
  359. laShowItem(uil,cc,This,"rudder");
  360. laShowLabel(uil,cr,"H1",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  361. laShowItem(uil,cr,This,"h1");
  362. laShowSeparator(uil,cr);
  363. laShowLabel(uil,cr,"H2",0,0)->Flags|=LA_TEXT_ALIGN_CENTER;
  364. laShowItem(uil,cr,This,"h2");
  365. }