本文整理汇总了C#中Component.GetHashCode方法的典型用法代码示例。如果您正苦于以下问题:C# Component.GetHashCode方法的具体用法?C# Component.GetHashCode怎么用?C# Component.GetHashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Component
的用法示例。
在下文中一共展示了Component.GetHashCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DrawGhost
public override void DrawGhost(int x, int y, MicroWorld.Graphics.Renderer renderer, Component.Rotation rotation)
{
if (texture0cw == null) return;
switch (rotation)
{
case Component.Rotation.cw0:
renderer.Draw(texture0cw, new Rectangle(x, y, (int)Size.X, (int)Size.Y), new Color(1f, 1f, 1f, 0.5f));
break;
default:
renderer.Draw(texture0cw, new Vector2(x, y) + GetCenter(parent.ComponentRotation), null,
new Color(1f, 1f, 1f, 0.5f), rotation.GetHashCode() * (float)Math.PI / 2f,
GetCenter(parent.ComponentRotation), 1);
break;
}
}
示例2: DrawGhost
public override void DrawGhost(int x, int y, MicroWorld.Graphics.Renderer renderer, Component.Rotation rotation)
{
if (texture0cw == null) return;
switch (rotation)
{
case Component.Rotation.cw0:
renderer.Draw(texture0cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
new Color(1f, 1f, 1f, 0.5f));
renderer.Draw(textureConnection1_0cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
renderer.Draw(textureConnection2_0cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
break;
case Component.Rotation.cw90:
renderer.Draw(texture90cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
new Color(1f, 1f, 1f, 0.5f));
renderer.Draw(textureConnection1_90cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
renderer.Draw(textureConnection2_90cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
break;
case Component.Rotation.cw180:
renderer.Draw(texture180cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
new Color(1f, 1f, 1f, 0.5f));
renderer.Draw(textureConnection1_180cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
renderer.Draw(textureConnection2_180cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
break;
case Component.Rotation.cw270:
renderer.Draw(texture270cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
new Color(1f, 1f, 1f, 0.5f));
renderer.Draw(textureConnection1_270cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
renderer.Draw(textureConnection2_270cw, new Rectangle(x, y, (int)GetSizeRotated(rotation).X, (int)GetSizeRotated(rotation).Y),
Color.DarkRed * 0.5f);
break;
default:
renderer.Draw(texture0cw, new Vector2(x, y) + GetCenter(parent.ComponentRotation), null,
new Color(1f, 1f, 1f, 0.5f), rotation.GetHashCode() * (float)Math.PI / 2f,
GetCenter(parent.ComponentRotation), 1);
break;
}
}
示例3: getCombinedFieldHash
private int getCombinedFieldHash(FieldInfo field, Component component){
return (field.GetHashCode() +"]["+component.GetHashCode()).GetHashCode();
}