Skip to content

Commit 8a18354

Browse files
committed
Support for Dark Souls Remastered added
1 parent 421e83d commit 8a18354

7 files changed

+155
-31
lines changed

PraiseTheSave/App.config

+6
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@
4040
<setting name="AutomaticBackups" serializeAs="String">
4141
<value>False</value>
4242
</setting>
43+
<setting name="LastDS1RChange" serializeAs="String">
44+
<value />
45+
</setting>
46+
<setting name="ds1Rlocation" serializeAs="String">
47+
<value />
48+
</setting>
4349
</PraiseTheSave.Properties.Settings>
4450
</userSettings>
4551
</configuration>

PraiseTheSave/Form1.Designer.cs

+45-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PraiseTheSave/Form1.cs

+61-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public partial class Form1 : Form
2020
public DateTime? lastDS1Change;
2121
public DateTime? lastDS2Change;
2222
public DateTime? lastDS3Change;
23+
public DateTime? lastDS1RChange;
2324

2425
public Form1()
2526
{
@@ -64,7 +65,7 @@ public static long DirSize(DirectoryInfo d)
6465

6566
private FileInfo getLatestFileInDir(DirectoryInfo dir)
6667
{
67-
return dir.GetFiles().OrderByDescending(f => f.LastWriteTime).First();
68+
return dir.GetFiles("*.*", SearchOption.AllDirectories).OrderByDescending(f => f.LastWriteTime).First();
6869
}
6970

7071
private FileInfo getOldestFileInDir(DirectoryInfo dir)
@@ -103,6 +104,12 @@ public void checkSaveLocations()
103104
PraiseTheSave.Properties.Settings.Default.ds3location = Environment.ExpandEnvironmentVariables(ds3save);
104105
}
105106

107+
if (PraiseTheSave.Properties.Settings.Default.ds1Rlocation == "" || !Directory.Exists(PraiseTheSave.Properties.Settings.Default.ds1location))
108+
{
109+
string ds1save = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\NBGI\DARK SOULS REMASTERED";
110+
PraiseTheSave.Properties.Settings.Default.ds1Rlocation = Environment.ExpandEnvironmentVariables(ds1save);
111+
}
112+
106113
PraiseTheSave.Properties.Settings.Default.Save();
107114
}
108115

@@ -143,7 +150,7 @@ public void refreshInfo()
143150
}
144151
else
145152
{
146-
ds3_found_folder.Text = "found no ds3 saves.";
153+
ds1_found_folder.Text = "found no ds1 saves.";
147154
}
148155

149156

@@ -159,7 +166,7 @@ public void refreshInfo()
159166
}
160167
else
161168
{
162-
ds3_found_folder.Text = "found no ds3 saves.";
169+
ds2_found_folder.Text = "found no ds2 saves.";
163170
}
164171

165172

@@ -176,6 +183,20 @@ public void refreshInfo()
176183
{
177184
ds3_found_folder.Text = "found no ds3 saves.";
178185
}
186+
187+
string ds1Rsave = PraiseTheSave.Properties.Settings.Default.ds1Rlocation;
188+
if (Directory.Exists(ds1Rsave))
189+
{
190+
long ds1R_found_folder_size = DirSize(new DirectoryInfo(ds1Rsave));
191+
DateTime ds1R_last_change = File.GetLastWriteTime(getLatestFileInDir(new DirectoryInfo(ds1Rsave)).FullName);
192+
193+
ds1R_found_folder.Text = "found ds1 remastered saves! total size is " + (ds1R_found_folder_size / 1024.0 / 1024.0).ToString("0.00") + "Mb";
194+
ds1R_last_change_label.Text = "last change was at: " + ds1R_last_change.ToString();
195+
}
196+
else
197+
{
198+
ds1R_found_folder.Text = "found no ds1 remastered saves.";
199+
}
179200
}
180201

181202

@@ -188,6 +209,7 @@ public void doBackup(object sender, EventArgs e)
188209
string ds1destination = PraiseTheSave.Properties.Settings.Default.SaveLocation + @"\ds1\";
189210
string ds2destination = PraiseTheSave.Properties.Settings.Default.SaveLocation + @"\ds2\";
190211
string ds3destination = PraiseTheSave.Properties.Settings.Default.SaveLocation + @"\ds3\";
212+
string ds1Rdestination = PraiseTheSave.Properties.Settings.Default.SaveLocation + @"\ds1_remastered\";
191213

192214

193215
if (!Directory.Exists(PraiseTheSave.Properties.Settings.Default.SaveLocation))
@@ -294,6 +316,37 @@ public void doBackup(object sender, EventArgs e)
294316
PraiseTheSave.Properties.Settings.Default.LastDS3Change = File.GetLastWriteTime(getLatestFileInDir(new DirectoryInfo(ds3save)).FullName);
295317
}
296318

