* Reworked padding rendering (now handled natively by View) * Fixed how ConsoleController renders dirty views * Explicitly added padding to the LayoutMeta dimensions computation * Added support for updating passwords in SessionContext * Completed account display system * Added many more resources * Simplified internationalization * Added clientside representations for accounts and transations * MOAR COMMENTS! * Optimized account serialization * Corrected issue where copying a user simply copied references to the user accounts; not actually copying accounts (which caused jank) * Fixed timestamp for TimeStampWriter * Probably some other minor things
33 lines
954 B
C#
33 lines
954 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;
|
|
|
|
public string GetIntlString(string i18n) => I18n.MapIfExists((i18n.StartsWith(LangManager.MAPPING_PREFIX) ? "" : LangManager.MAPPING_PREFIX) + i18n);
|
|
}
|
|
}
|