Advertisement
Guest User

Untitled

a guest
Jul 26th, 2011
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 15.66 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!-- edited with Good Old Codewright by Don Wuenschell (Firaxis Games) -->
  3. <!--                                                                   -->
  4. <!-- nTolerance (default 100)                                          -->
  5. <!--  The difference between the track and the land in which           -->
  6. <!--  the land will be raised if it's lower.  Example:  If the         -->
  7. <!--  value is 100, then the land will be raised as long as the        -->
  8. <!--  difference between the land and the track at that point is       -->
  9. <!--  less than 100.  Anything over 100 units will result in a         -->
  10. <!--  bridge                                                           -->
  11. <!--   nTolerance is global to all bridges.                            -->
  12. <!--                                                                   -->
  13. <!-- szDummyNodPrefixWaterRipples                                      -->
  14. <!--  Any node that begins with this phrase will be used to place      -->
  15. <!--  water ripple rings.                                              -->
  16. <!--                                                                   -->
  17. <!-- nDepthStart (default 0)                                           -->
  18. <!-- nDepthEnd (default HUGE)                                          -->
  19. <!--  Each bridge must have a starting and ending depth that           -->
  20. <!--  corresponds to generic units that you get from 3DS Max.          -->
  21. <!--  So a depth from 0 to 128 means that this particular bridge       -->
  22. <!--  will be used when the track is within 0-128 units from the       -->
  23. <!--  tallest point intersected on the terrain.  If not specified,     -->
  24. <!--  then this bridge will range from 0 to near infinity.             -->
  25. <!--                                                                   -->
  26. <!-- nAngleStart (default 0)                                           -->
  27. <!-- nAngleEnd (default 360)                                           -->
  28. <!--  Each bridge can have a starting and ending angle in degrees.     -->
  29. <!--  If specified, this tells the system that this bridge is only     -->
  30. <!--  valid if the overall bend of the bridge falls within these       -->
  31. <!--  values.                                                          -->
  32. <!--                                                                   -->
  33. <!-- nSpanStart (default 0)                                            -->
  34. <!-- nSpanEnd (default HUGE)                                           -->
  35. <!--  Specifies the span, in generic units, that this bridge           -->
  36. <!--  will remain in.  If the total span that needs to be built        -->
  37. <!--  is outside of this range then this particular bridge will        -->
  38. <!--  not be considered.  If not specified, then this bridge           -->
  39. <!--  will range from 0 to near infinity.                              -->
  40. <!--                                                                   -->
  41. <!-- nYearStart (default 0)                                            -->
  42. <!-- nYearEnd (default HUGE)                                           -->
  43. <!--  Specifies the range of years that this tunnel will be used.      -->
  44. <!--  If not specified, then it's for every year.                      -->
  45. <!--                                                                   -->
  46. <!-- nRippleScale (default 1)                                          -->
  47. <!--  Specifies the scaling of the ripple animation for the            -->
  48. <!--  current bridge type.                                             -->
  49. <!--                                                                   -->
  50. <!-- szType (default Metal)                                            -->
  51. <!--   Specifies which bridge "type" this is.  Current valid types     -->
  52. <!--   are:                                                            -->
  53. <!--      "Wood"                                                       -->
  54. <!--      "Masonry"                                                    -->
  55. <!--      "Metal"                                                      -->
  56. <!--                                                                   -->
  57. <!-- bUseForOverlaps (default 0)                                       -->
  58. <!--  Specifies if this bridge is used for overlapping tracks or not.  -->
  59. <!--                                                                   -->
  60. <!-- Piece                                                             -->
  61. <!--  Each bridge will be made up of "Pieces."                         -->
  62. <!--                                                                   -->
  63. <!-- szModel                                                           -->
  64. <!-- nRepeat (default 1)                                               -->
  65. <!-- nCost                                                             -->
  66. <!--  Each piece has a model associated with it <szModel>.             -->
  67. <!--  How many times that piece will repeat <nRepeat>.                 -->
  68. <!--  What the piece costs <nCost>.                                    -->
  69. <!--                                                                   -->
  70. <!-- The bridge will will be built in the order in which the pieces    -->
  71. <!-- are listed.                                                       -->
  72. <!--                                                                   -->
  73.  
  74. <RRTBridges>
  75.  
  76.     <nTolerance>200</nTolerance>
  77.     <szStoneBridgeClack>AS3D_CLACK_PLANET_BRIDGE</szStoneBridgeClack>
  78.     <szMetalBridgeClack>AS3D_METAL_CLACK_BRIDGE</szMetalBridgeClack>
  79.     <szWoodBridgeClack>AS3D_CLACK_PLANET_BRIDGE</szWoodBridgeClack>
  80.     <szSharpAngleSqueal>AS3D_CURVE_SQUEAL</szSharpAngleSqueal>
  81.     <szAverageAngleSqueal>AS3D_CURVE_SQUEAL</szAverageAngleSqueal>
  82.     <szSlightAngleSqueal>AS3D_CURVE_SQUEAL</szSlightAngleSqueal>
  83.     <szDummyNodePrefixWaterRipples>dummy_fx_water_ripple_rings</szDummyNodePrefixWaterRipples>
  84.  
  85.     <Bridge>
  86.         <szName>Wood Overlap</szName>
  87.         <nYearStart>0</nYearStart>
  88.         <nYearEnd>1870</nYearEnd>
  89.         <nDepthStart>300</nDepthStart>
  90.         <nDepthEnd>550</nDepthEnd>
  91.         <nSpanStart>0</nSpanStart>
  92.         <nSpanEnd>8000</nSpanEnd>
  93.         <nRippleScale>1.00</nRippleScale>
  94.         <szType>Wood</szType>
  95.         <bUseForOverlaps>1</bUseForOverlaps>
  96.         <Pieces>
  97.             <Piece>
  98.                 <szModel>WoodenTrestle_01.nif</szModel>
  99.                 <nRepeat>5</nRepeat>
  100.                 <nCost>10000</nCost>
  101.             </Piece>
  102.             <Piece>
  103.                 <szModel>WoodenTrestle_02.nif</szModel>
  104.                 <nRepeat>1</nRepeat>
  105.                 <nCost>10000</nCost>
  106.             </Piece>
  107.             <Piece>
  108.                 <szModel>WoodenTrestle_03.nif</szModel>
  109.                 <nRepeat>6</nRepeat>
  110.                 <nCost>30000</nCost>
  111.             </Piece>
  112.             <Piece>
  113.                 <szModel>WoodenTrestle_04.nif</szModel>
  114.                 <nRepeat>1</nRepeat>
  115.                 <nCost>10000</nCost>
  116.             </Piece>
  117.             <Piece>
  118.                 <szModel>WoodenTrestle_05.nif</szModel>
  119.                 <nRepeat>5</nRepeat>
  120.                 <nCost>10000</nCost>
  121.             </Piece>
  122.         </Pieces>
  123.     </Bridge>
  124.  
  125.     <Bridge>
  126.         <szName>Stone Overlap</szName>
  127.         <nDepthStart>0</nDepthStart>
  128.         <nDepthEnd>25600</nDepthEnd>
  129.         <nSpanStart>0</nSpanStart>
  130.         <nSpanEnd>8000</nSpanEnd>
  131.         <nYearStart>1870</nYearStart>
  132.         <nYearEnd>1920</nYearEnd>
  133.         <nAngleStart>0</nAngleStart>
  134.         <nAngleEnd>180</nAngleEnd>
  135.         <nRippleScale>1.00</nRippleScale>
  136.         <szType>Masonry</szType>
  137.         <bUseForOverlaps>1</bUseForOverlaps>
  138.         <Pieces>
  139.             <Piece>
  140.                 <szModel>Bridge_Stone01_01.nif</szModel>
  141.                 <nRepeat>1</nRepeat>
  142.                 <nCost>15000</nCost>
  143.             </Piece>
  144.             <Piece>
  145.                 <szModel>Bridge_Stone01_02.nif</szModel>
  146.                 <nRepeat>1</nRepeat>
  147.                 <nCost>15000</nCost>
  148.             </Piece>
  149.             <Piece>
  150.                 <szModel>Bridge_Stone01_03.nif</szModel>
  151.                 <nRepeat>999</nRepeat>
  152.                 <nCost>50000</nCost>
  153.             </Piece>
  154.             <Piece>
  155.                 <szModel>Bridge_Stone01_04.nif</szModel>
  156.                 <nRepeat>1</nRepeat>
  157.                 <nCost>15000</nCost>
  158.             </Piece>
  159.             <Piece>
  160.                 <szModel>Bridge_Stone01_05.nif</szModel>
  161.                 <nRepeat>1</nRepeat>
  162.                 <nCost>15000</nCost>
  163.             </Piece>
  164.         </Pieces>
  165.     </Bridge>
  166.    
  167.     <Bridge>
  168.         <szName>Sandstone Overlap</szName>
  169.         <nDepthStart>0</nDepthStart>
  170.         <nDepthEnd>500</nDepthEnd>
  171.         <nSpanStart>0</nSpanStart>
  172.         <nSpanEnd>1000</nSpanEnd>
  173.         <nYearStart>1920</nYearStart>
  174.         <nYearEnd>3000</nYearEnd>
  175.         <nAngleStart>0</nAngleStart>
  176.         <nAngleEnd>180</nAngleEnd>
  177.         <nRippleScale>1.00</nRippleScale>
  178.         <szType>Masonry</szType>
  179.         <bUseForOverlaps>1</bUseForOverlaps>
  180.         <Pieces>
  181.             <Piece>
  182.                 <szModel>Bridge_Masonry01_01.nif</szModel>
  183.                 <nRepeat>1</nRepeat>
  184.                 <nCost>20000</nCost>
  185.             </Piece>
  186.             <Piece>
  187.                 <szModel>Bridge_Masonry01_02.nif</szModel>
  188.                 <nRepeat>1</nRepeat>
  189.                 <nCost>20000</nCost>
  190.             </Piece>
  191.             <Piece>
  192.                 <szModel>Bridge_Masonry01_03.nif</szModel>
  193.                 <nRepeat>999</nRepeat>
  194.                 <nCost>70000</nCost>
  195.             </Piece>
  196.             <Piece>
  197.                 <szModel>Bridge_Masonry01_04.nif</szModel>
  198.                 <nRepeat>1</nRepeat>
  199.                 <nCost>20000</nCost>
  200.             </Piece>
  201.             <Piece>
  202.                 <szModel>Bridge_Masonry01_05.nif</szModel>
  203.                 <nRepeat>1</nRepeat>
  204.                 <nCost>20000</nCost>
  205.             </Piece>
  206.         </Pieces>
  207.     </Bridge>
  208.  
  209.     <Bridge>
  210.         <szName>Wood Bridge</szName>
  211.         <nDepthStart>0</nDepthStart>
  212.         <nDepthEnd>50000</nDepthEnd>
  213.         <nSpanStart>0</nSpanStart>
  214.         <nSpanEnd>8000</nSpanEnd>
  215.         <nYearStart>0</nYearStart>
  216.         <nYearEnd>1870</nYearEnd>
  217.         <nRippleScale>1.00</nRippleScale>
  218.         <szType>Wood</szType>
  219.         <Pieces>
  220.             <Piece>
  221.                 <szModel>WoodenTrestle_01.nif</szModel>
  222.                 <nRepeat>5</nRepeat>
  223.                 <nCost>10000</nCost>
  224.             </Piece>
  225.             <Piece>
  226.                 <szModel>WoodenTrestle_02.nif</szModel>
  227.                 <nRepeat>1</nRepeat>
  228.                 <nCost>10000</nCost>
  229.             </Piece>
  230.             <Piece>
  231.                 <szModel>WoodenTrestle_03.nif</szModel>
  232.                 <nRepeat>6</nRepeat>
  233.                 <nCost>30000</nCost>
  234.             </Piece>
  235.             <Piece>
  236.                 <szModel>WoodenTrestle_04.nif</szModel>
  237.                 <nRepeat>1</nRepeat>
  238.                 <nCost>10000</nCost>
  239.             </Piece>
  240.             <Piece>
  241.                 <szModel>WoodenTrestle_05.nif</szModel>
  242.                 <nRepeat>5</nRepeat>
  243.                 <nCost>10000</nCost>
  244.             </Piece>
  245.         </Pieces>
  246.     </Bridge>
  247.  
  248.     <Bridge>
  249.         <szName>Stone Bridge</szName>
  250.         <nDepthStart>0</nDepthStart>
  251.         <nDepthEnd>50000</nDepthEnd>
  252.         <nSpanStart>0</nSpanStart>
  253.         <nSpanEnd>8000</nSpanEnd>
  254.         <nYearStart>1870</nYearStart>
  255.         <nYearEnd>1920</nYearEnd>
  256.         <nAngleStart>0</nAngleStart>
  257.         <nAngleEnd>180</nAngleEnd>
  258.         <nRippleScale>1.00</nRippleScale>
  259.         <szType>Masonry</szType>
  260.         <Pieces>
  261.             <Piece>
  262.                 <szModel>Bridge_Stone01_01.nif</szModel>
  263.                 <nRepeat>1</nRepeat>
  264.                 <nCost>15000</nCost>
  265.             </Piece>
  266.             <Piece>
  267.                 <szModel>Bridge_Stone01_02.nif</szModel>
  268.                 <nRepeat>1</nRepeat>
  269.                 <nCost>15000</nCost>
  270.             </Piece>
  271.             <Piece>
  272.                 <szModel>Bridge_Stone01_03.nif</szModel>
  273.                 <nRepeat>999</nRepeat>
  274.                 <nCost>10000</nCost>
  275.             </Piece>
  276.             <Piece>
  277.                 <szModel>Bridge_Stone01_04.nif</szModel>
  278.                 <nRepeat>1</nRepeat>
  279.                 <nCost>15000</nCost>
  280.             </Piece>
  281.             <Piece>
  282.                 <szModel>Bridge_Stone01_05.nif</szModel>
  283.                 <nRepeat>1</nRepeat>
  284.                 <nCost>15000</nCost>
  285.             </Piece>
  286.         </Pieces>
  287.     </Bridge>
  288.  
  289.     <Bridge>
  290.         <szName>Sandstone Bridge Tall</szName>
  291.         <nYearStart>1920</nYearStart>
  292.         <nYearEnd>1960</nYearEnd>
  293.         <nDepthStart>300</nDepthStart>
  294.         <nDepthEnd>50000</nDepthEnd>
  295.         <nSpanStart>0</nSpanStart>
  296.         <nSpanEnd>8000</nSpanEnd>
  297.         <nAngleStart>0</nAngleStart>
  298.         <nAngleEnd>180</nAngleEnd>
  299.         <nRippleScale>1.00</nRippleScale>
  300.         <szType>Masonry</szType>
  301.         <Pieces>
  302.             <Piece>
  303.                 <szModel>Bridge_Masonry01_01.nif</szModel>
  304.                 <nRepeat>1</nRepeat>
  305.                 <nCost>20000</nCost>
  306.             </Piece>
  307.             <Piece>
  308.                 <szModel>Bridge_Masonry01_02.nif</szModel>
  309.                 <nRepeat>1</nRepeat>
  310.                 <nCost>20000</nCost>
  311.             </Piece>
  312.             <Piece>
  313.                 <szModel>Bridge_Masonry01_03.nif</szModel>
  314.                 <nRepeat>999</nRepeat>
  315.                 <nCost>70000</nCost>
  316.             </Piece>
  317.             <Piece>
  318.                 <szModel>Bridge_Masonry01_04.nif</szModel>
  319.                 <nRepeat>1</nRepeat>
  320.                 <nCost>20000</nCost>
  321.             </Piece>
  322.             <Piece>
  323.                 <szModel>Bridge_Masonry01_05.nif</szModel>
  324.                 <nRepeat>1</nRepeat>
  325.                 <nCost>20000</nCost>
  326.             </Piece>
  327.         </Pieces>
  328.     </Bridge>
  329.        
  330.     <Bridge>
  331.         <szName>Sandstone Bridge Low</szName>
  332.         <nYearStart>1920</nYearStart>
  333.         <nYearEnd>3000</nYearEnd>
  334.         <nDepthStart>0</nDepthStart>
  335.         <nDepthEnd>300</nDepthEnd>
  336.         <nSpanStart>0</nSpanStart>
  337.         <nSpanEnd>8000</nSpanEnd>
  338.         <nAngleStart>0</nAngleStart>
  339.         <nAngleEnd>180</nAngleEnd>
  340.         <nRippleScale>1.00</nRippleScale>
  341.         <szType>Masonry</szType>
  342.         <Pieces>
  343.             <Piece>
  344.                 <szModel>Bridge_Masonry01_01.nif</szModel>
  345.                 <nRepeat>1</nRepeat>
  346.                 <nCost>20000</nCost>
  347.             </Piece>
  348.             <Piece>
  349.                 <szModel>Bridge_Masonry01_02.nif</szModel>
  350.                 <nRepeat>1</nRepeat>
  351.                 <nCost>20000</nCost>
  352.             </Piece>
  353.             <Piece>
  354.                 <szModel>Bridge_Masonry01_03.nif</szModel>
  355.                 <nRepeat>999</nRepeat>
  356.                 <nCost>70000</nCost>
  357.             </Piece>
  358.             <Piece>
  359.                 <szModel>Bridge_Masonry01_04.nif</szModel>
  360.                 <nRepeat>1</nRepeat>
  361.                 <nCost>20000</nCost>
  362.             </Piece>
  363.             <Piece>
  364.                 <szModel>Bridge_Masonry01_05.nif</szModel>
  365.                 <nRepeat>1</nRepeat>
  366.                 <nCost>20000</nCost>
  367.             </Piece>
  368.         </Pieces>
  369.     </Bridge>
  370.  
  371.     <Bridge>
  372.         <szName>Metal Girder</szName>
  373.         <nYearStart>1960</nYearStart>
  374.         <nYearEnd>3000</nYearEnd>
  375.         <nDepthStart>300</nDepthStart>
  376.         <nDepthEnd>500</nDepthEnd>
  377.         <nSpanStart>0</nSpanStart>
  378.         <nSpanEnd>8000</nSpanEnd>
  379.         <nAngleStart>0</nAngleStart>
  380.         <nAngleEnd>360</nAngleEnd>
  381.         <nRippleScale>1.00</nRippleScale>
  382.         <szType>Metal</szType>
  383.         <Pieces>
  384.             <Piece>
  385.                 <szModel>Bridge_DeckGirder01_01.nif</szModel>
  386.                 <nRepeat>2</nRepeat>
  387.                 <nCost>50000</nCost>
  388.             </Piece>
  389.             <Piece>
  390.                 <szModel>Bridge_DeckGirder01_02.nif</szModel>
  391.                 <nRepeat>1</nRepeat>
  392.                 <nCost>50000</nCost>
  393.             </Piece>
  394.             <Piece>
  395.                 <szModel>Bridge_DeckGirder01_03.nif</szModel>
  396.                 <nRepeat>99999</nRepeat>
  397.                 <nCost>80000</nCost>
  398.             </Piece>
  399.             <Piece>
  400.                 <szModel>Bridge_DeckGirder01_04.nif</szModel>
  401.                 <nRepeat>1</nRepeat>
  402.                 <nCost>50000</nCost>
  403.             </Piece>
  404.             <Piece>
  405.                 <szModel>Bridge_DeckGirder01_05.nif</szModel>
  406.                 <nRepeat>2</nRepeat>
  407.                 <nCost>50000</nCost>
  408.             </Piece>
  409.         </Pieces>
  410.     </Bridge>
  411.  
  412.     <Bridge>
  413.         <szName>Metal Pratt</szName>
  414.         <nYearStart>1960</nYearStart>
  415.         <nYearEnd>3000</nYearEnd>
  416.         <nDepthStart>500</nDepthStart>
  417.         <nDepthEnd>700</nDepthEnd>
  418.         <nSpanStart>0</nSpanStart>
  419.         <nSpanEnd>8000</nSpanEnd>
  420.         <nRippleScale>1.00</nRippleScale>
  421.         <szType>Metal</szType>
  422.         <Pieces>
  423.             <Piece>
  424.                 <szModel>Bridge_pratt01_01.nif</szModel>
  425.                 <nRepeat>2</nRepeat>
  426.                 <nCost>60000</nCost>
  427.             </Piece>
  428.             <Piece>
  429.                 <szModel>Bridge_pratt01_02.nif</szModel>
  430.                 <nRepeat>1</nRepeat>
  431.                 <nCost>60000</nCost>
  432.             </Piece>
  433.             <Piece>
  434.                 <szModel>Bridge_pratt01_03.nif</szModel>
  435.                 <nRepeat>10</nRepeat>
  436.                 <nCost>90000</nCost>
  437.             </Piece>
  438.             <Piece>
  439.                 <szModel>Bridge_pratt01_04.nif</szModel>
  440.                 <nRepeat>1</nRepeat>
  441.                 <nCost>60000</nCost>
  442.             </Piece>
  443.             <Piece>
  444.                 <szModel>Bridge_pratt01_05.nif</szModel>
  445.                 <nRepeat>2</nRepeat>
  446.                 <nCost>60000</nCost>
  447.             </Piece>
  448.         </Pieces>
  449.     </Bridge>
  450.    
  451.     <Bridge>
  452.         <szName>Metal Cantilever</szName>
  453.         <nYearStart>1960</nYearStart>
  454.         <nYearEnd>3000</nYearEnd>
  455.         <nDepthStart>700</nDepthStart>
  456.         <nDepthEnd>50000</nDepthEnd>
  457.         <nSpanStart>0</nSpanStart>
  458.         <nSpanEnd>8000</nSpanEnd>
  459.         <nRippleScale>2.00</nRippleScale>
  460.         <szType>Metal</szType>
  461.         <Pieces>
  462.             <Piece>
  463.                 <szModel>Bridge_cantilever01_01.nif</szModel>
  464.                 <nRepeat>1</nRepeat>
  465.                 <nCost>70000</nCost>
  466.             </Piece>
  467.             <Piece>
  468.                 <szModel>Bridge_cantilever01_02.nif</szModel>
  469.                 <nRepeat>1</nRepeat>
  470.                 <nCost>70000</nCost>
  471.             </Piece>
  472.             <Piece>
  473.                 <szModel>Bridge_cantilever01_03.nif</szModel>
  474.                 <nRepeat>1</nRepeat>
  475.                 <nCost>100000</nCost>
  476.             </Piece>
  477.             <Piece>
  478.                 <szModel>Bridge_cantilever01_04.nif</szModel>
  479.                 <nRepeat>1</nRepeat>
  480.                 <nCost>70000</nCost>
  481.             </Piece>
  482.             <Piece>
  483.                 <szModel>Bridge_cantilever01_05.nif</szModel>
  484.                 <nRepeat>1</nRepeat>
  485.                 <nCost>70000</nCost>
  486.             </Piece>
  487.         </Pieces>
  488.     </Bridge>
  489. </RRTBridges>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement