-
Notifications
You must be signed in to change notification settings - Fork 0
/
Saved Maps.cs
216 lines (209 loc) · 14.1 KB
/
Saved Maps.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
namespace HelloWorld;
public class SavedMaps
{
public static string[,] chooseMap(int i)
{
switch (i)
{
case 1:
return Level_1;
case 2:
return Level_2;
case 3:
return Level_3;
case 4:
return Level_4;
case 5:
return Level_5;
case 6:
return Level_6;
case 7:
return Level_7;
case 8:
return Level_8;
case 9:
return Level_9;
case 10:
return Level_10;
case 11:
return Level_11;
case 12:
return Level_12;
case 13:
return Level_13;
case 14:
return Level_14;
case 15:
return Level_15;
case 16:
return Level_16;
case 17:
return Level_17;
case 18:
return Level_18;
case 19:
return Level_19;
case 20:
Map.blockGeneratingLevel = true;
return Level_20;
case 21:
Map.blockGeneratingLevel = true;
return Level_21;
case 22:
Map.blockGeneratingLevel = true;
return Level_22;
case 23:
Map.blockGeneratingLevel = true;
return Level_23;
case 24:
Map.blockGeneratingLevel = true;
return Level_24;
case 25:
Map.blockGeneratingLevel = true;
return Level_25;
default:
return Level_1;
}
}
public static string[,] Level_1 = new string[3, 7] { { "#", "#", "#", "#", "#", "#", "#" },
{ "#", "1", "_", "_", "_", "a", "#" },
{ "#", "#", "#", "#", "#", "#", "#" } };
public static string[,] Level_2 = new string[6, 5] {{ "#", "#", "#", "#", "#"},
{ "#", "1", "#", "2", "#"},
{ "#", "_", "#", "_", "#",},
{ "#", "_", "#", "_", "#"},
{ "#", "a", "#", "b", "#"},
{ "#", "#", "#", "#", "#"}};
public static string[,] Level_3 = new string[5, 5] {{ "#", "#", "#", "#", "#"},
{ "#", "1", "b", "_", "#"},
{ "#", "#", "_", "#", "#",},
{ "#", "_", "a", "2", "#"},
{ "#", "#", "#", "#", "#"}};
public static string[,] Level_4 = new string[5, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "1", "#", "2", "#", "3", "#"},
{ "#", "c", "_", "b", "_", "a", "#"},
{ "#", "#", "#", "_", "#", "#", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_5 = new string[6, 6] {{ "#", "#", "#", "#", "#", "#"},
{ "#", "1", "#", "#", "#", "#"},
{ "#", "a", "2", "#", "_", "#"},
{ "#", "_", "b", "3", "d", "#"},
{ "#", "_", "_", "c", "4", "#"},
{ "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_6 = new string[5, 6] {{ "#", "#", "#", "#", "#", "#"},
{ "#", "_", "_", "2b", "#", "#"},
{ "#", "_", "1", "a", "5e", "#"},
{ "#", "3", "#", "c", "4d", "#"},
{ "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_7 = new string[4, 7] { { "#", "#", "#", "#", "#", "#", "#" },
{ "#", "b", "_", "+1", "_", "1", "#" },
{ "#", "_", "_", "_", "_", "_", "#" },
{ "#", "#", "#", "#", "#", "#", "#" } };
public static string[,] Level_8 = new string[4, 7] { { "#", "#", "#", "#", "#", "#", "#" },
{ "#", "#", "#", "#", "_", "2", "#" },
{ "#", "b", "1", "+1", "b", "_", "#" },
{ "#", "#", "#", "#", "#", "#", "#" } };
public static string[,] Level_9 = new string[5, 5] {{ "#", "#", "#", "#", "#"},
{ "#", "1", "#", "3", "#"},
{ "#", "+1", "c", "b", "#",},
{ "#", "2", "#", "b", "#"},
{ "#", "#", "#", "#", "#"}};
public static string[,] Level_10 = new string[5, 6] {{ "#", "#", "#", "#", "#", "#"},
{ "#", "_", "3", "1", "2", "#"},
{ "#", "_", "#", "+1", "#", "#"},
{ "#", "b", "a", "d", "#", "#"},
{ "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_11 = new string[5, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "_", "2", "+1", "1", "_", "#"},
{ "#", "1", "#", "#", "#", "3", "#"},
{ "#", "b", "a", "_", "c", "b", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_12 = new string[6, 6] {{ "#", "#", "#", "#", "#", "#"},
{ "#", "a", "b", "#", "#", "#"},
{ "#", "#", "_", "+1", "c", "#"},
{ "#", "#", "3", "4", "#", "#"},
{ "#", "#", "2", "1", "e", "#"},
{ "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_13 = new string[7, 6] {{ "#", "#", "#", "#", "#", "#"},
{ "#", "2", "+1", "3", "_", "#"},
{ "#", "#", "_", "#", "b", "#"},
{ "#", "#", "1", "_", "#", "#"},
{ "#", "#", "b", "_", "d", "#"},
{ "#", "#", "#", "c", "4", "#"},
{ "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_14 = new string[5, 5] {{ "#", "#", "#", "#", "#"},
{ "#", "+1", "1", "_", "#"},
{ "#", "d", "#", "b", "#",},
{ "#", "+2", "2", "_", "#"},
{ "#", "#", "#", "#", "#"}};
public static string[,] Level_15 = new string[7, 6] {{ "#", "#", "#", "#", "#", "#"},
{ "#", "_", "2b", "_", "#", "#"},
{ "#", "_", "#", "c", "#", "#"},
{ "#", "_", "3", "+1", "e", "#"},
{ "#", "_", "#", "+2", "#", "#"},
{ "#", "5", "4", "g", "#", "#"},
{ "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_16 = new string[8, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "#", "#", "_", "2", "+2" , "#"},
{ "#", "4", "2", "3", "#", "_", "#"},
{ "#", "#", "#", "+1", "_", "d", "#"},
{ "#", "#", "#", "#", "#", "b", "#"},
{ "#", "#", "#", "#", "#", "c", "#"},
{ "#", "#", "#", "#", "#", "e", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}
};
public static string[,] Level_17 = new string[6, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "#", "2", "#", "#", "#", "#"},
{ "#", "1", "+2", "+1", "+2", "+1", "#"},
{ "#", "#", "+1", "#", "g", "#", "#"},
{ "#", "#", "b", "1", "b", "#", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_18 = new string[6, 6] {{ "#", "#", "#", "#", "#", "#"},
{ "#", "+1", "+1", "+1", "#", "#"},
{ "#", "1", "#", "1", "_", "#"},
{ "#", "+1", "+1", "+1", "+1", "#"},
{ "#", "a", "#", "h", "#", "#"},
{ "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_19 = new string[5, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "i", "+1", "1", "+1", "+1", "#"},
{ "#", "#", "+1", "#", "1a", "+1", "#"},
{ "#", "#", "+1", "+1", "+1", "#", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_20 = new string[5, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "1", "_", "_", "_", "_", "#"},
{ "#", "b", "#", "#", "#", "+1", "#"},
{ "#", "_", "_", "_", "_", "_", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_21 = new string[6, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "#", "a", "#", "2", "#", "#"},
{ "#", "#", "_", "#", "_", "+1", "#"},
{ "#", "#", "1", "#", "c", "_", "#"},
{ "#", "c", "_", "3", "#", "#", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_22 = new string[5, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "_", "+1", "b", "+1", "_", "#"},
{ "#", "1", "a", "_", "1", "b", "#"},
{ "#", "#", "#", "1", "#", "#", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_23 = new string[5, 9] {{ "#", "#", "#", "#", "#", "#", "#", "#", "#"},
{ "#", "3", "#", "a", "-1", "-1", "_", "_", "#"},
{ "#", "_", "#", "d", "-1", "_", "_", "_", "#"},
{ "#", "_", "_", "+1", "5", "e", "+1", "3", "#"},
{ "#", "#", "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_24 = new string[9, 9] {{ "#", "#", "#", "#", "#", "#", "#", "#", "#"},
{ "#", "_", "d", "#", "#", "#", "#", "#", "#"},
{ "#", "_", "_", "2", "#", "2", "_", "_", "#"},
{ "#", "_", "_", "_", "#", "_", "b", "_", "#"},
{ "#", "-1", "_", "_", "b", "+1", "_", "-1", "#"},
{ "#", "_", "_", "5", "#", "3", "_", "_", "#"},
{ "#", "_", "_", "#", "c", "#", "_", "_", "#"},
{ "#", "_", "_", "_", "_", "_", "_", "_", "#"},
{ "#", "#", "#", "#", "#", "#", "#", "#", "#"}};
public static string[,] Level_25 = new string[7, 7] {{ "#", "#", "#", "#", "#", "#", "#"},
{ "#", "a", "_", "_", "_", "a", "#"},
{ "#", "_", "1", "1", "_", "_", "#"},
{ "#", "_", "_", "#", "1", "_", "#"},
{ "#", "_", "_", "1", "_", "_", "#"},
{ "#", "a", "_", "_", "_", "a", "#"},
{ "#", "#", "#", "#", "#", "#", "#"}};
}