fConsoleD.dfm 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. object FormConsole: TFormConsole
  2. Left = 258
  3. Top = 155
  4. Caption = 'Console'
  5. ClientHeight = 417
  6. ClientWidth = 651
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'MS Sans Serif'
  12. Font.Style = []
  13. KeyPreview = True
  14. OnClose = FormClose
  15. OnCreate = FormCreate
  16. OnKeyDown = FormKeyDown
  17. OnKeyPress = FormKeyPress
  18. OnResize = FormResize
  19. TextHeight = 13
  20. object Splitter1: TSplitter
  21. Left = 209
  22. Top = 0
  23. Width = 442
  24. Height = 417
  25. Align = alClient
  26. Beveled = True
  27. MinSize = 40
  28. end
  29. object Viewer: TGLSceneViewer
  30. Left = 209
  31. Top = 0
  32. Width = 442
  33. Height = 417
  34. Camera = GLCamera1
  35. Buffer.BackgroundColor = clMoneyGreen
  36. Buffer.AmbientColor.Color = {9A99993E9A99993E9A99993E0000803F}
  37. FieldOfView = 153.029327392578100000
  38. PenAsTouch = False
  39. Align = alClient
  40. OnMouseDown = ViewerMouseDown
  41. TabOrder = 0
  42. end
  43. object Panel1: TPanel
  44. Left = 0
  45. Top = 0
  46. Width = 209
  47. Height = 417
  48. Align = alLeft
  49. Caption = 'Panel1'
  50. TabOrder = 1
  51. object Splitter2: TSplitter
  52. Left = 1
  53. Top = 233
  54. Width = 207
  55. Height = 183
  56. Align = alClient
  57. end
  58. object GroupBox1: TGroupBox
  59. Left = 1
  60. Top = 233
  61. Width = 207
  62. Height = 183
  63. Align = alClient
  64. Caption = 'Console options'
  65. TabOrder = 0
  66. object Label1: TLabel
  67. Left = 61
  68. Top = 79
  69. Width = 88
  70. Height = 13
  71. Caption = ' Typed Commands'
  72. end
  73. object Label2: TLabel
  74. Left = 69
  75. Top = 102
  76. Width = 73
  77. Height = 13
  78. Caption = 'Console Output'
  79. end
  80. object CheckBox1: TCheckBox
  81. Left = 8
  82. Top = 16
  83. Width = 196
  84. Height = 17
  85. TabStop = False
  86. Caption = 'AutoCompleteCommandsOnKeyPress'
  87. TabOrder = 0
  88. OnClick = CheckBox1Click
  89. OnKeyDown = FormKeyDown
  90. OnKeyPress = FormKeyPress
  91. end
  92. object CheckBox2: TCheckBox
  93. Left = 8
  94. Top = 32
  95. Width = 193
  96. Height = 17
  97. TabStop = False
  98. Caption = 'AutoCompleteCommandsOnEnter'
  99. TabOrder = 1
  100. OnClick = CheckBox2Click
  101. OnKeyDown = FormKeyDown
  102. OnKeyPress = FormKeyPress
  103. end
  104. object CheckBox3: TCheckBox
  105. Left = 8
  106. Top = 48
  107. Width = 195
  108. Height = 17
  109. TabStop = False
  110. Caption = 'ShowConsoleHelpIfUnknownCommand'
  111. TabOrder = 2
  112. OnClick = CheckBox3Click
  113. OnKeyDown = FormKeyDown
  114. OnKeyPress = FormKeyPress
  115. end
  116. object Button1: TButton
  117. Left = 8
  118. Top = 72
  119. Width = 44
  120. Height = 25
  121. Caption = 'Save'
  122. TabOrder = 3
  123. TabStop = False
  124. OnClick = Button1Click
  125. OnKeyDown = FormKeyDown
  126. OnKeyPress = FormKeyPress
  127. end
  128. object Button2: TButton
  129. Left = 8
  130. Top = 96
  131. Width = 44
  132. Height = 25
  133. Caption = 'Save'
  134. TabOrder = 4
  135. TabStop = False
  136. OnClick = Button2Click
  137. OnKeyDown = FormKeyDown
  138. OnKeyPress = FormKeyPress
  139. end
  140. object Button6: TButton
  141. Left = 155
  142. Top = 71
  143. Width = 44
  144. Height = 25
  145. Caption = 'Load'
  146. TabOrder = 5
  147. TabStop = False
  148. OnClick = Button6Click
  149. end
  150. object Button7: TButton
  151. Left = 155
  152. Top = 95
  153. Width = 44
  154. Height = 25
  155. Caption = 'Load'
  156. TabOrder = 6
  157. TabStop = False
  158. OnClick = Button7Click
  159. end
  160. end
  161. object ListBox1: TListBox
  162. Left = 1
  163. Top = 1
  164. Width = 207
  165. Height = 232
  166. TabStop = False
  167. Style = lbOwnerDrawFixed
  168. Align = alTop
  169. Enabled = False
  170. Font.Charset = RUSSIAN_CHARSET
  171. Font.Color = clWindowText
  172. Font.Height = -11
  173. Font.Name = 'MS Sans Serif'
  174. Font.Style = []
  175. ItemHeight = 13
  176. Items.Strings = (
  177. 'Instructions:'
  178. ' Click anywhere'
  179. ' to actiate the console'
  180. ''
  181. 'Type "Help" and press Enter'
  182. 'to get started'
  183. ''
  184. 'Controls:'
  185. ' Up-down one line: Home <-> End '
  186. ' Up-down 1 page PageUp <-> PageDown'
  187. ' Enter comman: Return (enter)'
  188. ' Next-Prev command: Up <-> Down'
  189. ' Auto-Complete Command = Ctrl'
  190. ''
  191. 'Have fun!'
  192. ''
  193. 'Da Stranger')
  194. ParentFont = False
  195. TabOrder = 1
  196. end
  197. end
  198. object GLCadencer1: TGLCadencer
  199. Scene = Scene
  200. OnProgress = GLCadencer1Progress
  201. Left = 240
  202. Top = 80
  203. end
  204. object Scene: TGLScene
  205. Left = 240
  206. Top = 16
  207. object GLCube1: TGLCube
  208. Position.Coordinates = {000000000000003F0000A0C00000803F}
  209. BehavioursData = {
  210. 0458434F4C02010201060B54474C42496E657274696102001200000000020002
  211. 00050000000000000080FF3F0200080500000000000000A00240050000000000
  212. 0000A00140050000000000000080004009020008020008}
  213. end
  214. object GLCamera1: TGLCamera
  215. DepthOfView = 100.000000000000000000
  216. FocalLength = 50.000000000000000000
  217. Left = 328
  218. Top = 216
  219. object GLLightSource1: TGLLightSource
  220. ConstAttenuation = 1.000000000000000000
  221. SpotCutOff = 180.000000000000000000
  222. end
  223. end
  224. end
  225. object Font1: TGLWindowsBitmapFont
  226. Font.Charset = DEFAULT_CHARSET
  227. Font.Color = clWhite
  228. Font.Height = -11
  229. Font.Name = 'MS Sans Serif'
  230. Font.Style = []
  231. Ranges = <
  232. item
  233. StartASCII = #0
  234. StopASCII = #255
  235. StartGlyphIdx = 0
  236. end>
  237. Left = 472
  238. Top = 16
  239. end
  240. object Timer1: TTimer
  241. Left = 472
  242. Top = 80
  243. end
  244. object GLSimpleNavigation1: TGLSimpleNavigation
  245. Form = Owner
  246. GLSceneViewer = Viewer
  247. FormCaption = 'Console - %FPS'
  248. KeyCombinations = <
  249. item
  250. ShiftState = [ssLeft, ssRight]
  251. Action = snaZoom
  252. end
  253. item
  254. ShiftState = [ssLeft]
  255. Action = snaMoveAroundTarget
  256. end
  257. item
  258. ShiftState = [ssRight]
  259. Action = snaMoveAroundTarget
  260. end>
  261. Left = 344
  262. Top = 16
  263. end
  264. end