Mini Map
#1
Posted 05 January 2011 - 05:28 AM
The mini map does not scale with the size of the galaxy for GC games (GFFA and Core use the same mini map, just with different planets) and everything on the minimap seems so jam packed and not very useful since the viewing pane does nothing. I've attached a couple screen shots that show what I'm trying to convey to words.
I am playing PR 1.1 + the space only mini mod with some minor changes to some of the unit xml files.
I'm not sure if this will be a big deal to fix or just a quick thing, but not being able to effectively use the mini map bothers me. please let me know if there is anything i can do to help, or what would be required.
And I know that it cannot be said enough how hard you guys work to keep this mod project running and developing so thank you very much for taking the time to do so!!
#2
Posted 05 January 2011 - 05:16 PM
<CommandBarComponent Name="radar_galactic"> <Type>Button</Type> - <Size>175 175</Size> + <Size>116 150</Size> </CommandBarComponent> @@ -6903,5 +6903,5 @@ <CommandBarComponent Name="g_radar_blip"> <Type>Button</Type> <Icon_Texture_Name>i_radar_galactic_planet.tga</Icon_Texture_Name> <Mouse_Over_Texture_Name>i_radar_galactic_planet_hilite.tga</Mouse_Over_Texture_Name> <Flash_Texture_Name>i_radar_galactic_planet_flash.tga</Flash_Texture_Name> <No_Shell>True</No_Shell> - <Scale>1.0</Scale> + <Scale>0.7</Scale> <Base_Layer>3</Base_Layer> <Tab>True</Tab> @@ -6914,5 +6914,5 @@ <CommandBarComponent Name="g_radar_view"> <Type>Button</Type> <Icon_Texture_Name>i_radar_view.tga</Icon_Texture_Name> <No_Shell>True</No_Shell> <Scale>1.0</Scale> <Base_Layer>4</Base_Layer> - <Size>132 90</Size> + <Size>88 60</Size> </CommandBarComponent> @@ -9522,5 +9522,5 @@ <CommandBarComponent Name="radar_galactic_adv_map"> <Type>Button</Type> - <Size>175 175</Size> + <Size>116 116</Size> </CommandBarComponent>
The - lines were deleted and changed to the lines with +. The @@ parts are line numbers, but they may be incorrect for your copy. It's the specific entries that matter.
Edited by evilbobthebob, 05 January 2011 - 05:18 PM.
#4
Posted 05 January 2011 - 11:39 PM
<Type>Button</Type>
<!-- Changed to correct mini map scale-->
<!--<Size>30 30</Size>-->
<Size>45 45</Size>
<!--<Size>175 175</Size>-->
</CommandBarComponent>
<CommandBarComponent Name="g_radar_blip">
<!-- Changed to scale mini map-->
<Type>Button</Type>
<Icon_Texture_Name>i_radar_galactic_planet.tga</Icon_Texture_Name>
<Mouse_Over_Texture_Name>i_radar_galactic_planet_hilite.tga</Mouse_Over_Texture_Name>
<Selected_Texture_Name>i_radar_galactic_planet_selected.tga</Selected_Texture_Name>
<Flash_Texture_Name>i_radar_galactic_planet_flash.tga</Flash_Texture_Name>
<No_Shell>True</No_Shell>
<!--<Scale>1.0</Scale>-->
<Scale>0.5</Scale>
<Base_Layer>3</Base_Layer>
<Tab>True</Tab>
</CommandBarComponent>
<CommandBarComponent Name="g_radar_view">
<!--Changed to scale mini map-->
<Type>Button</Type>
<Icon_Texture_Name>i_radar_view.tga</Icon_Texture_Name>
<No_Shell>True</No_Shell>
<!--<Scale>0.5</Scale>-->
<Base_Layer>4</Base_Layer>
<!--<Size>22 15</Size>-->
<!--<Size>15 15</Size>-->
</CommandBarComponent>
<CommandBarComponent Name="radar_galactic_adv_map">
<!-- Changed to scale mini map-->
<Type>Button</Type>
<!--<Size>30 30</Size>-->
<Size>45 45</Size>
<!--<Size>175 175</Size>-->
</CommandBarComponent>
which produced for GFFA and CW respectively:
Now this produces a mini map that is workable as far as the map itself is concerned. The problem is that any changes to the <Scale> or <Size> parameters in g_radar_view do not change the white view box. I tried a variety of different values in each, omitting one or the other, and even omitting that component entirely (exception generated) and none of them seemed to change that view box. Anyone have any ideas why that might be?
#7
Posted 06 January 2011 - 12:46 AM
#8
Posted 21 March 2011 - 03:21 AM
Sorry I missed that! But I have dealt with the problem on my own for v1.2. The only thing I did that's appreciably different is downsize those galactic planet radar icons by half.There's a way to fix this, which I am reasonably sure I communicated to PR or Tropical Bob at some point.
It used to slightly scroll at one point. After a certain rescaling of the galaxy, I think it just stopped. Could be hardcoded, as the campaign menu preview maps seem to be.Now this produces a mini map that is workable as far as the map itself is concerned. The problem is that any changes to the <Scale> or <Size> parameters in g_radar_view do not change the white view box. I tried a variety of different values in each, omitting one or the other, and even omitting that component entirely (exception generated) and none of them seemed to change that view box. Anyone have any ideas why that might be?