191 {
194 {
195 dictionary[row2.id] = row2;
196 }
198 foreach (Row row3 in rows)
199 {
202 string key;
203 foreach (KeyValuePair<string, System.Reflection.FieldInfo>
item in rowFields)
204 {
205 item.Deconstruct(out key, out var value);
206 string text = key;
207 System.Reflection.FieldInfo fieldInfo = value;
208 if (!(text == "parse"))
209 {
210 fieldInfo.SetValue(row, fieldInfo.GetValue(obj));
211 }
212 }
213 row.id = row3.id;
214 row._origin = row3._origin;
215 if (row3.LV != 0)
216 {
217 row.LV = row3.LV;
218 }
219 if (row3.chance != -1)
220 {
221 row.chance = row3.chance;
222 }
223 if (row3.value != -1)
224 {
225 row.value = row3.value;
226 }
227 else
228 {
230 }
231 if (row3.weight != -1)
232 {
233 row.weight = row3.weight;
234 }
235 if (!row3.tiles.IsEmpty())
236 {
237 row.tiles = row3.tiles;
238 }
239 if (!row3.skins.IsEmpty())
240 {
241 row.skins = row3.skins;
242 }
243 if (!row3.name.IsEmpty())
244 {
245 row.name = row3.name;
246 }
247 if (!row3.name_JP.IsEmpty())
248 {
249 row.name_JP = row3.name_JP;
250 }
251 if (!row3.detail.IsEmpty())
252 {
253 row.detail = row3.detail;
254 }
255 if (!row3.detail_JP.IsEmpty())
256 {
257 row.detail_JP = row3.detail_JP;
258 }
259 if (!row3.unit.IsEmpty())
260 {
261 row.unit = row3.unit;
262 }
263 if (!row3.unit_JP.IsEmpty())
264 {
265 row.unit_JP = row3.unit_JP;
266 }
267 if (!row3.vals.IsEmpty())
268 {
269 row.vals = row3.vals;
270 }
271 if (!row3.components.IsEmpty())
272 {
273 row.components = row3.components;
274 }
275 if (!row3.defMat.IsEmpty())
276 {
277 row.defMat = row3.defMat;
278 }
279 if (!row3.trait.IsEmpty())
280 {
281 row.trait = row3.trait;
282 }
283 if (!row3.category.IsEmpty())
284 {
285 row.category = row3.category;
286 }
287 if (!row3.factory.IsEmpty())
288 {
289 row.factory = row3.factory;
290 }
291 if (!row3.tag.IsEmpty())
292 {
293 row.tag = row3.tag;
294 }
295 row.recipeKey = row3.recipeKey;
296 if (!row3.parse.IsEmpty())
297 {
298 key = row3._origin;
299 switch (key)
300 {
301 case "lamp_ceil2":
302 case "window":
303 case "windowL":
304 row.idExtra = row3.parse[0];
305 break;
306 default:
307 {
308 string[] parse = row3.parse;
309 for (int i = 0; i < parse.Length; i++)
310 {
311 string[] array = parse[i].Split('/');
312 switch (array[0])
313 {
314 case "elec":
315 row.electricity = array[1].ToInt();
316 break;
317 case "render":
318 row._idRenderData = array[1];
319 break;
320 case "tiletype":
321 row._tileType = array[1];
322 break;
323 case "anime":
324 row.anime = ((array.Length <= 4) ? ((array.Length <= 3) ? new int[2]
325 {
326 array[1].ToInt(),
327 array[2].ToInt()
328 } : new int[3]
329 {
330 array[1].ToInt(),
331 array[2].ToInt(),
332 array[3].ToInt()
333 }) : new int[4]
334 {
335 array[1].ToInt(),
336 array[2].ToInt(),
337 array[3].ToInt(),
338 array[4].ToInt()
339 });
340 break;
341 case "skin":
342 {
343 string[] array3 = array[1].Split('|');
344 row.skins = new int[array3.Length];
345 for (int k = 0; k < array3.Length; k++)
346 {
347 row.
skins[k] = array3[k].ToInt();
348 }
349 break;
350 }
351 case "alt":
352 {
353 string[] array2 = array[1].Split('|');
354 row.altTiles = new int[array2.Length];
355 for (int j = 0; j < array2.Length; j++)
356 {
357 row.
altTiles[j] = array2[j].ToInt();
358 }
359 row.ignoreAltFix = true;
360 break;
361 }
362 case "naming":
363 row.naming = array[1];
364 break;
365 case "ex":
366 row.idActorEx = array[1];
367 break;
368 case "sound":
369 row.idSound = array[1];
370 break;
371 case "color":
372 row.colorMod = 100;
373 break;
374 case "no_color":
375 row.colorMod = 0;
376 break;
377 case "unique":
378 row.quality = 4;
379 break;
380 case "ele":
381 {
382 int[] second = new int[2]
383 {
385 array[2].ToInt()
386 };
387 row.elements = row.
elements.Concat(second).ToArray();
388 break;
389 }
390 }
391 }
392 break;
393 }
394 }
395 }
399 }
400 rows.Clear();
401 }
static SourceManager sources
Dictionary< string, FieldInfo > GetRowFields()
virtual void OnImportRow(Row _r, SourceThing.Row c)
override void OnImportData(SourceData data)