Advertisement
dziban303

Untitled

Oct 16th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!--
  3. Protractor
  4.  
  5. <Navigator [on-screen position]>
  6.   [Bearing Display Settings]
  7.   [Target angle setting display settings]
  8.   [Course angle display settings]
  9. </ Navigator>
  10.  
  11. [Screen Position]
  12.   X = "{number}" - Horizontal offset of the center of the goniometer relative to the center of the screen
  13.   Y = "{number}" - Vertical offset of the center of the goniometer relative to the center of the screen
  14. -->
  15.  
  16. <!-- <navigator x="-550" y="200"> -->
  17. <navigator x="0" y="200">
  18. <!--
  19. [Bearing Display]
  20.   The target bearing is displayed by turning the protractor.
  21.  
  22.   <Bearing [settings] />
  23.  
  24.   [Settings]
  25.    Active = "{true / false}" - On (true) / Off (false)
  26. -->
  27. <bearing active="false"/>
  28.  
  29. <!--
  30. [Target heading angle displays]
  31.  
  32.   <TargetAngle>
  33.    [Text label settings]
  34.    [Color scheme settings]
  35.   </ TargetAngle>
  36. -->
  37. <targetAngle>
  38.  
  39. <!--
  40. [Textual Mark of the MSC]
  41.   <Label [horizon dividing system] />
  42.  
  43.   [Horizon Division System]
  44.    BasedOn90 = "{true / false}" - Use a quad (true) or semicircular horizon dividing system
  45.  
  46.    When using a semicircular SDG, the label displays the CCC
  47.    With a quarterly SDG - if the MSC> 90, then the angle that the label displays is equal to (180-KUTS). In the game realities it is more convenient
  48. -->
  49. <label basedOn90="true"/>
  50.  
  51. <!--
  52. [Color scheme of the MSC]
  53.   <Type Color Transparent />
  54.  
  55.    Type = "{safe / unsafe / dangerous}"
  56.     Safe corresponds to the MCC from [0, 30] and [150, 180]
  57.     Unsafe corresponds to the MCC from (30, 60] and [120, 150)
  58.     Dangerous corresponds to the MCC from (60, 120)
  59.  
  60.    Colour
  61.      Color = "{integer}" - specifies the color for the "fill" of the KTC indicator
  62.  
  63.    Transparency
  64.      Alpha = "{number from 0 to 1}" - determines the transparency of the "filling" of the indicator of the CIC. 0 - fully transparent "fill", 1 - completely opaque.
  65. -->
  66. <colors>
  67. <safe color="0xff0000" alpha="0.15"/>
  68. <unsafe color="0xffc800" alpha="0.15"/>
  69. <dangerous color="0x00c800" alpha="0.15"/>
  70. </colors>
  71. </targetAngle>
  72.  
  73. <!--
  74. [Course-angle displays]
  75.  
  76.   <ShipAngle>
  77.    [Color scheme settings]
  78.   </ ShipAngle>
  79. -->
  80.  
  81. <shipAngle>
  82.  
  83. <!--
  84. [Color scheme of the CU]
  85.   <Type Color Transparent />
  86.  
  87.    Type = "{safe / unsafe / dangerous}"
  88.     Safe corresponds to the MCC from [0, 30] and [150, 180]
  89.     Unsafe corresponds to the MCC from (30, 60] and [120, 150)
  90.     Dangerous corresponds to the MCC from (60, 120)
  91.  
  92.    Colour
  93.      Color = "{integer}" - specifies the color for the "fill" of the KTC indicator
  94.  
  95.    Transparency
  96.      Alpha = "{number from 0 to 1}" - determines the transparency of the "filling" of the indicator of the CIC. 0 - fully transparent "fill", 1 - completely opaque.
  97. -->
  98. <colors>
  99. <safe color="0x727c7e" alpha="0.5"/>
  100. <unsafe color="0x727c7e" alpha="0.5"/>
  101. <dangerous color="0x727c7e" alpha="0.5"/>
  102. </colors>
  103. </shipAngle>
  104. </navigator>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement