- Prioritizes language file matching system language above all else - Secondarily prioritizes "default" lang file - Prioritizes lang files declared in meta file (low-to-high priority system) Moved resource files to one folder Added multi-file loading support Started creating a shared layout resource file Added language files - Swedish (default): Incomplete - English US (priority 0): Complete - English GB: (priority ): Complete Continued implementing ListVew Added reference support for 'top' variable in View.Draw()
31 lines
795 B
C#
31 lines
795 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.ConsoleForms
|
|
{
|
|
public sealed class ContextManager
|
|
{
|
|
public Context Current { get; private set; }
|
|
public LangManager I18n { get; private set; }
|
|
|
|
public ContextManager(bool doLang = true)
|
|
{
|
|
if (doLang) I18n = LangManager.LoadLang();
|
|
else I18n = LangManager.NO_LANG;
|
|
}
|
|
|
|
public void LoadContext(Context ctx)
|
|
{
|
|
Current?.OnDestroy();
|
|
Current = ctx;
|
|
Current.OnCreate();
|
|
}
|
|
|
|
public bool Update(ConsoleController.KeyEvent keypress, bool hasKeypress = true)
|
|
=> Current?.Update(keypress, hasKeypress) == true;
|
|
}
|
|
}
|