本文整理汇总了C#中Char.GetLength方法的典型用法代码示例。如果您正苦于以下问题:C# Char.GetLength方法的具体用法?C# Char.GetLength怎么用?C# Char.GetLength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Char
的用法示例。
在下文中一共展示了Char.GetLength方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ShortestDistance
Int32 ShortestDistance(Char[,] map)
{
Int32 i, j, sh, shi, shj, n = map.GetLength(0), m = map.GetLength(1);
Int32[,] dist = new Int32[n, m];
for (i = 0; i < n; ++i) {
for (j = 0; j < m; ++j) {
dist[i, j] = -1;
}
}
dist[0, 0] = 0;
Queue<Int32> qu = new Queue<Int32>();
qu.Enqueue(0);
qu.Enqueue(0);
while (qu.Count != 0) {
i = qu.Dequeue();
j = qu.Dequeue();
if (map[i, j] == 'x') {
return dist[i, j];
}
for (sh = 0; sh < 4; ++sh) {
shi = i + shift[sh, 0];
shj = j + shift[sh, 1];
if (shi >= 0 && shj >= 0 && shi < n && shj < m && map[shi, shj] != '#' && dist[shi, shj] < 0) {
dist[shi, shj] = dist[i, j] + 1;
qu.Enqueue(shi);
qu.Enqueue(shj);
}
}
}
return -1;
}
示例2: DrawMap
public void DrawMap(Char[,]AiMap,GameObject[,]VisualMap)
{
if (!Initialised)
PrevMap = new char[AiMap.GetLength(0),AiMap.GetLength(1)];
//will need to be updated to reflect changes i.e building, tree cutting
int height = 512; // map height
int width = 512;
for (int i = 0; i < height; ++i)
{
for (int j = 0; j < width; ++j)
{
if(PrevMap[i,j] != AiMap[i,j])
{
GameObject.DestroyImmediate(VisualMap[i, j]);
switch (AiMap[i, j])
{
case '.':
VisualMap[i, j] = GameObject.Instantiate(Walkable, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// walkable tile NOT GRASS
break;
case 'G':
VisualMap[i, j] = GameObject.Instantiate(Grass, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// walkable tile IS GRASS
break;
case '@':
VisualMap[i, j] = GameObject.Instantiate(OutOfBounds, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// OUT OF BOUNDS
break;
case 'O':
VisualMap[i, j] = GameObject.Instantiate(OutOfBounds, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// OUT OF BOUNDS
break;
case 'T':
VisualMap[i, j] = GameObject.Instantiate(Trees, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// TREES
break;
case 'S':
VisualMap[i, j] = GameObject.Instantiate(Swamp, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// SWAMP
break;
case 'W':
VisualMap[i, j] = GameObject.Instantiate(Water, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// WATER
break;
case 'E':
VisualMap[i, j] = GameObject.Instantiate(Entrance, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//Building Entrance Universal and Walkable
break;
case '1':
VisualMap[i, j] = GameObject.Instantiate(Barracks, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
// Barracks
break;
case '2':
VisualMap[i, j] = GameObject.Instantiate(School, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//School
break;
case '3':
VisualMap[i, j] = GameObject.Instantiate(Storage, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//Storage
break;
case '4':
VisualMap[i, j] = GameObject.Instantiate(Sawmill, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//sawmill
break;
case '5':
VisualMap[i, j] = GameObject.Instantiate(Blacksmith, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//blacksmith
break;
case '6':
VisualMap[i, j] = GameObject.Instantiate(Turf, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//Turf
break;
case '7':
VisualMap[i, j] = GameObject.Instantiate(Smelter, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//Smelter
break;
case '8':
VisualMap[i, j] = GameObject.Instantiate(House, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//HOuse
break;
case '9':
VisualMap[i, j] = GameObject.Instantiate(Mine, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//Mine
break;
case '0':
VisualMap[i, j] = GameObject.Instantiate(Quarry, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//Quarry
break;
case '-':
VisualMap[i, j] = GameObject.Instantiate(Market, new Vector3(i, j, -1), Quaternion.identity) as GameObject;//sprite goes here
//Market
break;
}
}
}
}
if (!Initialised)
{
Initialised = true;
PrevMap = AiMap;
//.........这里部分代码省略.........