Redirect mod chooser to content manager.
This commit is contained in:
@@ -124,7 +124,7 @@ namespace OpenRA.Mods.Common.LoadScreens
|
|||||||
if (contentInstalled)
|
if (contentInstalled)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
Game.InitializeMod(content.ContentInstallerMod, new Arguments());
|
Game.InitializeMod(content.ContentInstallerMod, new Arguments(new[] { "Content.Mod=" + modData.Manifest.Id }));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,14 +9,17 @@
|
|||||||
*/
|
*/
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
using OpenRA.Graphics;
|
using OpenRA.Graphics;
|
||||||
using OpenRA.Widgets;
|
using OpenRA.Widgets;
|
||||||
|
|
||||||
namespace OpenRA.Mods.Common.LoadScreens
|
namespace OpenRA.Mods.Common.LoadScreens
|
||||||
{
|
{
|
||||||
public sealed class ModChooserLoadScreen : ILoadScreen
|
public sealed class ModContentLoadScreen : ILoadScreen
|
||||||
{
|
{
|
||||||
Sprite sprite;
|
Sprite sprite;
|
||||||
Rectangle bounds;
|
Rectangle bounds;
|
||||||
@@ -46,10 +49,46 @@ namespace OpenRA.Mods.Common.LoadScreens
|
|||||||
|
|
||||||
public void StartGame(Arguments args)
|
public void StartGame(Arguments args)
|
||||||
{
|
{
|
||||||
var widgetArgs = new WidgetArgs();
|
var modId = args.GetValue("Content.Mod", null);
|
||||||
|
Manifest selectedMod;
|
||||||
|
if (modId == null || !Game.Mods.TryGetValue(modId, out selectedMod))
|
||||||
|
throw new InvalidOperationException("Invalid or missing Content.Mod argument.");
|
||||||
|
|
||||||
Ui.LoadWidget("MODCHOOSER_BACKGROUND", Ui.Root, widgetArgs);
|
var content = selectedMod.Get<ModContent>(Game.ModData.ObjectCreator);
|
||||||
Ui.OpenWindow("MODCHOOSER_DIALOG", widgetArgs);
|
|
||||||
|
Ui.LoadWidget("MODCHOOSER_BACKGROUND", Ui.Root, new WidgetArgs());
|
||||||
|
|
||||||
|
if (!IsModInstalled(content))
|
||||||
|
{
|
||||||
|
var widgetArgs = new WidgetArgs
|
||||||
|
{
|
||||||
|
{ "continueLoading", () =>
|
||||||
|
Game.RunAfterTick(() => Game.InitializeMod(modId, new Arguments())) },
|
||||||
|
{ "mod", selectedMod },
|
||||||
|
{ "content", content },
|
||||||
|
};
|
||||||
|
|
||||||
|
Ui.OpenWindow("CONTENT_PROMPT_PANEL", widgetArgs);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var widgetArgs = new WidgetArgs
|
||||||
|
{
|
||||||
|
{ "mod", selectedMod },
|
||||||
|
{ "content", content },
|
||||||
|
{ "onCancel", () =>
|
||||||
|
Game.RunAfterTick(() => Game.InitializeMod(modId, new Arguments())) }
|
||||||
|
};
|
||||||
|
|
||||||
|
Ui.OpenWindow("CONTENT_PANEL", widgetArgs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IsModInstalled(ModContent content)
|
||||||
|
{
|
||||||
|
return content.Packages
|
||||||
|
.Where(p => p.Value.Required)
|
||||||
|
.All(p => p.Value.TestFiles.All(f => File.Exists(Platform.ResolvePath(f))));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
<Compile Include="Lint\CheckTargetHealthRadius.cs" />
|
<Compile Include="Lint\CheckTargetHealthRadius.cs" />
|
||||||
<Compile Include="Lint\LintBuildablePrerequisites.cs" />
|
<Compile Include="Lint\LintBuildablePrerequisites.cs" />
|
||||||
<Compile Include="Lint\LintExts.cs" />
|
<Compile Include="Lint\LintExts.cs" />
|
||||||
<Compile Include="LoadScreens\ModChooserLoadScreen.cs" />
|
<Compile Include="LoadScreens\ModContentLoadScreen.cs" />
|
||||||
<Compile Include="ActorInitializer.cs" />
|
<Compile Include="ActorInitializer.cs" />
|
||||||
<Compile Include="Scripting\Properties\AmmoPoolProperties.cs" />
|
<Compile Include="Scripting\Properties\AmmoPoolProperties.cs" />
|
||||||
<Compile Include="ShroudExts.cs" />
|
<Compile Include="ShroudExts.cs" />
|
||||||
@@ -632,7 +632,6 @@
|
|||||||
<Compile Include="Widgets\Logic\Editor\TileSelectorLogic.cs" />
|
<Compile Include="Widgets\Logic\Editor\TileSelectorLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\MapChooserLogic.cs" />
|
<Compile Include="Widgets\Logic\MapChooserLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\MissionBrowserLogic.cs" />
|
<Compile Include="Widgets\Logic\MissionBrowserLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\ModBrowserLogic.cs" />
|
|
||||||
<Compile Include="Widgets\Logic\MusicPlayerLogic.cs" />
|
<Compile Include="Widgets\Logic\MusicPlayerLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\PerfDebugLogic.cs" />
|
<Compile Include="Widgets\Logic\PerfDebugLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\ReplayBrowserLogic.cs" />
|
<Compile Include="Widgets\Logic\ReplayBrowserLogic.cs" />
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
{
|
{
|
||||||
{ "mod", mod },
|
{ "mod", mod },
|
||||||
{ "content", content },
|
{ "content", content },
|
||||||
{ "onCancel", Ui.CloseWindow }
|
{ "onCancel", () => { } }
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -71,9 +71,9 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
var backButton = panel.Get<ButtonWidget>("BACK_BUTTON");
|
var quitButton = panel.Get<ButtonWidget>("QUIT_BUTTON");
|
||||||
backButton.Bounds.Y += headerHeight;
|
quitButton.Bounds.Y += headerHeight;
|
||||||
backButton.OnClick = Ui.CloseWindow;
|
quitButton.OnClick = Game.Exit;
|
||||||
Game.RunAfterTick(Ui.ResetTooltips);
|
Game.RunAfterTick(Ui.ResetTooltips);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -87,13 +87,13 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
mainMenu.Get<ButtonWidget>("MODS_BUTTON").OnClick = () =>
|
mainMenu.Get<ButtonWidget>("CONTENT_BUTTON").OnClick = () =>
|
||||||
{
|
{
|
||||||
// Switching mods changes the world state (by disposing it),
|
// Switching mods changes the world state (by disposing it),
|
||||||
// so we can't do this inside the input handler.
|
// so we can't do this inside the input handler.
|
||||||
Game.RunAfterTick(() =>
|
Game.RunAfterTick(() =>
|
||||||
{
|
{
|
||||||
Game.InitializeMod("modchooser", null);
|
Game.InitializeMod("modchooser", new Arguments(new[] { "Content.Mod=" + modData.Manifest.Id }));
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,211 +0,0 @@
|
|||||||
#region Copyright & License Information
|
|
||||||
/*
|
|
||||||
* Copyright 2007-2017 The OpenRA Developers (see AUTHORS)
|
|
||||||
* This file is part of OpenRA, which is free software. It is made
|
|
||||||
* available to you under the terms of the GNU General Public License
|
|
||||||
* as published by the Free Software Foundation, either version 3 of
|
|
||||||
* the License, or (at your option) any later version. For more
|
|
||||||
* information, see COPYING.
|
|
||||||
*/
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Drawing;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using OpenRA.Graphics;
|
|
||||||
using OpenRA.Primitives;
|
|
||||||
using OpenRA.Widgets;
|
|
||||||
|
|
||||||
namespace OpenRA.Mods.Common.Widgets.Logic
|
|
||||||
{
|
|
||||||
public class ModBrowserLogic : ChromeLogic
|
|
||||||
{
|
|
||||||
readonly Widget modList;
|
|
||||||
readonly ButtonWidget modTemplate;
|
|
||||||
readonly Manifest[] allMods;
|
|
||||||
readonly Dictionary<string, Sprite> previews = new Dictionary<string, Sprite>();
|
|
||||||
readonly Dictionary<string, Sprite> logos = new Dictionary<string, Sprite>();
|
|
||||||
readonly Cache<Manifest, ModContent> content = new Cache<Manifest, ModContent>(LoadModContent);
|
|
||||||
|
|
||||||
readonly Widget modChooserPanel;
|
|
||||||
readonly ButtonWidget loadButton;
|
|
||||||
readonly SheetBuilder sheetBuilder;
|
|
||||||
Manifest selectedMod;
|
|
||||||
string selectedAuthor;
|
|
||||||
string selectedDescription;
|
|
||||||
int modOffset = 0;
|
|
||||||
|
|
||||||
static ModContent LoadModContent(Manifest mod)
|
|
||||||
{
|
|
||||||
return mod.Get<ModContent>(Game.ModData.ObjectCreator);
|
|
||||||
}
|
|
||||||
|
|
||||||
[ObjectCreator.UseCtor]
|
|
||||||
public ModBrowserLogic(Widget widget, ModData modData)
|
|
||||||
{
|
|
||||||
modChooserPanel = widget;
|
|
||||||
loadButton = modChooserPanel.Get<ButtonWidget>("LOAD_BUTTON");
|
|
||||||
loadButton.OnClick = () => LoadMod(selectedMod);
|
|
||||||
loadButton.IsDisabled = () => selectedMod.Id == modData.Manifest.Id;
|
|
||||||
|
|
||||||
var contentButton = modChooserPanel.Get<ButtonWidget>("CONFIGURE_BUTTON");
|
|
||||||
contentButton.OnClick = () =>
|
|
||||||
{
|
|
||||||
var widgetArgs = new WidgetArgs
|
|
||||||
{
|
|
||||||
{ "mod", selectedMod },
|
|
||||||
{ "content", content[selectedMod] },
|
|
||||||
{ "onCancel", () => { } }
|
|
||||||
};
|
|
||||||
|
|
||||||
Ui.OpenWindow("CONTENT_PANEL", widgetArgs);
|
|
||||||
};
|
|
||||||
|
|
||||||
modChooserPanel.Get<ButtonWidget>("QUIT_BUTTON").OnClick = Game.Exit;
|
|
||||||
|
|
||||||
modList = modChooserPanel.Get("MOD_LIST");
|
|
||||||
modTemplate = modList.Get<ButtonWidget>("MOD_TEMPLATE");
|
|
||||||
|
|
||||||
modChooserPanel.Get<LabelWidget>("MOD_DESC").GetText = () => selectedDescription;
|
|
||||||
modChooserPanel.Get<LabelWidget>("MOD_TITLE").GetText = () => selectedMod.Metadata.Title;
|
|
||||||
modChooserPanel.Get<LabelWidget>("MOD_AUTHOR").GetText = () => selectedAuthor;
|
|
||||||
modChooserPanel.Get<LabelWidget>("MOD_VERSION").GetText = () => selectedMod.Metadata.Version;
|
|
||||||
|
|
||||||
var prevMod = modChooserPanel.Get<ButtonWidget>("PREV_MOD");
|
|
||||||
prevMod.OnClick = () => { modOffset -= 1; RebuildModList(); };
|
|
||||||
prevMod.IsVisible = () => modOffset > 0;
|
|
||||||
|
|
||||||
var nextMod = modChooserPanel.Get<ButtonWidget>("NEXT_MOD");
|
|
||||||
nextMod.OnClick = () => { modOffset += 1; RebuildModList(); };
|
|
||||||
nextMod.IsVisible = () => modOffset + 5 < allMods.Length;
|
|
||||||
|
|
||||||
modChooserPanel.Get<RGBASpriteWidget>("MOD_PREVIEW").GetSprite = () =>
|
|
||||||
{
|
|
||||||
Sprite ret = null;
|
|
||||||
previews.TryGetValue(selectedMod.Id, out ret);
|
|
||||||
return ret;
|
|
||||||
};
|
|
||||||
|
|
||||||
sheetBuilder = new SheetBuilder(SheetType.BGRA);
|
|
||||||
allMods = Game.Mods.Values.Where(m => !m.Metadata.Hidden)
|
|
||||||
.OrderBy(m => m.Metadata.Title)
|
|
||||||
.ToArray();
|
|
||||||
|
|
||||||
// Load preview images, and eat any errors
|
|
||||||
foreach (var mod in allMods)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
using (var stream = mod.Package.GetStream("preview.png"))
|
|
||||||
using (var preview = new Bitmap(stream))
|
|
||||||
if (preview.Width == 296 && preview.Height == 196)
|
|
||||||
previews.Add(mod.Id, sheetBuilder.Add(preview));
|
|
||||||
}
|
|
||||||
catch (Exception) { }
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
using (var stream = mod.Package.GetStream("logo.png"))
|
|
||||||
using (var logo = new Bitmap(stream))
|
|
||||||
if (logo.Width == 96 && logo.Height == 96)
|
|
||||||
logos.Add(mod.Id, sheetBuilder.Add(logo));
|
|
||||||
}
|
|
||||||
catch (Exception) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
SelectMod(Game.Mods["ra"]);
|
|
||||||
|
|
||||||
RebuildModList();
|
|
||||||
}
|
|
||||||
|
|
||||||
void RebuildModList()
|
|
||||||
{
|
|
||||||
modList.RemoveChildren();
|
|
||||||
|
|
||||||
var width = modTemplate.Bounds.Width;
|
|
||||||
var height = modTemplate.Bounds.Height;
|
|
||||||
var innerMargin = modTemplate.Bounds.Left;
|
|
||||||
var outerMargin = (modList.Bounds.Width - Math.Min(5, allMods.Length) * width - 4 * innerMargin) / 2;
|
|
||||||
var stride = width + innerMargin;
|
|
||||||
|
|
||||||
for (var i = 0; i < 5; i++)
|
|
||||||
{
|
|
||||||
var j = i + modOffset;
|
|
||||||
if (j >= allMods.Length)
|
|
||||||
break;
|
|
||||||
|
|
||||||
var mod = allMods[j];
|
|
||||||
|
|
||||||
var item = modTemplate.Clone() as ButtonWidget;
|
|
||||||
item.Bounds = new Rectangle(outerMargin + i * stride, 0, width, height);
|
|
||||||
item.IsHighlighted = () => selectedMod == mod;
|
|
||||||
item.OnClick = () => SelectMod(mod);
|
|
||||||
item.OnDoubleClick = () => LoadMod(mod);
|
|
||||||
item.OnKeyPress = e =>
|
|
||||||
{
|
|
||||||
if (e.MultiTapCount == 2)
|
|
||||||
LoadMod(mod);
|
|
||||||
else
|
|
||||||
SelectMod(mod);
|
|
||||||
};
|
|
||||||
|
|
||||||
item.TooltipText = mod.Metadata.Title;
|
|
||||||
|
|
||||||
if (j < 9)
|
|
||||||
item.Key = new Hotkey((Keycode)((int)Keycode.NUMBER_1 + j), Modifiers.None);
|
|
||||||
|
|
||||||
Sprite logo = null;
|
|
||||||
logos.TryGetValue(mod.Id, out logo);
|
|
||||||
item.Get<RGBASpriteWidget>("MOD_LOGO").GetSprite = () => logo;
|
|
||||||
item.Get("MOD_NO_LOGO").IsVisible = () => logo == null;
|
|
||||||
|
|
||||||
modList.AddChild(item);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void SelectMod(Manifest mod)
|
|
||||||
{
|
|
||||||
selectedMod = mod;
|
|
||||||
selectedAuthor = "By " + (mod.Metadata.Author ?? "unknown author");
|
|
||||||
selectedDescription = (mod.Metadata.Description ?? "").Replace("\\n", "\n");
|
|
||||||
var selectedIndex = Array.IndexOf(allMods, mod);
|
|
||||||
if (selectedIndex - modOffset > 4)
|
|
||||||
modOffset = selectedIndex - 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
void LoadMod(Manifest mod)
|
|
||||||
{
|
|
||||||
var modId = mod.Id;
|
|
||||||
if (!IsModInstalled(mod))
|
|
||||||
{
|
|
||||||
var widgetArgs = new WidgetArgs
|
|
||||||
{
|
|
||||||
{ "continueLoading", () =>
|
|
||||||
Game.RunAfterTick(() => Game.InitializeMod(modId, new Arguments())) },
|
|
||||||
{ "mod", selectedMod },
|
|
||||||
{ "content", content[selectedMod] },
|
|
||||||
};
|
|
||||||
|
|
||||||
Ui.OpenWindow("CONTENT_PROMPT_PANEL", widgetArgs);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Game.RunAfterTick(() =>
|
|
||||||
{
|
|
||||||
Ui.CloseWindow();
|
|
||||||
sheetBuilder.Dispose();
|
|
||||||
Game.InitializeMod(modId, null);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
bool IsModInstalled(Manifest mod)
|
|
||||||
{
|
|
||||||
return content[mod].Packages
|
|
||||||
.Where(p => p.Value.Required)
|
|
||||||
.All(p => p.Value.TestFiles.All(f => File.Exists(Platform.ResolvePath(f))));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -78,12 +78,12 @@ Container@MENU_BACKGROUND:
|
|||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: Extras
|
Text: Extras
|
||||||
Button@MODS_BUTTON:
|
Button@CONTENT_BUTTON:
|
||||||
X: 600
|
X: 600
|
||||||
Y: 0
|
Y: 0
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 35
|
Height: 35
|
||||||
Text: Mods
|
Text: Manage Content
|
||||||
Button@QUIT_BUTTON:
|
Button@QUIT_BUTTON:
|
||||||
X: 750
|
X: 750
|
||||||
Y: 0
|
Y: 0
|
||||||
|
|||||||
@@ -70,12 +70,12 @@ Container@MAINMENU:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Text: Extras
|
Text: Extras
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@MODS_BUTTON:
|
Button@CONTENT_BUTTON:
|
||||||
X: PARENT_RIGHT/2-WIDTH/2
|
X: PARENT_RIGHT/2-WIDTH/2
|
||||||
Y: 220
|
Y: 220
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: Mods
|
Text: Manage Content
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@QUIT_BUTTON:
|
Button@QUIT_BUTTON:
|
||||||
X: PARENT_RIGHT/2-WIDTH/2
|
X: PARENT_RIGHT/2-WIDTH/2
|
||||||
|
|||||||
@@ -57,12 +57,12 @@ Container@MAINMENU:
|
|||||||
Height: 30
|
Height: 30
|
||||||
Text: Extras
|
Text: Extras
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@MODS_BUTTON:
|
Button@CONTENT_BUTTON:
|
||||||
X: PARENT_RIGHT/2-WIDTH/2
|
X: PARENT_RIGHT/2-WIDTH/2
|
||||||
Y: 220
|
Y: 220
|
||||||
Width: 140
|
Width: 140
|
||||||
Height: 30
|
Height: 30
|
||||||
Text: Mods
|
Text: Manage Content
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@QUIT_BUTTON:
|
Button@QUIT_BUTTON:
|
||||||
X: PARENT_RIGHT/2-WIDTH/2
|
X: PARENT_RIGHT/2-WIDTH/2
|
||||||
|
|||||||
@@ -331,12 +331,31 @@ Background@CONTENT_PROMPT_PANEL:
|
|||||||
Height: 32
|
Height: 32
|
||||||
Text: Quick Install
|
Text: Quick Install
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Button@BACK_BUTTON:
|
Button@QUIT_BUTTON:
|
||||||
X: PARENT_RIGHT - WIDTH - 30
|
X: PARENT_RIGHT - WIDTH - 30
|
||||||
Y: PARENT_BOTTOM - 52
|
Y: PARENT_BOTTOM - 52
|
||||||
Background: button-highlighted
|
Background: button-highlighted
|
||||||
Width: 110
|
Width: 110
|
||||||
Height: 32
|
Height: 32
|
||||||
Text: Back
|
Text: Quit
|
||||||
Font: Bold
|
Font: Bold
|
||||||
Key: escape
|
Key: escape
|
||||||
|
|
||||||
|
Background@MODCHOOSER_BACKGROUND:
|
||||||
|
Background: background
|
||||||
|
Width: WINDOW_RIGHT
|
||||||
|
Height: WINDOW_BOTTOM
|
||||||
|
|
||||||
|
Background@BUTTON_TOOLTIP:
|
||||||
|
Logic: ButtonTooltipLogic
|
||||||
|
Background: panel-thinborder
|
||||||
|
Height: 25
|
||||||
|
Children:
|
||||||
|
Label@LABEL:
|
||||||
|
X: 5
|
||||||
|
Height: 23
|
||||||
|
Font: Bold
|
||||||
|
Label@HOTKEY:
|
||||||
|
TextColor: FFFF00
|
||||||
|
Height: 23
|
||||||
|
Font: Bold
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
Metadata:
|
Metadata:
|
||||||
Title: Mod Chooser
|
Title: Mod Content Manager
|
||||||
Version: {DEV_VERSION}
|
Version: {DEV_VERSION}
|
||||||
Author: The OpenRA Developers
|
Author: The OpenRA Developers
|
||||||
Hidden: true
|
Hidden: true
|
||||||
@@ -19,13 +19,12 @@ Assemblies:
|
|||||||
common|OpenRA.Mods.Common.dll
|
common|OpenRA.Mods.Common.dll
|
||||||
|
|
||||||
ChromeLayout:
|
ChromeLayout:
|
||||||
modchooser|modchooser.yaml
|
|
||||||
modchooser|content.yaml
|
modchooser|content.yaml
|
||||||
|
|
||||||
Notifications:
|
Notifications:
|
||||||
modchooser|notifications.yaml
|
modchooser|notifications.yaml
|
||||||
|
|
||||||
LoadScreen: ModChooserLoadScreen
|
LoadScreen: ModContentLoadScreen
|
||||||
Image: ./mods/modchooser/chrome.png
|
Image: ./mods/modchooser/chrome.png
|
||||||
|
|
||||||
ChromeMetrics:
|
ChromeMetrics:
|
||||||
|
|||||||
@@ -1,169 +0,0 @@
|
|||||||
Background@MODCHOOSER_BACKGROUND:
|
|
||||||
Background: background
|
|
||||||
Width: WINDOW_RIGHT
|
|
||||||
Height: WINDOW_BOTTOM
|
|
||||||
|
|
||||||
Background@MODCHOOSER_DIALOG:
|
|
||||||
Logic: ModBrowserLogic
|
|
||||||
Children:
|
|
||||||
Container:
|
|
||||||
X: (WINDOW_RIGHT - WIDTH) / 2
|
|
||||||
Y: (WINDOW_BOTTOM - 500) / 2
|
|
||||||
Width: 750
|
|
||||||
Height: 514
|
|
||||||
Children:
|
|
||||||
Background@DIALOG_BACKGROUND:
|
|
||||||
Y: 69
|
|
||||||
Width: PARENT_RIGHT
|
|
||||||
Height: PARENT_BOTTOM - 69
|
|
||||||
Background: panel-bg
|
|
||||||
Children:
|
|
||||||
Label:
|
|
||||||
X: 53
|
|
||||||
Y: 30
|
|
||||||
Align: Left
|
|
||||||
Font: MediumBold
|
|
||||||
Text: Choose your Battlefield:
|
|
||||||
Container@MOD_LIST:
|
|
||||||
X: 53
|
|
||||||
Y: 60
|
|
||||||
Width: PARENT_RIGHT-106
|
|
||||||
Height: 150
|
|
||||||
Children:
|
|
||||||
Button@MOD_TEMPLATE:
|
|
||||||
X: 16
|
|
||||||
Width: 114
|
|
||||||
Height: 114
|
|
||||||
TooltipContainer: TOOLTIP_CONTAINER
|
|
||||||
IgnoreChildMouseOver: true
|
|
||||||
Children:
|
|
||||||
Container@MOD_NO_LOGO:
|
|
||||||
Width: PARENT_RIGHT
|
|
||||||
Height: PARENT_BOTTOM
|
|
||||||
Children:
|
|
||||||
Label@A:
|
|
||||||
Width: PARENT_RIGHT
|
|
||||||
Height: PARENT_BOTTOM-20
|
|
||||||
Text: Missing or
|
|
||||||
Align: Center
|
|
||||||
Label@B:
|
|
||||||
Y: 20
|
|
||||||
Width: PARENT_RIGHT
|
|
||||||
Height: PARENT_BOTTOM-20
|
|
||||||
Text: invalid logo
|
|
||||||
Align: Center
|
|
||||||
RGBASprite@MOD_LOGO:
|
|
||||||
X: 9
|
|
||||||
Y: 9
|
|
||||||
Button@PREV_MOD:
|
|
||||||
X: 15
|
|
||||||
Y: 85
|
|
||||||
Width: 25
|
|
||||||
Height: 64
|
|
||||||
IgnoreChildMouseOver: true
|
|
||||||
Children:
|
|
||||||
Image:
|
|
||||||
X: 2
|
|
||||||
ImageCollection: modchooser
|
|
||||||
ImageName: leftarrow
|
|
||||||
Button@NEXT_MOD:
|
|
||||||
X: PARENT_RIGHT - WIDTH - 20
|
|
||||||
Y: 85
|
|
||||||
Width: 25
|
|
||||||
Height: 64
|
|
||||||
IgnoreChildMouseOver: true
|
|
||||||
Children:
|
|
||||||
Image:
|
|
||||||
X: 3
|
|
||||||
ImageCollection: modchooser
|
|
||||||
ImageName: rightarrow
|
|
||||||
Background@RULE:
|
|
||||||
X: 30
|
|
||||||
Y: PARENT_BOTTOM - 249
|
|
||||||
Width: PARENT_RIGHT - 60
|
|
||||||
Height: 150
|
|
||||||
Background: panel-rule
|
|
||||||
Label@MOD_TITLE:
|
|
||||||
X: PARENT_RIGHT - 400
|
|
||||||
Y: PARENT_BOTTOM-220
|
|
||||||
Align: Left
|
|
||||||
Font: Bold
|
|
||||||
Label@MOD_AUTHOR:
|
|
||||||
X: PARENT_RIGHT - 400
|
|
||||||
Y: PARENT_BOTTOM-205
|
|
||||||
Align: Left
|
|
||||||
Font: TinyBold
|
|
||||||
Label@MOD_VERSION:
|
|
||||||
X: PARENT_RIGHT - 400
|
|
||||||
Y: PARENT_BOTTOM-192
|
|
||||||
Align: Left
|
|
||||||
Font: Tiny
|
|
||||||
Label@MOD_DESC:
|
|
||||||
X: PARENT_RIGHT - 400
|
|
||||||
Y: PARENT_BOTTOM-175
|
|
||||||
Align: Left
|
|
||||||
VAlign: Top
|
|
||||||
Font: Tiny
|
|
||||||
Background@PREVIEW:
|
|
||||||
X: 30
|
|
||||||
Y: PARENT_BOTTOM - 25 - HEIGHT
|
|
||||||
Width: 300
|
|
||||||
Height: 200
|
|
||||||
Background: panel-thinborder
|
|
||||||
Children:
|
|
||||||
Label:
|
|
||||||
Width: PARENT_RIGHT
|
|
||||||
Height: PARENT_BOTTOM
|
|
||||||
Text: Missing or invalid preview
|
|
||||||
Align: Center
|
|
||||||
RGBASprite@MOD_PREVIEW:
|
|
||||||
X: 2
|
|
||||||
Y: 2
|
|
||||||
Button@LOAD_BUTTON:
|
|
||||||
X: PARENT_RIGHT - 300 - WIDTH
|
|
||||||
Y: PARENT_BOTTOM - 25 - HEIGHT
|
|
||||||
Width: 100
|
|
||||||
Height: 32
|
|
||||||
Text: Play
|
|
||||||
Background: button-highlighted
|
|
||||||
Key: return
|
|
||||||
Button@CONFIGURE_BUTTON:
|
|
||||||
X: PARENT_RIGHT - 145 - WIDTH
|
|
||||||
Y: PARENT_BOTTOM - 25 - HEIGHT
|
|
||||||
Width: 140
|
|
||||||
Height: 32
|
|
||||||
Text: Manage Content
|
|
||||||
Background: button-highlighted
|
|
||||||
Button@QUIT_BUTTON:
|
|
||||||
X: PARENT_RIGHT - 30 - WIDTH
|
|
||||||
Y: PARENT_BOTTOM - 25 - HEIGHT
|
|
||||||
Width: 100
|
|
||||||
Height: 32
|
|
||||||
Text: Quit
|
|
||||||
Background: button-highlighted
|
|
||||||
Background@DIALOG_HEADER:
|
|
||||||
Width: PARENT_RIGHT
|
|
||||||
Height: 72
|
|
||||||
Background: panel-header
|
|
||||||
Children:
|
|
||||||
Image:
|
|
||||||
X: (PARENT_RIGHT - WIDTH) / 2
|
|
||||||
Y: 0-28
|
|
||||||
Width: 280
|
|
||||||
ImageCollection: modchooser
|
|
||||||
ImageName: logo
|
|
||||||
TooltipContainer@TOOLTIP_CONTAINER:
|
|
||||||
|
|
||||||
Background@BUTTON_TOOLTIP:
|
|
||||||
Logic: ButtonTooltipLogic
|
|
||||||
Background: panel-thinborder
|
|
||||||
Height: 25
|
|
||||||
Children:
|
|
||||||
Label@LABEL:
|
|
||||||
X: 5
|
|
||||||
Height: 23
|
|
||||||
Font: Bold
|
|
||||||
Label@HOTKEY:
|
|
||||||
TextColor: FFFF00
|
|
||||||
Height: 23
|
|
||||||
Font: Bold
|
|
||||||
Reference in New Issue
Block a user