New Save Parameters
This commit is contained in:
parent
216f9d1d54
commit
7be0e816f1
@ -107,12 +107,14 @@ namespace OWTrack
|
|||||||
{
|
{
|
||||||
MessageBox.Show(e.Message);
|
MessageBox.Show(e.Message);
|
||||||
}
|
}
|
||||||
update();
|
|
||||||
}
|
}
|
||||||
else if (!tr.LoacteOW())
|
else if (!tr.LoacteOW())
|
||||||
{
|
{
|
||||||
tr.gamePath = getGamePath();
|
tr.gamePath = getGamePath();
|
||||||
}
|
}
|
||||||
|
ExeTrackCheckBx.Checked = tr.TrackOW;
|
||||||
|
SRCheckBx.Checked = tr.TrackSR;
|
||||||
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
private string getGamePath()
|
private string getGamePath()
|
||||||
@ -129,20 +131,6 @@ namespace OWTrack
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
update();
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private Tracker savedTracker()
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return JsonConvert.DeserializeObject<Tracker>(File.ReadAllText(Paths.SAVES));
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
MessageBox.Show(e.Message);
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -151,6 +139,7 @@ namespace OWTrack
|
|||||||
{
|
{
|
||||||
srBut.Enabled = state;
|
srBut.Enabled = state;
|
||||||
srTextBox.Enabled = state;
|
srTextBox.Enabled = state;
|
||||||
|
tr.TrackSR = state;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OWTrackFunc(bool state)
|
private void OWTrackFunc(bool state)
|
||||||
@ -243,16 +232,19 @@ namespace OWTrack
|
|||||||
private void SRCheckBx_CheckedChanged(object sender, EventArgs e)
|
private void SRCheckBx_CheckedChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
SRSystem(SRCheckBx.Checked);
|
SRSystem(SRCheckBx.Checked);
|
||||||
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ExeTrackCheckBx_CheckedChanged(object sender, EventArgs e)
|
private void ExeTrackCheckBx_CheckedChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
OWTrackFunc(ExeTrackCheckBx.Checked);
|
OWTrackFunc(ExeTrackCheckBx.Checked);
|
||||||
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ChngOWPathBtn_Click(object sender, EventArgs e)
|
private void ChngOWPathBtn_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
tr.gamePath = getGamePath();
|
tr.gamePath = getGamePath();
|
||||||
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -44,6 +44,7 @@ namespace OWTrack
|
|||||||
public void setNewSR(int SR) { newSR = SR; }
|
public void setNewSR(int SR) { newSR = SR; }
|
||||||
public int srDiff() { return newSR - startSR; }
|
public int srDiff() { return newSR - startSR; }
|
||||||
public bool TrackOW = true;
|
public bool TrackOW = true;
|
||||||
|
public bool TrackSR = true;
|
||||||
|
|
||||||
public bool owRunning()
|
public bool owRunning()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user