我制作了一个使用多维数字阵列的图块级系统,例如:
new int[,]{
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0,},
{0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},
{0, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,},
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0,},
{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,},
每个特定数字代表一个块(平铺)。 这只是代码。我想编写一个可以加载一个级别的系统(一个多维的int数组) 该数组需要从字符串转换。我该怎么做?
public static int[,] getLvl(string lvlName = "")
{
string readed = "";
using (StreamReader read = new StreamReader(path))
{
readed = read.ReadToEnd();
}
return null; //What to put here?!?!?!
}
编辑:我还没有要读取的文件格式。所以你可以灵活。
答案 0 :(得分:1)
我认为您真的不需要或者应该尝试将其序列化为XML或其他格式,因为您的数据存储非常简单。
一种简单的方法是将数组作为逗号分隔值存储在文本文件中。所以一个级别可能有:
0,0,0,1
0,1,1,0
0,1,1,3
3,3,4,1
String.Split()
方法对于解析像这样简单的东西非常有用。它允许您根据特定的分隔字符将字符串拆分为子字符串数组。
一步一步:
首先,您可以使用var RowArray = MyString.Split('\n')
(换行符)将字符串拆分为行数组。这将为您留下阵列:
[0]: "0,0,0,1"
[1]: "0,1,1,0"
[2]: "0,1,1,3"
[3]: "3,3,4,1"
您可以看看Split()
在这里做了什么以及为什么这对您的案例有用。您可以依次在','
上运行拆分每行,留下一组数组,您可以很容易地将其转换为您正在寻找的2D数组。
这里的一个陷阱是某处,根据您的设计需要,一个不变量可能必须是文件中的所有行将具有相同的长度。或者,如果你不能保证这一点,你将不得不编写一些代码,以便在将下面的文本从行数组中转换为数组时,使宽度等于最长的行,并用0或一些填充空白其他方法。
0,0,0,1,6,4
0,1,1,0
0,1,1,3,2,6,3,7,1
3,3,4,1,2,4
答案 1 :(得分:1)
最短的方法是使用linq,格式为:
0,0,0,0,0
1,0,1,0,1
....
您可以使用以下句子:
int[][] Data = File.ReadAllLines( path )
.Select( s => s.Trim())
.Where( s => !string.IsNullOrempty(s))
.Select( s => s.Split( ',' )
.Select( token => int.Parse( token ) )
.ToArray( ) )
.ToArray( );
var DataToOneDim = Data.SelectMany( a => a).ToArray();
var Result = new int[Data[0].Length, Data.Length];
Buffer.BlockCopy( DataToOneDim, 0, Result, 0, DataToOneDim.Length );
答案 2 :(得分:0)
我相信还有其他一些相关内容,但您可以使用XML并解析每个可能的维度,或使用SoapFormatter
类一次序列化所有内容。以下是一个类似问题的链接,其中包含一些示例:
答案 3 :(得分:0)
我为你做得快,你可以做得更好不要忘记投票:_)
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
internal class Program
{
private static void Main(string[] args)
{
var array =
"{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,} , {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,}";
string input = array;
string pattern = @"{|}";
var index = 0;
var results = new int[100,100];
foreach (var result in Regex.Split(input, pattern))
{
var sp = result.Split(',');
if (sp.Length <4)
continue;
for (int i = 0; i < sp.Count(); i++)
{
if (!string.IsNullOrEmpty(sp[i]))
results[index,i] = Convert.ToInt32(sp[i]);
}
index++;
}
}
}
}