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
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ZooBOTanica
{
using DSALib;
using DSALib.Characters;
public partial class CritCreateForm : Form
{
public DSALib.Characters.Critter critter;
public CritCreateForm()
{
this.InitializeComponent();
this.AllowDrop = true;
}
public new void Load(string path)
{
this.critter = Critter.Load(path);
this.AeEdit.Value = this.critter.Astralpunkte_Basis;
this.AuEdit.Value = this.critter.Ausdauer_Basis;
this.GWEdit.Value = this.critter.Gw;
this.GsEdit.Value = this.critter.Gs;
this.KoEdit.Value = this.critter.Ko;
this.LeEdit.Value = this.critter.Lebenspunkte_Basis;
this.MREdit.Value = this.critter.Mr;
this.NameEdit.Text = this.critter.Name;
//this.PAEdit.Value = this.critter.Pa;
this.RSEdit.Value = this.critter.Rs;
this.INIEdit.Text = this.critter.Ini;
this.MeisterkommentarEdit.Text = this.critter.Comment;
this.AttackList.Rows.Clear();
foreach (var critterAttack in this.critter.CritterAttacks)
{
this.AttackList.Rows.Add(critterAttack.Name, critterAttack.At, critterAttack.Tp, critterAttack.Comment);
}
}
public void CritCreateForm_DragDrop(object sender, DragEventArgs e)
{
this.Load(e.Data.GetData(DataFormats.Text).ToString());
}
public void LoadButton_Click(object sender, EventArgs e)
{
var dig = new OpenFileDialog
{
CheckFileExists = true,
Multiselect = false,
Title = "Gespeicherten Gegner laden",
Filter = "*Json Dateien (*.json)|*.json"
};
if (dig.ShowDialog() == DialogResult.OK)
{
this.Load(dig.FileName);
}
}
public void SaveButton_Click(object sender, EventArgs e)
{
this.critter = new Critter();
this.critter.Astralpunkte_Basis = (int)this.AeEdit.Value;
this.critter.Ausdauer_Basis = (int)this.AuEdit.Value;
this.critter.Gw = (int)this.GWEdit.Value;
this.critter.Gs = (int)this.GsEdit.Value;
this.critter.Ko = (int)this.KoEdit.Value;
this.critter.Lebenspunkte_Basis = (int)this.LeEdit.Value;
this.critter.Mr = (int)this.MREdit.Value;
this.critter.Name = this.NameEdit.Text;
//this.critter.Pa = (int)this.PAEdit.Value;
this.critter.Rs = (int)this.RSEdit.Value;
this.critter.Ini = this.INIEdit.Text;
this.critter.Comment = this.MeisterkommentarEdit.Text;
this.critter.CritterAttacks = new List<CritterAttack>();
for (var index = 0; index < this.AttackList.Rows.Count -1; index++)
{
DataGridViewRow Row = this.AttackList.Rows[index];
this.critter.CritterAttacks.Add(
new CritterAttack(
(Row.Cells[0].Value ?? "").ToString(),
Convert.ToInt32(Row.Cells[1].Value ?? 0),
(Row.Cells[2].Value ?? "").ToString(),
(Row.Cells[3].Value ?? "").ToString()));
}
this.critter.Save();
}
}
}
|