Add buttons for map file management to map chooser

This commit is contained in:
Oliver Brakmann
2015-01-16 15:49:55 +01:00
parent 1854d994fd
commit dc08b7a90a
4 changed files with 109 additions and 0 deletions

View File

@@ -274,5 +274,11 @@ namespace OpenRA
Map.PreloadRules(); Map.PreloadRules();
RuleStatus = Map.InvalidCustomRules ? MapRuleStatus.Invalid : MapRuleStatus.Cached; RuleStatus = Map.InvalidCustomRules ? MapRuleStatus.Invalid : MapRuleStatus.Cached;
} }
public void Invalidate()
{
Status = MapStatus.Unavailable;
RuleStatus = MapRuleStatus.Unknown;
}
} }
} }

View File

@@ -10,6 +10,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO;
using System.Linq; using System.Linq;
using OpenRA; using OpenRA;
using OpenRA.Primitives; using OpenRA.Primitives;
@@ -90,6 +91,32 @@ namespace OpenRA.Mods.Common.Widgets.Logic
randomMapButton.IsDisabled = () => visibleMaps == null || visibleMaps.Length == 0; randomMapButton.IsDisabled = () => visibleMaps == null || visibleMaps.Length == 0;
} }
var deleteMapButton = widget.Get<ButtonWidget>("DELETE_MAP_BUTTON");
deleteMapButton.IsDisabled = () => Game.ModData.MapCache[selectedUid].Class != MapClassification.User;
deleteMapButton.IsVisible = () => currentTab == MapClassification.User;
deleteMapButton.OnClick = () =>
{
DeleteOneMap(selectedUid, (string newUid) =>
{
RefreshMaps(currentTab, filter);
EnumerateMaps(currentTab, itemTemplate);
if (!tabMaps[currentTab].Any())
SwitchTab(Game.ModData.MapCache[newUid].Class, itemTemplate);
});
};
var deleteAllMapsButton = widget.Get<ButtonWidget>("DELETE_ALL_MAPS_BUTTON");
deleteAllMapsButton.IsVisible = () => currentTab == MapClassification.User;
deleteAllMapsButton.OnClick = () =>
{
DeleteAllMaps(visibleMaps, (string newUid) =>
{
RefreshMaps(currentTab, filter);
EnumerateMaps(currentTab, itemTemplate);
SwitchTab(Game.ModData.MapCache[newUid].Class, itemTemplate);
});
};
SetupMapTab(MapClassification.User, filter, "USER_MAPS_TAB_BUTTON", "USER_MAPS_TAB", itemTemplate); SetupMapTab(MapClassification.User, filter, "USER_MAPS_TAB_BUTTON", "USER_MAPS_TAB", itemTemplate);
SetupMapTab(MapClassification.System, filter, "SYSTEM_MAPS_TAB_BUTTON", "SYSTEM_MAPS_TAB", itemTemplate); SetupMapTab(MapClassification.System, filter, "SYSTEM_MAPS_TAB_BUTTON", "SYSTEM_MAPS_TAB", itemTemplate);
@@ -240,5 +267,55 @@ namespace OpenRA.Mods.Common.Widgets.Logic
if (visibleMaps.Contains(selectedUid)) if (visibleMaps.Contains(selectedUid))
scrollpanels[tab].ScrollToItem(selectedUid); scrollpanels[tab].ScrollToItem(selectedUid);
} }
string DeleteMap(string map)
{
var path = Game.ModData.MapCache[map].Map.Path;
try
{
File.Delete(path);
Game.ModData.MapCache[map].Invalidate();
if (selectedUid == map)
selectedUid = WidgetUtils.ChooseInitialMap(tabMaps[currentTab].Select(mp => mp.Uid).FirstOrDefault());
}
catch (Exception ex)
{
Game.Debug("Failed to delete map file '{0}'. See the logs for details.", path);
Log.Write("debug", ex.ToString());
}
return selectedUid;
}
void DeleteOneMap(string map, Action<string> after)
{
ConfirmationDialogs.PromptConfirmAction(
"Delete map",
"Delete the map '{0}'?".F(Game.ModData.MapCache[map].Title),
() =>
{
var newUid = DeleteMap(map);
if (after != null)
after(newUid);
},
null,
"Delete");
}
void DeleteAllMaps(string[] maps, Action<string> after)
{
ConfirmationDialogs.PromptConfirmAction(
"Delete maps",
"Delete all maps on this page?",
() =>
{
maps.Do(m => DeleteMap(m));
if (after != null)
after(WidgetUtils.ChooseInitialMap(null));
},
null,
"Delete");
}
} }
} }

View File

@@ -126,6 +126,18 @@ Container@MAPCHOOSER_PANEL:
Width: 140 Width: 140
Height: 35 Height: 35
Text: Random Text: Random
Button@DELETE_MAP_BUTTON:
X: PARENT_RIGHT - 300 - WIDTH
Y: 499
Width: 140
Height: 35
Text: Delete Map
Button@DELETE_ALL_MAPS_BUTTON:
X: PARENT_RIGHT - 450 - WIDTH
Y: 499
Width: 140
Height: 35
Text: Delete All Maps
Button@BUTTON_OK: Button@BUTTON_OK:
Key: return Key: return
X: PARENT_RIGHT - WIDTH X: PARENT_RIGHT - WIDTH

View File

@@ -117,6 +117,20 @@ Background@MAPCHOOSER_PANEL:
Height: 25 Height: 25
Text: Random Map Text: Random Map
Font: Bold Font: Bold
Button@DELETE_MAP_BUTTON:
X: 160
Y: PARENT_BOTTOM - 45
Width: 120
Height: 25
Text: Delete Map
Font: Bold
Button@DELETE_ALL_MAPS_BUTTON:
X: 300
Y: PARENT_BOTTOM - 45
Width: 120
Height: 25
Text: Delete All Maps
Font: Bold
Button@BUTTON_OK: Button@BUTTON_OK:
X: PARENT_RIGHT - 270 X: PARENT_RIGHT - 270
Y: PARENT_BOTTOM - 45 Y: PARENT_BOTTOM - 45