319+
string ds1Rsave = PraiseTheSave.Properties.Settings.Default.ds1Rlocation;
320+
if (Directory.Exists(ds1Rsave))
321+
{
322+
if (!Directory.Exists(ds1Rdestination))
323+
Directory.CreateDirectory(ds1Rdestination);
324+
325+
326+
if (
327+
IsDirectoryEmpty(ds1Rdestination)
328+
||
329+
!lastDS1RChange.HasValue
330+
||
331+
lastDS1RChange != File.GetLastWriteTime(getLatestFileInDir(new DirectoryInfo(ds1Rsave)).FullName)
332+
)
333+
{
334+
while (PraiseTheSave.Properties.Settings.Default.SaveAmount <= Directory.GetFiles(ds1Rdestination).Length)
335+
{
336+
FileInfo deleteMe = getOldestFileInDir(new DirectoryInfo(ds1Rdestination));
337+
deleteMe.Delete();
338+
}
339+
340+
using (ZipFile zip = new ZipFile())
341+
{
342+
zip.AddDirectory(PraiseTheSave.Properties.Settings.Default.ds1Rlocation);
343+
zip.Save(ds1Rdestination + localDate.ToString("yyyyMMddHHmmss") + ".zip");
344+
}
345+
}
346+
347+
PraiseTheSave.Properties.Settings.Default.LastDS1RChange = File.GetLastWriteTime(getLatestFileInDir(new DirectoryInfo(ds1Rsave)).FullName);
348+
}
349+
297350
PraiseTheSave.Properties.Settings.Default.Save();
298351
refreshInfo();
299352
}
@@ -365,6 +418,11 @@ private void ds3link_Click(object sender, EventArgs e)
365418
System.Diagnostics.Process.Start(PraiseTheSave.Properties.Settings.Default.ds3location);
366419
}
367420

421+
private void ds1Rlink_Click(object sender, EventArgs e)
422+
{
423+
System.Diagnostics.Process.Start(PraiseTheSave.Properties.Settings.Default.ds1Rlocation);
424+
}
425+
368426
private void backupFolderLabel_Click(object sender, EventArgs e)
369427
{
370428
System.Diagnostics.Process.Start(PraiseTheSave.Properties.Settings.Default.SaveLocation);

PraiseTheSave/PraiseTheSave.csproj

+8-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
<FileAlignment>512</FileAlignment>
1414
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1515
<IsWebBootstrapper>true</IsWebBootstrapper>
16+
<NuGetPackageImportStamp>
17+
</NuGetPackageImportStamp>
1618
<PublishUrl>C:\Users\dkrei\Desktop\PraiseTheSave\</PublishUrl>
1719
<Install>true</Install>
1820
<InstallFrom>Web</InstallFrom>
@@ -26,13 +28,11 @@
2628
<InstallUrl>https://github.com/lucidlemon/PraiseTheSave/</InstallUrl>
2729
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
2830
<WebPage>publish.htm</WebPage>
29-
<ApplicationRevision>2</ApplicationRevision>
30-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31+
<ApplicationRevision>3</ApplicationRevision>
32+
<ApplicationVersion>1.1.0.%2a</ApplicationVersion>
3133
<UseApplicationTrust>false</UseApplicationTrust>
3234
<PublishWizardCompleted>true</PublishWizardCompleted>
3335
<BootstrapperEnabled>true</BootstrapperEnabled>
34-
<NuGetPackageImportStamp>
35-
</NuGetPackageImportStamp>
3636
</PropertyGroup>
3737
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3838
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -63,12 +63,15 @@
6363
<GenerateManifests>true</GenerateManifests>
6464
</PropertyGroup>
6565
<PropertyGroup>
66-
<SignManifests>true</SignManifests>
66+
<SignManifests>false</SignManifests>
6767
</PropertyGroup>
6868
<PropertyGroup>
6969
<ApplicationIcon>sunbro_logo.ico</ApplicationIcon>
7070
</PropertyGroup>
7171
<PropertyGroup />
72+
<PropertyGroup>
73+
<StartupObject>PraiseTheSave.Program</StartupObject>
74+
</PropertyGroup>
7275
<ItemGroup>
7376
<Reference Include="Ionic.Zip, Version=1.9.8.0, Culture=neutral, PublicKeyToken=6583c7c814667745, processorArchitecture=MSIL">
7477
<HintPath>..\packages\DotNetZip.1.9.8\lib\net20\Ionic.Zip.dll</HintPath>

PraiseTheSave/Properties/AssemblyInfo.cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System.Reflection;
1+
using System.Resources;
2+
using System.Reflection;
23
using System.Runtime.CompilerServices;
34
using System.Runtime.InteropServices;
45

@@ -10,7 +11,7 @@
1011
[assembly: AssemblyConfiguration("")]
1112
[assembly: AssemblyCompany("")]
1213
[assembly: AssemblyProduct("PraiseTheSave")]
13-
[assembly: AssemblyCopyright("Copyright © 2016")]
14+
[assembly: AssemblyCopyright("Copyright © 2018")]
1415
[assembly: AssemblyTrademark("")]
1516
[assembly: AssemblyCulture("")]
1617

@@ -34,3 +35,5 @@
3435
// [assembly: AssemblyVersion("1.0.*")]
3536
[assembly: AssemblyVersion("1.0.0.0")]
3637
[assembly: AssemblyFileVersion("1.0.0.0")]
38+
[assembly: NeutralResourcesLanguage("en-US")]
39+

PraiseTheSave/Properties/Settings.Designer.cs

+24-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PraiseTheSave/Properties/Settings.settings

+6
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,11 @@
3232
<Setting Name="AutomaticBackups" Type="System.Boolean" Scope="User">
3333
<Value Profile="(Default)">False</Value>
3434
</Setting>
35+
<Setting Name="LastDS1RChange" Type="System.DateTime" Scope="User">
36+
<Value Profile="(Default)" />
37+
</Setting>
38+
<Setting Name="ds1Rlocation" Type="System.String" Scope="User">
39+
<Value Profile="(Default)" />
40+
</Setting>
3541
</Settings>
3642
</SettingsFile>

0 commit comments

Comments
 (0)