Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/BizHawk.Client.Common/lua/EmuLuaLibrary.UserData.cs
2 views
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;

using LuaInterface;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Client.Common;

namespace BizHawk.Client.EmuHawk
{
	[Description("A library for setting and retrieving dynamic data that will be saved and loaded with savestates")]
	public sealed class UserDataLibrary : LuaLibraryBase
	{
		public UserDataLibrary(Lua lua)
			: base(lua) { }

		public UserDataLibrary(Lua lua, Action<string> logOutputCallback)
			: base(lua, logOutputCallback) { }

		public override string Name { get { return "userdata"; } }

		[LuaMethodAttributes(
			"set",
			"adds or updates the data with the given key with the given value"
		)]
		public void Set(string name, object value)
		{
			Global.UserBag[name] = value;
		}

		[LuaMethodAttributes(
			"get",
			"gets the data with the given key, if the key does not exist it will return nil"
		)]
		public object Get(string key)
		{
			if (Global.UserBag.ContainsKey(key))
			{
				return Global.UserBag[key];
			}

			return null;
		}

		[LuaMethodAttributes(
			"clear",
			"clears all user data"
		)]
		public void Clear()
		{
			Global.UserBag.Clear();
		}

		[LuaMethodAttributes(
			"remove",
			"remove the data with the given key. Returns true if the element is successfully found and removed; otherwise, false."
		)]
		public bool Remove(string key)
		{
			return Global.UserBag.Remove(key);
		}

		[LuaMethodAttributes(
			"containskey",
			"returns whether or not there is an entry for the given key"
		)]
		public bool ContainsKey(string key)
		{
			return Global.UserBag.ContainsKey(key);
		}
	}
}