本文整理汇总了C#中BinaryPhoenix.Fusion.Runtime.Scripting.ScriptThread.AllocateArray方法的典型用法代码示例。如果您正苦于以下问题:C# ScriptThread.AllocateArray方法的具体用法?C# ScriptThread.AllocateArray怎么用?C# ScriptThread.AllocateArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BinaryPhoenix.Fusion.Runtime.Scripting.ScriptThread
的用法示例。
在下文中一共展示了ScriptThread.AllocateArray方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Explode
public void Explode(ScriptThread thread)
{
string explodee = thread.GetStringParameter(0);
char seperator = thread.GetStringParameter(1)[0];
string[] exploded = explodee.Split(new char[] { seperator });
int arrayMemoryIndex = thread.AllocateArray(DataType.String, exploded.Length);
for (int i = 0; i < exploded.Length; i++)
thread.SetArrayElement(arrayMemoryIndex, i, exploded[i]);
thread.SetReturnValueArray(arrayMemoryIndex);
}
示例2: CopyValueArrayFromThread
/// <summary>
/// Copies a runtime array value from one thread to another whilst keeping track of objects and memory allocations.
/// </summary>
/// <param name="value">Value to copy.</param>
/// <param name="toThread">Thread to copy from.</param>
/// <param name="fromThread">Thread to copy to.</param>
/// <returns>Memory index of new array.</returns>
public int CopyValueArrayFromThread(RuntimeValue value, ScriptThread toThread, ScriptThread fromThread)
{
// Create the array.
int arraySize = GetArrayLength(value.MemoryIndex);
int arrayIndex = toThread.AllocateArray(value.DataType.DataType, arraySize);
// Array of objects, how fun.
if (value.DataType.DataType == DataType.Object)
{
for (int j = 0; j < arraySize; j++)
{
RuntimeValue elementValue = fromThread._process.MemoryHeap[arrayIndex + j];
if (elementValue.ObjectIndex == -1)
toThread.SetArrayElement(arrayIndex, j, (RuntimeObject)null);
else
toThread.SetArrayElement(arrayIndex, j, fromThread._process.ObjectHeap[elementValue.ObjectIndex]);
}
}
// Yay, an array of normal stuff.
else
{
for (int j = 0; j < arraySize; j++)
toThread.SetArrayElement(arrayIndex, j, fromThread._process.MemoryHeap[arrayIndex + j]);
}
return arrayIndex;
}
示例3: EntityChildren
public void EntityChildren(ScriptThread thread)
{
EntityNode entity = ((NativeObject)thread.GetObjectParameter(0)).Object as EntityNode;
if (entity == null)
{
DebugLogger.WriteLog((thread.Process.Url != null && thread.Process.Url != "" ? thread.Process.Url : "A script") + " called EntityChildren with an invalid object.", LogAlertLevel.Error);
return;
}
if (entity.Children.Count > 0)
{
int memoryIndex = thread.AllocateArray(DataType.Object, entity.Children.Count);
for (int i = 0; i < entity.Children.Count; i++)
{
thread.SetArrayElement(memoryIndex, i, new SceneNodeScriptObject((SceneNode)entity.Children[i]));
}
thread.SetReturnValueArray(memoryIndex);
}
}
示例4: EntityCollisionLayer
public void EntityCollisionLayer(ScriptThread thread)
{
EntityNode entity = ((NativeObject)thread.GetObjectParameter(0)).Object as EntityNode;
if (entity == null)
{
DebugLogger.WriteLog((thread.Process.Url != null && thread.Process.Url != "" ? thread.Process.Url : "A script") + " called EntityCollisionLayers with an invalid object.", LogAlertLevel.Error);
return;
}
if (entity.CollisionPolygon == null) return;
int arrayIndex = thread.AllocateArray(DataType.Int, entity.CollisionPolygon.Layers.Length);
for (int i = 0; i < entity.CollisionPolygon.Layers.Length; i++)
thread.SetArrayElement(arrayIndex, i, entity.CollisionPolygon.Layers[i]);
thread.SetReturnValueArray(arrayIndex);
}
示例5: EntitiesOfType
public void EntitiesOfType(ScriptThread thread)
{
string typeName = thread.GetStringParameter(0);
ArrayList list = new ArrayList();
foreach (SceneNode node in Fusion.Engine.Engine.GlobalInstance.Map.SceneGraph.EnumerateNodes())
{
if (node is ScriptedEntityNode && ((ScriptedEntityNode)node).Type.ToLower() == typeName)
list.Add(node);
}
if (list.Count > 0)
{
int memoryIndex = thread.AllocateArray(DataType.Object, list.Count);
for (int i = 0; i < list.Count; i++)
{
thread.SetArrayElement(memoryIndex, i, new SceneNodeScriptObject((SceneNode)list[i]));
}
thread.SetReturnValueArray(memoryIndex);
}
}