Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

871 lines
25 KiB

  1. module CDrillingConsole
  2. use CDrillingConsoleVariables
  3. use CSimulationVariables
  4. use CLog4
  5. use CLog3
  6. implicit none
  7. public
  8. contains
  9. ! Input routines
  10. subroutine SetAssignmentSwitch(v)
  11. !DEC$ ATTRIBUTES DLLEXPORT :: SetAssignmentSwitch
  12. !DEC$ ATTRIBUTES ALIAS: 'SetAssignmentSwitch' :: SetAssignmentSwitch
  13. implicit none
  14. integer, intent(in) :: v
  15. AssignmentSwitch = v
  16. #ifdef deb
  17. call Log_4( 'AssignmentSwitch=', AssignmentSwitch)
  18. #endif
  19. end subroutine
  20. subroutine SetEmergencySwitch(v)
  21. !DEC$ ATTRIBUTES DLLEXPORT :: SetEmergencySwitch
  22. !DEC$ ATTRIBUTES ALIAS: 'SetEmergencySwitch' :: SetEmergencySwitch
  23. implicit none
  24. logical, intent(in) :: v
  25. EmergencySwitch = v
  26. #ifdef deb
  27. print*, 'EmergencySwitch=', EmergencySwitch
  28. #endif
  29. end subroutine
  30. subroutine SetRTTorqueLimitKnob(v)
  31. !DEC$ ATTRIBUTES DLLEXPORT :: SetRTTorqueLimitKnob
  32. !DEC$ ATTRIBUTES ALIAS: 'SetRTTorqueLimitKnob' :: SetRTTorqueLimitKnob
  33. implicit none
  34. real*8, intent(in) :: v
  35. RTTorqueLimitKnob = v
  36. #ifdef deb
  37. print*, 'RTTorqueLimitKnob=', RTTorqueLimitKnob
  38. #endif
  39. end subroutine
  40. subroutine SetMP1CPSwitch(v)
  41. !DEC$ ATTRIBUTES DLLEXPORT :: SetMP1CPSwitch
  42. !DEC$ ATTRIBUTES ALIAS: 'SetMP1CPSwitch' :: SetMP1CPSwitch
  43. implicit none
  44. integer, intent(in) :: v
  45. if(MP1CPSwitch == v) return
  46. if(SimulationState == SimulationState_Started) then
  47. MP1CPSwitchI = MP1CPSwitchI + 1
  48. if(MP1CPSwitchI >= 1) MP1CPSwitch = v
  49. if(MP1CPSwitchI >= 100) MP1CPSwitchI = 1
  50. !call Log_3( "MP1CPSwitchI=", MP1CPSwitchI)
  51. !call Log_3( "MP1CPSwitch=", MP1CPSwitch)
  52. !MP1CPSwitch = v
  53. endif
  54. ! if(SimulationState == SimulationState_Started) then
  55. ! !call Log_3( 'MP1CPSwitc(s)h=', MP1CPSwitch)
  56. ! if(MP1CPSwitchT /= v) then
  57. ! MP1CPSwitchT = v
  58. ! MP1CPSwitch = v
  59. !#ifdef deb
  60. ! !print*, 'MP1CPSwitch=', MP1CPSwitch
  61. ! !call Log_3( 'MP1CPSwitch=', MP1CPSwitch)
  62. !#endif
  63. ! endif
  64. ! else
  65. ! MP1CPSwitchT = v
  66. ! endif
  67. end subroutine
  68. subroutine SetMP1Throttle(v)
  69. !DEC$ ATTRIBUTES DLLEXPORT :: SetMP1Throttle
  70. !DEC$ ATTRIBUTES ALIAS: 'SetMP1Throttle' :: SetMP1Throttle
  71. implicit none
  72. real*8, intent(in) :: v
  73. if(MP1Throttle == v) return
  74. if(SimulationState == SimulationState_Started) then
  75. if( abs(v - MP1Throttle) > 0.1) MP1ThrottleUpdate = .true.
  76. if(MP1ThrottleUpdate) MP1Throttle = v
  77. !call Log_3( 'v-mp1=', v)
  78. !call Log_3( 'MP1Throttle=', MP1Throttle)
  79. !call Log_3( 'MP1ThrottleUpdate=', MP1ThrottleUpdate)
  80. !MP1Throttle = v
  81. endif
  82. #ifdef deb
  83. print*, 'MP1Throttle=', MP1Throttle
  84. #endif
  85. end subroutine
  86. subroutine SetMP2Switch(v)
  87. !DEC$ ATTRIBUTES DLLEXPORT :: SetMP2Switch
  88. !DEC$ ATTRIBUTES ALIAS: 'SetMP2Switch' :: SetMP2Switch
  89. implicit none
  90. logical, intent(in) :: v
  91. !call Log_3( 'v=', MP2SwitchT)
  92. if(MP2Switch == v) return
  93. if(SimulationState == SimulationState_Started) then
  94. MP2SwitchI = MP2SwitchI + 1
  95. if(MP2SwitchI >= 1) MP2Switch = v
  96. if(MP2SwitchI >= 100) MP2SwitchI = 1
  97. !call Log_3( "MP1CPSwitchI=", MP1CPSwitchI)
  98. !call Log_3( "MP2Switch=", MP2Switch)
  99. !MP2Switch = v
  100. endif
  101. ! if(SimulationState == SimulationState_Started) then
  102. ! !call Log_3( 'MP2Switch(s)=', MP2Switch)
  103. ! if(MP2SwitchT /= v) then
  104. ! MP2SwitchT = v
  105. ! MP2Switch = v
  106. !#ifdef deb
  107. ! !print*, 'MP2Switch=', MP2Switch
  108. ! !call Log_3( 'MP2Switch=', MP2Switch)
  109. !#endif
  110. ! endif
  111. ! else
  112. ! MP2SwitchT = v
  113. ! !call Log_3( 'MP2SwitchTMP2SwitchTMP2SwitchT=', MP2SwitchT)
  114. ! endif
  115. end subroutine
  116. subroutine SetMP2Throttle(v)
  117. !DEC$ ATTRIBUTES DLLEXPORT :: SetMP2Throttle
  118. !DEC$ ATTRIBUTES ALIAS: 'SetMP2Throttle' :: SetMP2Throttle
  119. implicit none
  120. real*8, intent(in) :: v
  121. if(MP2Throttle == v) return
  122. if(SimulationState == SimulationState_Started) then
  123. if( abs(v - MP2Throttle) > 0.1) MP2ThrottleUpdate = .true.
  124. if(MP2ThrottleUpdate) MP2Throttle = v
  125. !call Log_3( 'v-mp2=', v)
  126. !call Log_3( 'MP2Throttle=', MP2Throttle)
  127. !call Log_3( 'MP2ThrottleUpdate=', MP2ThrottleUpdate)
  128. !MP2Throttle = v
  129. endif
  130. #ifdef deb
  131. print*, 'MP2Throttle=', MP2Throttle
  132. #endif
  133. end subroutine
  134. subroutine SetDWSwitch(v)
  135. !DEC$ ATTRIBUTES DLLEXPORT :: SetDWSwitch
  136. !DEC$ ATTRIBUTES ALIAS: 'SetDWSwitch' :: SetDWSwitch
  137. implicit none
  138. integer, intent(in) :: v
  139. DWSwitch = v
  140. #ifdef deb
  141. print*, 'DWSwitch=', DWSwitch
  142. #endif
  143. end subroutine
  144. subroutine SetDWThrottle(v)
  145. !DEC$ ATTRIBUTES DLLEXPORT :: SetDWThrottle
  146. !DEC$ ATTRIBUTES ALIAS: 'SetDWThrottle' :: SetDWThrottle
  147. implicit none
  148. real*8, intent(in) :: v
  149. DWThrottle = v
  150. #ifdef deb
  151. print*, 'DWThrottle=', DWThrottle
  152. #endif
  153. end subroutine
  154. subroutine SetRTSwitch(v)
  155. !DEC$ ATTRIBUTES DLLEXPORT :: SetRTSwitch
  156. !DEC$ ATTRIBUTES ALIAS: 'SetRTSwitch' :: SetRTSwitch
  157. implicit none
  158. integer, intent(in) :: v
  159. RTSwitch = v
  160. #ifdef deb
  161. print*, 'RTSwitch=', RTSwitch
  162. #endif
  163. end subroutine
  164. subroutine SetRTThrottle(v)
  165. !DEC$ ATTRIBUTES DLLEXPORT :: SetRTThrottle
  166. !DEC$ ATTRIBUTES ALIAS: 'SetRTThrottle' :: SetRTThrottle
  167. implicit none
  168. real*8, intent(in) :: v
  169. RTThrottle = v
  170. #ifdef deb
  171. print*, 'RTThrottle=', RTThrottle
  172. #endif
  173. end subroutine
  174. subroutine SetDWBreak(v)
  175. !DEC$ ATTRIBUTES DLLEXPORT :: SetDWBreak
  176. !DEC$ ATTRIBUTES ALIAS: 'SetDWBreak' :: SetDWBreak
  177. implicit none
  178. real*8, intent(in) :: v
  179. !if(ForceBreak) return
  180. PreviousDWBreak = DWBreak
  181. DWBreak = v
  182. #ifdef deb
  183. print*, 'DWBreak=', DWBreak
  184. #endif
  185. end subroutine
  186. subroutine SetDWAcceleretor(v)
  187. !DEC$ ATTRIBUTES DLLEXPORT :: SetDWAcceleretor
  188. !DEC$ ATTRIBUTES ALIAS: 'SetDWAcceleretor' :: SetDWAcceleretor
  189. implicit none
  190. real*8, intent(in) :: v
  191. DWAcceleretor = v
  192. #ifdef deb
  193. print*, 'DWAcceleretor=', DWAcceleretor
  194. #endif
  195. end subroutine
  196. subroutine SetDWTransmisionLever(v)
  197. !DEC$ ATTRIBUTES DLLEXPORT :: SetDWTransmisionLever
  198. !DEC$ ATTRIBUTES ALIAS: 'SetDWTransmisionLever' :: SetDWTransmisionLever
  199. implicit none
  200. real*8, intent(in) :: v
  201. DWTransmisionLever = v
  202. #ifdef deb
  203. print*, 'DWTransmisionLever=', DWTransmisionLever
  204. #endif
  205. end subroutine
  206. subroutine SetDWPowerLever(v)
  207. !DEC$ ATTRIBUTES DLLEXPORT :: SetDWPowerLever
  208. !DEC$ ATTRIBUTES ALIAS: 'SetDWPowerLever' :: SetDWPowerLever
  209. implicit none
  210. real*8, intent(in) :: v
  211. DWPowerLever = v
  212. #ifdef deb
  213. print*, 'DWPowerLever=', DWPowerLever
  214. #endif
  215. end subroutine
  216. subroutine SetTongLever(v)
  217. !DEC$ ATTRIBUTES DLLEXPORT :: SetTongLever
  218. !DEC$ ATTRIBUTES ALIAS: 'SetTongLever' :: SetTongLever
  219. implicit none
  220. real*8, intent(in) :: v
  221. if (TongLever == v) return
  222. TongLever = v
  223. ! if(dint(TongLever) == 1.0) then
  224. ! call OnBreakoutLeverPress%RunAll()
  225. ! #ifdef deb
  226. ! print*, 'OnBreakoutLeverPress=', size(OnBreakoutLeverPress%Delegates)
  227. ! #endif
  228. ! endif
  229. ! if(dint(TongLever) == -1.0) then
  230. ! call OnMakeupLeverPress%RunAll()
  231. ! #ifdef deb
  232. ! print*, 'OnMakeupPress=', size(OnMakeupLeverPress%Delegates)
  233. ! #endif
  234. ! endif
  235. ! if(dint(TongLever) == 0.0) then
  236. ! call OnTongNeutralPress%RunAll()
  237. ! #ifdef deb
  238. ! print*, 'OnTongNeutralPress=', size(OnTongNeutralPress%Delegates)
  239. ! #endif
  240. ! endif
  241. #ifdef deb
  242. print*, 'TongLever=', TongLever
  243. #endif
  244. end subroutine
  245. subroutine SetRTTransmissionLever(v)
  246. !DEC$ ATTRIBUTES DLLEXPORT :: SetRTTransmissionLever
  247. !DEC$ ATTRIBUTES ALIAS: 'SetRTTransmissionLever' :: SetRTTransmissionLever
  248. implicit none
  249. real*8, intent(in) :: v
  250. RTTransmissionLever = v
  251. #ifdef deb
  252. print*, 'RTTransmissionLever=', RTTransmissionLever
  253. #endif
  254. end subroutine
  255. subroutine SetDWClutchLever(v)
  256. !DEC$ ATTRIBUTES DLLEXPORT :: SetDWClutchLever
  257. !DEC$ ATTRIBUTES ALIAS: 'SetDWClutchLever' :: SetDWClutchLever
  258. implicit none
  259. real*8, intent(in) :: v
  260. DWClutchLever = v
  261. #ifdef deb
  262. print*, 'DWClutchLever=', DWClutchLever
  263. #endif
  264. end subroutine
  265. subroutine SetEddyBreakLever(v)
  266. !DEC$ ATTRIBUTES DLLEXPORT :: SetEddyBreakLever
  267. !DEC$ ATTRIBUTES ALIAS: 'SetEddyBreakLever' :: SetEddyBreakLever
  268. implicit none
  269. real*8, intent(in) :: v
  270. EddyBreakLever = v
  271. #ifdef deb
  272. print*, 'EddyBreakLever=', EddyBreakLever
  273. #endif
  274. end subroutine
  275. subroutine SetAutoDW(v)
  276. !DEC$ ATTRIBUTES DLLEXPORT :: SetAutoDW
  277. !DEC$ ATTRIBUTES ALIAS: 'SetAutoDW' :: SetAutoDW
  278. implicit none
  279. logical, intent(in) :: v
  280. AutoDW = v
  281. #ifdef deb
  282. print*, 'AutoDW=', AutoDW
  283. #endif
  284. end subroutine
  285. subroutine SetGEN1(v)
  286. !DEC$ ATTRIBUTES DLLEXPORT :: SetGEN1
  287. !DEC$ ATTRIBUTES ALIAS: 'SetGEN1' :: SetGEN1
  288. implicit none
  289. logical, intent(in) :: v
  290. GEN1 = v
  291. #ifdef deb
  292. print*, 'GEN1=', GEN1
  293. #endif
  294. end subroutine
  295. subroutine SetGEN2(v)
  296. !DEC$ ATTRIBUTES DLLEXPORT :: SetGEN2
  297. !DEC$ ATTRIBUTES ALIAS: 'SetGEN2' :: SetGEN2
  298. implicit none
  299. logical, intent(in) :: v
  300. GEN2 = v
  301. #ifdef deb
  302. print*, 'GEN2=', GEN2
  303. #endif
  304. end subroutine
  305. subroutine SetGEN3(v)
  306. !DEC$ ATTRIBUTES DLLEXPORT :: SetGEN3
  307. !DEC$ ATTRIBUTES ALIAS: 'SetGEN3' :: SetGEN3
  308. implicit none
  309. logical, intent(in) :: v
  310. GEN3 = v
  311. #ifdef deb
  312. print*, 'GEN3=', GEN3
  313. #endif
  314. end subroutine
  315. subroutine SetGEN4(v)
  316. !DEC$ ATTRIBUTES DLLEXPORT :: SetGEN4
  317. !DEC$ ATTRIBUTES ALIAS: 'SetGEN4' :: SetGEN4
  318. implicit none
  319. logical, intent(in) :: v
  320. GEN4 = v
  321. #ifdef deb
  322. print*, 'GEN4=', GEN4
  323. #endif
  324. end subroutine
  325. ! subroutine SetInstallSafetyValve(v)
  326. ! !DEC$ ATTRIBUTES DLLEXPORT :: SetInstallSafetyValve
  327. ! !DEC$ ATTRIBUTES ALIAS: 'SetInstallSafetyValve' :: SetInstallSafetyValve
  328. ! implicit none
  329. ! logical, intent(in) :: v
  330. ! InstallSafetyValve = v
  331. !#ifdef deb
  332. ! print*, 'InstallSafetyValve=', InstallSafetyValve
  333. !#endif
  334. ! end subroutine
  335. !
  336. ! subroutine SetOpenSafetyValve(v)
  337. ! !DEC$ ATTRIBUTES DLLEXPORT :: SetOpenSafetyValve
  338. ! !DEC$ ATTRIBUTES ALIAS: 'SetOpenSafetyValve' :: SetOpenSafetyValve
  339. ! implicit none
  340. ! logical, intent(in) :: v
  341. ! OpenSafetyValve = v
  342. !#ifdef deb
  343. ! print*, 'OpenSafetyValve=', OpenSafetyValve
  344. !#endif
  345. ! end subroutine
  346. !
  347. ! subroutine SetRemoveSafetyValve(v)
  348. ! !DEC$ ATTRIBUTES DLLEXPORT :: SetRemoveSafetyValve
  349. ! !DEC$ ATTRIBUTES ALIAS: 'SetRemoveSafetyValve' :: SetRemoveSafetyValve
  350. ! implicit none
  351. ! logical, intent(in) :: v
  352. ! RemoveSafetyValve = v
  353. !#ifdef deb
  354. ! print*, 'RemoveSafetyValve=', RemoveSafetyValve
  355. !#endif
  356. ! end subroutine
  357. !
  358. ! subroutine SetCloseSafetyValve(v)
  359. ! !DEC$ ATTRIBUTES DLLEXPORT :: SetCloseSafetyValve
  360. ! !DEC$ ATTRIBUTES ALIAS: 'SetCloseSafetyValve' :: SetCloseSafetyValve
  361. ! implicit none
  362. ! logical, intent(in) :: v
  363. ! CloseSafetyValve = v
  364. !#ifdef deb
  365. ! print*, 'CloseSafetyValve=', CloseSafetyValve
  366. !#endif
  367. ! end subroutine
  368. !
  369. ! subroutine SetMakeJoint(v)
  370. ! !DEC$ ATTRIBUTES DLLEXPORT :: SetMakeJoint
  371. ! !DEC$ ATTRIBUTES ALIAS: 'SetMakeJoint' :: SetMakeJoint
  372. ! implicit none
  373. ! logical, intent(in) :: v
  374. ! MakeJoint = v
  375. !#ifdef deb
  376. ! print*, 'MakeJoint=', MakeJoint
  377. !#endif
  378. ! end subroutine
  379. !
  380. ! subroutine SetBreakJoint(v)
  381. ! !DEC$ ATTRIBUTES DLLEXPORT :: SetBreakJoint
  382. ! !DEC$ ATTRIBUTES ALIAS: 'SetBreakJoint' :: SetBreakJoint
  383. ! implicit none
  384. ! logical, intent(in) :: v
  385. ! BreakJoint = v
  386. !#ifdef deb
  387. ! print*, 'BreakJoint=', BreakJoint
  388. !#endif
  389. ! end subroutine
  390. subroutine SetOpenKellyCock(v)
  391. !DEC$ ATTRIBUTES DLLEXPORT :: SetOpenKellyCock
  392. !DEC$ ATTRIBUTES ALIAS: 'SetOpenKellyCock' :: SetOpenKellyCock
  393. use CManifolds, OpenKellyCockSub => OpenKellyCock
  394. implicit none
  395. logical, intent(in) :: v
  396. if (OpenKellyCock == v) return
  397. OpenKellyCock = v
  398. ! if (v) call OnOpenKellyCockPress%RunAll()
  399. if(v .and. Permission_OpenKellyCock) call OpenKellyCockSub()
  400. #ifdef deb
  401. print*, 'OpenKellyCock=', OpenKellyCock
  402. #endif
  403. end subroutine
  404. subroutine SetCloseKellyCock(v)
  405. !DEC$ ATTRIBUTES DLLEXPORT :: SetCloseKellyCock
  406. !DEC$ ATTRIBUTES ALIAS: 'SetCloseKellyCock' :: SetCloseKellyCock
  407. use CManifolds, CloseKellyCockSub => CloseKellyCock
  408. implicit none
  409. logical, intent(in) :: v
  410. if (CloseKellyCock == v) return
  411. CloseKellyCock = v
  412. ! if (v) call OnCloseKellyCockPress%RunAll()
  413. if(v .and. Permission_CloseKellyCock) call CloseKellyCockSub()
  414. #ifdef deb
  415. print*, 'CloseKellyCock=', CloseKellyCock
  416. #endif
  417. end subroutine
  418. subroutine SetOpenSafetyValve(v)
  419. !DEC$ ATTRIBUTES DLLEXPORT :: SetOpenSafetyValve
  420. !DEC$ ATTRIBUTES ALIAS: 'SetOpenSafetyValve' :: SetOpenSafetyValve
  421. !use CManifolds, OpenSafetyValveSub => OpenSafetyValve
  422. implicit none
  423. logical, intent(in) :: v
  424. if (OpenSafetyValve == v) return
  425. OpenSafetyValve = v
  426. ! if (v) call OnOpenSafetyValvePress%RunAll()
  427. !if(v .and. Permission_OpenSafetyValve) call OpenSafetyValveSub()
  428. #ifdef deb
  429. print*, 'OpenSafetyValve=', OpenSafetyValve
  430. #endif
  431. end subroutine
  432. subroutine SetCloseSafetyValve(v)
  433. !DEC$ ATTRIBUTES DLLEXPORT :: SetCloseSafetyValve
  434. !DEC$ ATTRIBUTES ALIAS: 'SetCloseSafetyValve' :: SetCloseSafetyValve
  435. !use CManifolds, CloseSafetyValveSub => CloseSafetyValve
  436. implicit none
  437. logical, intent(in) :: v
  438. if (CloseSafetyValve == v) return
  439. CloseSafetyValve = v
  440. ! if (v) call OnCloseSafetyValvePress%RunAll()
  441. !if(v .and. Permission_CloseSafetyValve) call CloseSafetyValveSub()
  442. #ifdef deb
  443. print*, 'CloseSafetyValve=', CloseSafetyValve
  444. #endif
  445. end subroutine
  446. subroutine SetIRSafetyValve(v)
  447. !DEC$ ATTRIBUTES DLLEXPORT :: SetIRSafetyValve
  448. !DEC$ ATTRIBUTES ALIAS: 'SetIRSafetyValve' :: SetIRSafetyValve
  449. use CManifolds
  450. implicit none
  451. logical, intent(in) :: v
  452. logical :: prev
  453. if (IRSafetyValve == v) return
  454. prev = IRSafetyValve
  455. IRSafetyValve = v
  456. ! if (v) call OnIRSafetyValvePress%RunAll()
  457. !if(prev /= IRSafetyValve .and. v .and. Permission_IRSafetyValve) call ToggleSafetyValve()
  458. !if(prev /= IRSafetyValve .and. v) call ToggleSafetyValve()
  459. #ifdef deb
  460. print*, 'IRSafetyValve=', IRSafetyValve
  461. #endif
  462. end subroutine
  463. subroutine SetIRIBop(v)
  464. !DEC$ ATTRIBUTES DLLEXPORT :: SetIRIBop
  465. !DEC$ ATTRIBUTES ALIAS: 'SetIRIBop' :: SetIRIBop
  466. use CManifolds
  467. implicit none
  468. logical, intent(in) :: v
  469. logical :: prev
  470. if (IRIBop == v) return
  471. prev = IRIBop
  472. IRIBop = v
  473. ! if (v) call OnIRIBopPress%RunAll()
  474. !if(prev /= IRIBop .and. v .and. Permission_IRIBop) call ToggleIBop()
  475. !if(prev /= IRIBop .and. v) call ToggleIBop()
  476. #ifdef deb
  477. print*, 'IRIBop=', IRIBop
  478. #endif
  479. end subroutine
  480. subroutine SetLatchPipe(v)
  481. !DEC$ ATTRIBUTES DLLEXPORT :: SetLatchPipe
  482. !DEC$ ATTRIBUTES ALIAS: 'SetLatchPipe' :: SetLatchPipe
  483. implicit none
  484. logical, intent(in) :: v
  485. if (LatchPipe .eqv. v) return
  486. LatchPipe = v
  487. ! if (v) call OnLatchPipePress%RunAll()
  488. #ifdef deb
  489. print*, 'LatchPipe=', LatchPipe
  490. #endif
  491. end subroutine
  492. subroutine SetUnlatchPipe(v)
  493. !DEC$ ATTRIBUTES DLLEXPORT :: SetUnlatchPipe
  494. !DEC$ ATTRIBUTES ALIAS: 'SetUnlatchPipe' :: SetUnlatchPipe
  495. implicit none
  496. logical, intent(in) :: v
  497. if (UnlatchPipe .eqv. v) return
  498. UnlatchPipe = v
  499. ! if (v) call OnUnlatchPipePress%RunAll()
  500. #ifdef deb
  501. print*, 'UnlatchPipe=', UnlatchPipe
  502. #endif
  503. end subroutine
  504. subroutine SetSwing(v)
  505. !DEC$ ATTRIBUTES DLLEXPORT :: SetSwing
  506. !DEC$ ATTRIBUTES ALIAS: 'SetSwing' :: SetSwing
  507. implicit none
  508. logical, intent(in) :: v
  509. if (Swing .eqv. v) return
  510. Swing = v
  511. ! if (v) call OnSwingPress%RunAll()
  512. #ifdef deb
  513. print*, 'Swing=', Swing
  514. #endif
  515. end subroutine
  516. subroutine SetFillMouseHole(v)
  517. !DEC$ ATTRIBUTES DLLEXPORT :: SetFillMouseHole
  518. !DEC$ ATTRIBUTES ALIAS: 'SetFillMouseHole' :: SetFillMouseHole
  519. implicit none
  520. logical, intent(in) :: v
  521. if (FillMouseHole .eqv. v) return
  522. FillMouseHole = v
  523. ! if (v) call OnFillMouseHolePress%RunAll()
  524. #ifdef deb
  525. print*, 'FillMouseHole=', FillMouseHole
  526. #endif
  527. end subroutine
  528. subroutine SetSlips(v)
  529. !DEC$ ATTRIBUTES DLLEXPORT :: SetSlips
  530. !DEC$ ATTRIBUTES ALIAS: 'SetSlips' :: SetSlips
  531. implicit none
  532. logical, intent(in) :: v
  533. if (Slips .eqv. v) return
  534. Slips = v
  535. #ifdef deb
  536. print*, 'Slips=', Slips
  537. #endif
  538. ! if (v) call OnSlipsPress%RunAll()
  539. end subroutine
  540. subroutine SetBrakeLeverCoefficient(v)
  541. !DEC$ ATTRIBUTES DLLEXPORT :: SetBrakeLeverCoefficient
  542. !DEC$ ATTRIBUTES ALIAS: 'SetBrakeLeverCoefficient' :: SetBrakeLeverCoefficient
  543. implicit none
  544. real, intent(in) :: v
  545. BrakeLeverCoefficient = v
  546. #ifdef deb
  547. print*, 'BrakeLeverCoefficient=', BrakeLeverCoefficient
  548. #endif
  549. end subroutine
  550. subroutine SetHideDrillingBrake(v)
  551. !DEC$ ATTRIBUTES DLLEXPORT :: SetHideDrillingBrake
  552. !DEC$ ATTRIBUTES ALIAS: 'SetHideDrillingBrake' :: SetHideDrillingBrake
  553. implicit none
  554. logical, intent(in) :: v
  555. HideDrillingBrake = v
  556. #ifdef deb
  557. print*, 'HideDrillingBrake=', HideDrillingBrake
  558. #endif
  559. end subroutine
  560. subroutine SetParkingBrake(v)
  561. !DEC$ ATTRIBUTES DLLEXPORT :: SetParkingBrake
  562. !DEC$ ATTRIBUTES ALIAS: 'SetParkingBrake' :: SetParkingBrake
  563. implicit none
  564. logical, intent(in) :: v
  565. ParkingBrakeBtn = v
  566. #ifdef deb
  567. print*, 'ParkingBrakeBtn=', ParkingBrakeBtn
  568. #endif
  569. end subroutine
  570. ! Output routines
  571. logical function GetParkingBrakeLed()
  572. !DEC$ ATTRIBUTES DLLEXPORT :: GetParkingBrakeLed
  573. !DEC$ ATTRIBUTES ALIAS: 'GetParkingBrakeLed' :: GetParkingBrakeLed
  574. implicit none
  575. GetParkingBrakeLed = ParkingBrakeLed
  576. !GetParkingBrakeLed = .true.
  577. end function
  578. integer function GetGEN1LED()
  579. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN1LED
  580. !DEC$ ATTRIBUTES ALIAS: 'GetGEN1LED' :: GetGEN1LED
  581. implicit none
  582. GetGEN1LED = 1
  583. !GetGEN1LED = GEN1LED
  584. end function
  585. integer function GetGEN2LED()
  586. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN2LED
  587. !DEC$ ATTRIBUTES ALIAS: 'GetGEN2LED' :: GetGEN2LED
  588. implicit none
  589. GetGEN2LED = 1
  590. !GetGEN2LED = GEN2LED
  591. end function
  592. integer function GetGEN3LED()
  593. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN3LED
  594. !DEC$ ATTRIBUTES ALIAS: 'GetGEN3LED' :: GetGEN3LED
  595. implicit none
  596. GetGEN3LED = 1
  597. !GetGEN3LED = GEN3LED
  598. end function
  599. integer function GetGEN4LED()
  600. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN4LED
  601. !DEC$ ATTRIBUTES ALIAS: 'GetGEN4LED' :: GetGEN4LED
  602. implicit none
  603. GetGEN4LED = 1
  604. !GetGEN4LED = GEN4LED
  605. end function
  606. integer function GetSCR1LED()
  607. !DEC$ ATTRIBUTES DLLEXPORT :: GetSCR1LED
  608. !DEC$ ATTRIBUTES ALIAS: 'GetSCR1LED' :: GetSCR1LED
  609. implicit none
  610. GetSCR1LED = SCR1LED
  611. end function
  612. integer function GetSCR2LED()
  613. !DEC$ ATTRIBUTES DLLEXPORT :: GetSCR2LED
  614. !DEC$ ATTRIBUTES ALIAS: 'GetSCR2LED' :: GetSCR2LED
  615. implicit none
  616. GetSCR2LED = SCR2LED
  617. end function
  618. integer function GetSCR3LED()
  619. !DEC$ ATTRIBUTES DLLEXPORT :: GetSCR3LED
  620. !DEC$ ATTRIBUTES ALIAS: 'GetSCR3LED' :: GetSCR3LED
  621. implicit none
  622. GetSCR3LED = SCR3LED
  623. end function
  624. integer function GetSCR4LED()
  625. !DEC$ ATTRIBUTES DLLEXPORT :: GetSCR4LED
  626. !DEC$ ATTRIBUTES ALIAS: 'GetSCR4LED' :: GetSCR4LED
  627. implicit none
  628. GetSCR4LED = SCR4LED
  629. end function
  630. integer function GetMP1BLWR()
  631. !DEC$ ATTRIBUTES DLLEXPORT :: GetMP1BLWR
  632. !DEC$ ATTRIBUTES ALIAS: 'GetMP1BLWR' :: GetMP1BLWR
  633. implicit none
  634. GetMP1BLWR = MP1BLWR
  635. end function
  636. integer function GetMP2BLWR()
  637. !DEC$ ATTRIBUTES DLLEXPORT :: GetMP2BLWR
  638. !DEC$ ATTRIBUTES ALIAS: 'GetMP2BLWR' :: GetMP2BLWR
  639. implicit none
  640. GetMP2BLWR = MP2BLWR
  641. end function
  642. integer function GetDWBLWR()
  643. !DEC$ ATTRIBUTES DLLEXPORT :: GetDWBLWR
  644. !DEC$ ATTRIBUTES ALIAS: 'GetDWBLWR' :: GetDWBLWR
  645. implicit none
  646. GetDWBLWR = DWBLWR
  647. end function
  648. integer function GetRTBLWR()
  649. !DEC$ ATTRIBUTES DLLEXPORT :: GetRTBLWR
  650. !DEC$ ATTRIBUTES ALIAS: 'GetRTBLWR' :: GetRTBLWR
  651. implicit none
  652. GetRTBLWR = RTBLWR
  653. end function
  654. integer function GetPWRLIM()
  655. !DEC$ ATTRIBUTES DLLEXPORT :: GetPWRLIM
  656. !DEC$ ATTRIBUTES ALIAS: 'GetPWRLIM' :: GetPWRLIM
  657. implicit none
  658. GetPWRLIM = PWRLIM
  659. end function
  660. real(8) function GetPWRLIMMTR()
  661. !DEC$ ATTRIBUTES DLLEXPORT :: GetPWRLIMMTR
  662. !DEC$ ATTRIBUTES ALIAS: 'GetPWRLIMMTR' :: GetPWRLIMMTR
  663. implicit none
  664. GetPWRLIMMTR = PWRLIMMTR
  665. end function
  666. real(8) function GetRTTorqueLimitGauge()
  667. !DEC$ ATTRIBUTES DLLEXPORT :: GetRTTorqueLimitGauge
  668. !DEC$ ATTRIBUTES ALIAS: 'GetRTTorqueLimitGauge' :: GetRTTorqueLimitGauge
  669. implicit none
  670. GetRTTorqueLimitGauge = RTTorqueLimitGauge
  671. end function
  672. integer function GetAutoDWLED()
  673. !DEC$ ATTRIBUTES DLLEXPORT :: GetAutoDWLED
  674. !DEC$ ATTRIBUTES ALIAS: 'GetAutoDWLED' :: GetAutoDWLED
  675. implicit none
  676. GetAutoDWLED = AutoDWLED
  677. end function
  678. integer function GetGEN1BTNLED()
  679. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN1BTNLED
  680. !DEC$ ATTRIBUTES ALIAS: 'GetGEN1BTNLED' :: GetGEN1BTNLED
  681. implicit none
  682. GetGEN1BTNLED = GEN1BTNLED
  683. end function
  684. integer function GetGEN2BTNLED()
  685. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN2BTNLED
  686. !DEC$ ATTRIBUTES ALIAS: 'GetGEN2BTNLED' :: GetGEN2BTNLED
  687. implicit none
  688. GetGEN2BTNLED = GEN2BTNLED
  689. end function
  690. integer function GetGEN3BTNLED()
  691. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN3BTNLED
  692. !DEC$ ATTRIBUTES ALIAS: 'GetGEN3BTNLED' :: GetGEN3BTNLED
  693. implicit none
  694. GetGEN3BTNLED = GEN3BTNLED
  695. end function
  696. integer function GetGEN4BTNLED()
  697. !DEC$ ATTRIBUTES DLLEXPORT :: GetGEN4BTNLED
  698. !DEC$ ATTRIBUTES ALIAS: 'GetGEN4BTNLED' :: GetGEN4BTNLED
  699. implicit none
  700. GetGEN4BTNLED = GEN4BTNLED
  701. end function
  702. integer function GetOpenKellyCockLed()
  703. !DEC$ ATTRIBUTES DLLEXPORT :: GetOpenKellyCockLed
  704. !DEC$ ATTRIBUTES ALIAS: 'GetOpenKellyCockLed' :: GetOpenKellyCockLed
  705. implicit none
  706. GetOpenKellyCockLed = OpenKellyCockLed
  707. end function
  708. integer function GetCloseKellyCockLed()
  709. !DEC$ ATTRIBUTES DLLEXPORT :: GetCloseKellyCockLed
  710. !DEC$ ATTRIBUTES ALIAS: 'GetCloseKellyCockLed' :: GetCloseKellyCockLed
  711. implicit none
  712. GetCloseKellyCockLed = CloseKellyCockLed
  713. end function
  714. integer function GetOpenSafetyValveLed()
  715. !DEC$ ATTRIBUTES DLLEXPORT :: GetOpenSafetyValveLed
  716. !DEC$ ATTRIBUTES ALIAS: 'GetOpenSafetyValveLed' :: GetOpenSafetyValveLed
  717. implicit none
  718. GetOpenSafetyValveLed = OpenSafetyValveLed
  719. end function
  720. integer function GetCloseSafetyValveLed()
  721. !DEC$ ATTRIBUTES DLLEXPORT :: GetCloseSafetyValveLed
  722. !DEC$ ATTRIBUTES ALIAS: 'GetCloseSafetyValveLed' :: GetCloseSafetyValveLed
  723. implicit none
  724. GetCloseSafetyValveLed = CloseSafetyValveLed
  725. end function
  726. integer function GetIRSafetyValveLed()
  727. !DEC$ ATTRIBUTES DLLEXPORT :: GetIRSafetyValveLed
  728. !DEC$ ATTRIBUTES ALIAS: 'GetIRSafetyValveLed' :: GetIRSafetyValveLed
  729. implicit none
  730. GetIRSafetyValveLed = IRSafetyValveLed
  731. end function
  732. integer function GetIRIBopLed()
  733. !DEC$ ATTRIBUTES DLLEXPORT :: GetIRIBopLed
  734. !DEC$ ATTRIBUTES ALIAS: 'GetIRIBopLed' :: GetIRIBopLed
  735. implicit none
  736. GetIRIBopLed = IRIBopLed
  737. end function
  738. integer function GetLatchPipeLED()
  739. !DEC$ ATTRIBUTES DLLEXPORT :: GetLatchPipeLED
  740. !DEC$ ATTRIBUTES ALIAS: 'GetLatchPipeLED' :: GetLatchPipeLED
  741. implicit none
  742. GetLatchPipeLED = LatchPipeLED
  743. end function
  744. integer function GetUnlatchPipeLED()
  745. !DEC$ ATTRIBUTES DLLEXPORT :: GetUnlatchPipeLED
  746. !DEC$ ATTRIBUTES ALIAS: 'GetUnlatchPipeLED' :: GetUnlatchPipeLED
  747. implicit none
  748. GetUnlatchPipeLED = UnlatchPipeLED
  749. end function
  750. integer function GetSwingLed()
  751. !DEC$ ATTRIBUTES DLLEXPORT :: GetSwingLed
  752. !DEC$ ATTRIBUTES ALIAS: 'GetSwingLed' :: GetSwingLed
  753. implicit none
  754. GetSwingLed = SwingLed
  755. end function
  756. integer function GetFillMouseHoleLed()
  757. !DEC$ ATTRIBUTES DLLEXPORT :: GetFillMouseHoleLed
  758. !DEC$ ATTRIBUTES ALIAS: 'GetFillMouseHoleLed' :: GetFillMouseHoleLed
  759. implicit none
  760. GetFillMouseHoleLed = FillMouseHoleLed
  761. end function
  762. end module CDrillingConsole