2008-05-29 21:09:43 +00:00
|
|
|
|
|
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
|
|
* This program is released under GNU General Public License
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Namespaces
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Text;
|
|
|
|
using CodeImp.DoomBuilder.IO;
|
|
|
|
using CodeImp.DoomBuilder.Data;
|
|
|
|
using System.IO;
|
|
|
|
using System.Diagnostics;
|
2008-06-02 20:34:52 +00:00
|
|
|
using CodeImp.DoomBuilder.Config;
|
2008-05-29 21:09:43 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.Types
|
|
|
|
{
|
2008-05-30 11:05:44 +00:00
|
|
|
[TypeHandler(3, "Boolean", true)]
|
2008-05-29 21:09:43 +00:00
|
|
|
internal class BoolHandler : TypeHandler
|
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
2008-06-02 20:34:52 +00:00
|
|
|
private EnumList list;
|
2008-05-29 21:09:43 +00:00
|
|
|
private bool value;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
2008-06-02 20:34:52 +00:00
|
|
|
public override bool IsEnumerable { get { return true; } }
|
|
|
|
public override bool IsLimitedToEnums { get { return true; } }
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor
|
|
|
|
|
|
|
|
// When set up for an argument
|
|
|
|
public BoolHandler() : base()
|
|
|
|
{
|
|
|
|
// Make enums
|
|
|
|
list = new EnumList();
|
|
|
|
list.Add(new EnumItem("true", "True"));
|
|
|
|
list.Add(new EnumItem("false", "False"));
|
|
|
|
}
|
|
|
|
|
2008-05-29 21:09:43 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
|
|
|
public override void SetValue(object value)
|
|
|
|
{
|
|
|
|
bool result;
|
|
|
|
|
2008-05-30 22:14:12 +00:00
|
|
|
// null?
|
|
|
|
if(value == null)
|
|
|
|
{
|
|
|
|
this.value = false;
|
|
|
|
}
|
2008-05-29 21:09:43 +00:00
|
|
|
// already bool?
|
2008-05-30 22:14:12 +00:00
|
|
|
else if(value is bool)
|
2008-05-29 21:09:43 +00:00
|
|
|
{
|
|
|
|
this.value = (bool)value;
|
|
|
|
}
|
|
|
|
// int or float?
|
|
|
|
else if((value is int) || (value is float))
|
|
|
|
{
|
|
|
|
// Set directly
|
|
|
|
this.value = (Math.Abs((float)value) > 0.0001f);
|
|
|
|
}
|
|
|
|
// string?
|
|
|
|
else if(value is string)
|
|
|
|
{
|
|
|
|
// Try parsing as string
|
|
|
|
if(value.ToString().ToLowerInvariant().StartsWith("t"))
|
|
|
|
this.value = true;
|
|
|
|
else
|
|
|
|
this.value = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.value = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override object GetValue()
|
|
|
|
{
|
|
|
|
return this.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override int GetIntValue()
|
|
|
|
{
|
|
|
|
if(this.value) return 1; else return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string GetStringValue()
|
|
|
|
{
|
|
|
|
return this.value.ToString();
|
|
|
|
}
|
|
|
|
|
2008-06-02 20:34:52 +00:00
|
|
|
// This returns an enum list
|
|
|
|
public override EnumList GetEnumList()
|
|
|
|
{
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2008-05-29 21:09:43 +00:00
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|