本文整理汇总了C#中IO.GetBool方法的典型用法代码示例。如果您正苦于以下问题:C# IO.GetBool方法的具体用法?C# IO.GetBool怎么用?C# IO.GetBool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IO
的用法示例。
在下文中一共展示了IO.GetBool方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoadAll
public override void LoadAll(IO.ComponentData Compound)
{
base.LoadAll(Compound);
for (int i = 0; i < Joints.Length; i++)
{
j[i] = Compound.GetInt("J" + i.ToString());
}
for (int i = 0; i < Wires.Length; i++)
{
w[i] = Compound.GetInt("W" + i.ToString());
}
sw = Compound.GetBool("Swapped");
OrigSwapped = Compound.GetBool("OrigSwapped");
}
示例2: LoadAll
public override void LoadAll(IO.ComponentData Compound)
{
base.LoadAll(Compound);
connectedWiresData = Compound.GetString("ConnectedWires");
//containingComponentsData = Compound.GetString("ContainingComponents");
CanBeGround = Compound.GetBool("CanGround");
CanProvidePower = Compound.GetBool("CanPower");
isGround = Compound.GetBool("IsGround");
isProvidingPower = Compound.GetBool("IsPower");
SendingVoltage = Compound.GetDouble("SendingVoltage");
SendingCurrent = Compound.GetDouble("SendingCurrent");
}
示例3: LoadAll
public override void LoadAll(IO.ComponentData Compound)
{
base.LoadAll(Compound);
for (int i = 0; i < Joints.Length; i++)
{
j[i] = Compound.GetInt("J" + i.ToString());
}
for (int i = 0; i < Wires.Length; i++)
{
w[i] = Compound.GetInt("W" + i.ToString());
}
connectedLeft = Compound.GetBool("Left");
connectedUp = Compound.GetBool("Up");
connectedRight = Compound.GetBool("Right");
connectedDown = Compound.GetBool("Down");
leftUp = Compound.GetBool("LeftUp");
leftRight = Compound.GetBool("LeftRight");
leftDown = Compound.GetBool("LeftDown");
upRight = Compound.GetBool("UpRight");
upDown = Compound.GetBool("UpDown");
rightDown = Compound.GetBool("RightDown");
left = (PortState)Compound.GetInt("PortLeft");
up = (PortState)Compound.GetInt("PortUp");
right = (PortState)Compound.GetInt("PortRight");
down = (PortState)Compound.GetInt("PortDown");
}
示例4: LoadAll
public override void LoadAll(IO.ComponentData Compound)
{
base.LoadAll(Compound);
if (ID == 45)
{
}
j1 = Compound.GetInt("J1");
j2 = Compound.GetInt("J2");
Resistance = Compound.GetDouble("Resistance");
IsConnected = Compound.GetBool("IsConnected");
direction = (WireDirection)Compound.GetInt("Direction");
if (Compound.Contains("SendingVoltage"))
{
sendingVoltage = Compound.GetDouble("SendingVoltage");
sendingCurrent = Compound.GetDouble("SendingCurrent");
CanSendVoltageOrCurrent = Compound.GetBool("CanSendVoltage");
}
dp = Compound.GetString("DrawPath");
}
示例5: LoadAll
public override void LoadAll(IO.ComponentData Compound)
{
base.LoadAll(Compound);
j0 = Compound.GetInt("J0");
j1 = Compound.GetInt("J1");
w = Compound.GetInt("W");
(Logics as Logics.PulseFormerLogics).cycle = Compound.GetBool("Cycle");
double td = Compound.GetDouble("MaxRes");
if (Double.IsNaN(td)) td = MaxResistance;
MaxResistance = (float)td;
String s = Compound.GetString("Pulses");
var a = s.Split(';');
float[] t = new float[a.Length];
for (int i = 0; i < a.Length; i++)
{
try
{
t[i] = (float)Convert.ToDouble(a[i]);
}
catch
{
t[i] = 0;
}
}
(Logics as Logics.PulseFormerLogics).pulses = t;
}
示例6: LoadAll
/// <summary>
/// Called when a scheme is being loaded
/// </summary>
/// <param name="Compound">Use this to read data</param>
public virtual void LoadAll(IO.ComponentData Compound)
{
ID = Compound.GetInt("ID");
Graphics.Position = Compound.GetVector2("Position");
Graphics.Size = Compound.GetVector2("Size");
Graphics.Visible = Compound.GetBool("Visible");
rotation = (Rotation)Compound.GetInt("Rotation");
isRemovable = Compound.GetBool("Removable");
}