mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-11 14:34:21 -05:00
1.0.7 - CopyPaste buttons, Fixed critical issues with arm9, fixed flags to binary algorithm
This commit is contained in:
parent
91f56d71a5
commit
ca84be557d
|
|
@ -422,6 +422,8 @@
|
|||
<Content Include="Graphics\Camera Angles\HGSS\hgsscamera13.png" />
|
||||
<Content Include="Graphics\Camera Angles\HGSS\hgsscamera14.png" />
|
||||
<Content Include="Graphics\Camera Angles\HGSS\hgsscamera15.png" />
|
||||
<None Include="Graphics\Program Icons\copyIcon.png" />
|
||||
<None Include="Graphics\Program Icons\pasteIcon.png" />
|
||||
<Content Include="Tools\blz.exe">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
|
|
|||
BIN
DS_Map/Graphics/Program Icons/copyIcon.png
Normal file
BIN
DS_Map/Graphics/Program Icons/copyIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 649 B |
BIN
DS_Map/Graphics/Program Icons/pasteIcon.png
Normal file
BIN
DS_Map/Graphics/Program Icons/pasteIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 702 B |
|
|
@ -367,7 +367,7 @@ namespace DSPRE
|
|||
writer.Write(mapName);
|
||||
writer.Write(areaIcon);
|
||||
writer.Write(weather);
|
||||
writer.Write(camera*16 + areaSettings);
|
||||
writer.Write((byte)(camera*16 + areaSettings));
|
||||
writer.Write(followMode);
|
||||
writer.Write(flags);
|
||||
}
|
||||
|
|
|
|||
1234
DS_Map/Main Window.Designer.cs
generated
1234
DS_Map/Main Window.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
|
|
@ -462,37 +462,24 @@ namespace DSPRE {
|
|||
case "D":
|
||||
case "P":
|
||||
case "Plat":
|
||||
flag1CheckBox.Text = "Fly";
|
||||
flag2CheckBox.Text = "Escape Rope";
|
||||
flag3CheckBox.Text = "Run";
|
||||
flag7CheckBox.Text = "Fly";
|
||||
flag6CheckBox.Text = "Escape Rope";
|
||||
flag5CheckBox.Text = "Run";
|
||||
flag4CheckBox.Text = "Bike";
|
||||
flag5CheckBox.Text = "Battle BG b4";
|
||||
flag6CheckBox.Text = "Battle BG b3";
|
||||
flag7CheckBox.Text = "Battle BG b2";
|
||||
flag8CheckBox.Text = "Battle BG b1";
|
||||
flag3CheckBox.Text = "Battle BG b4";
|
||||
flag2CheckBox.Text = "Battle BG b3";
|
||||
flag1CheckBox.Text = "Battle BG b2";
|
||||
flag0CheckBox.Text = "Battle BG b1";
|
||||
break;
|
||||
default:
|
||||
flag1CheckBox.Text = "Flag 1";
|
||||
flag2CheckBox.Text = "Flag 2";
|
||||
flag3CheckBox.Text = "Flag 3";
|
||||
flag4CheckBox.Text = "Fly";
|
||||
flag5CheckBox.Text = "Escape Rope";
|
||||
flag7CheckBox.Text = "Flag 7";
|
||||
flag6CheckBox.Text = "Flag 6";
|
||||
flag7CheckBox.Text = "Bicycle";
|
||||
flag8CheckBox.Text = "Flag 8";
|
||||
break;
|
||||
}
|
||||
}
|
||||
private void SetupCameraAndAreaProperties() {
|
||||
switch (romInfo.gameVersion) {
|
||||
case "D":
|
||||
case "P":
|
||||
case "Plat":
|
||||
areaSettingsComboBox.Visible = false;
|
||||
areaSettingsLabel.Visible = false;
|
||||
cameraComboBox.Width = cameraComboBox.Width*2 + 19;
|
||||
break;
|
||||
default:
|
||||
flag5CheckBox.Text = "Flag 5";
|
||||
flag4CheckBox.Text = "Fly";
|
||||
flag3CheckBox.Text = "Escape Rope";
|
||||
flag2CheckBox.Text = "Flag 2";
|
||||
flag1CheckBox.Text = "Bicycle";
|
||||
flag0CheckBox.Text = "Flag 0";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
@ -534,32 +521,34 @@ namespace DSPRE {
|
|||
}
|
||||
|
||||
/*Add list of options to each control */
|
||||
mapNameComboBox.Items.AddRange(LoadMessageArchive(romInfo.GetMapNamesTextNumber()).messages.ToArray());
|
||||
locationNameComboBox.Items.AddRange(LoadMessageArchive(romInfo.GetMapNamesTextNumber()).messages.ToArray());
|
||||
HeaderDatabase headerInfo = new HeaderDatabase();
|
||||
switch (romInfo.gameVersion) {
|
||||
case "D":
|
||||
case "P":
|
||||
areaIconComboBox.Enabled = false;
|
||||
areaIconPictureBox.Image = (Image)Properties.Resources.ResourceManager.GetObject("dpareaicon");
|
||||
areaSettingsLabel.Text = "Show nametag:";
|
||||
cameraComboBox.Items.AddRange(headerInfo.DPPtCameraValues);
|
||||
musicDayComboBox.Items.AddRange(headerInfo.DPMusicValues);
|
||||
musicNightComboBox.Items.AddRange(headerInfo.DPMusicValues);
|
||||
showNameComboBox.Items.AddRange(headerInfo.DPShowNameValues);
|
||||
areaSettingsComboBox.Items.AddRange(headerInfo.DPShowNameValues);
|
||||
weatherComboBox.Items.AddRange(headerInfo.DPWeatherValues);
|
||||
break;
|
||||
case "Plat":
|
||||
areaIconComboBox.Items.AddRange(headerInfo.PtAreaIconValues);
|
||||
areaSettingsLabel.Text = "Show nametag:";
|
||||
cameraComboBox.Items.AddRange(headerInfo.DPPtCameraValues);
|
||||
musicDayComboBox.Items.AddRange(headerInfo.PtMusicValues);
|
||||
musicNightComboBox.Items.AddRange(headerInfo.PtMusicValues);
|
||||
showNameComboBox.Items.AddRange(headerInfo.PtShowNameValues);
|
||||
areaSettingsComboBox.Items.AddRange(headerInfo.PtShowNameValues);
|
||||
weatherComboBox.Items.AddRange(headerInfo.PtWeatherValues);
|
||||
break;
|
||||
default:
|
||||
showNameComboBox.Enabled = false;
|
||||
areaIconComboBox.Items.AddRange(headerInfo.HGSSAreaIconValues);
|
||||
cameraComboBox.Items.AddRange(headerInfo.HGSSCameraValues);
|
||||
areaSettingsComboBox.Items.AddRange(headerInfo.HGSSAreaProperties);
|
||||
areaSettingsLabel.Text = "Area Settings:";
|
||||
musicDayComboBox.Items.AddRange(headerInfo.HGSSMusicValues);
|
||||
musicNightComboBox.Items.AddRange(headerInfo.HGSSMusicValues);
|
||||
weatherComboBox.Items.AddRange(headerInfo.HGSSWeatherValues);
|
||||
|
|
@ -1019,7 +1008,7 @@ namespace DSPRE {
|
|||
editor.ShowDialog();
|
||||
}
|
||||
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e) {
|
||||
string message = "DS Pokémon Rom Editor by Nømura (Unofficial Branch)" + Environment.NewLine + "version 1.0.6d" + Environment.NewLine
|
||||
string message = "DS Pokémon Rom Editor by Nømura (Unofficial Branch)" + Environment.NewLine + "version 1.0.7" + Environment.NewLine
|
||||
+ Environment.NewLine + "This tool was largely inspired by Markitus95's Spiky's DS Map Editor, from which certain assets were also recycled. Credits go to Markitus, Ark, Zark, Florian, and everyone else who owes credit for SDSME." + Environment.NewLine +
|
||||
"Special thanks go to Trifindo, Mikelan98, BagBoy, and JackHack96, whose help, research and expertise in the field of NDS Rom Hacking made the development of this tool possible.";
|
||||
|
||||
|
|
@ -1109,7 +1098,6 @@ namespace DSPRE {
|
|||
|
||||
/* Setup essential editors */
|
||||
SetupFlagNames();
|
||||
SetupCameraAndAreaProperties();
|
||||
SetupHeaderEditor();
|
||||
eventOpenGlControl.InitializeContexts();
|
||||
mapOpenGlControl.InitializeContexts();
|
||||
|
|
@ -1412,7 +1400,8 @@ namespace DSPRE {
|
|||
}
|
||||
}
|
||||
private void cameraComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers) return;
|
||||
if (disableHandlers)
|
||||
return;
|
||||
|
||||
string imageName;
|
||||
try {
|
||||
|
|
@ -1447,36 +1436,25 @@ namespace DSPRE {
|
|||
}
|
||||
}
|
||||
private void eventFileUpDown_ValueChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers) return;
|
||||
if (disableHandlers)
|
||||
return;
|
||||
currentHeader.eventID = (ushort)eventFileUpDown.Value;
|
||||
}
|
||||
private void headerFlagsCheckBoxes_CheckedChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers)
|
||||
return;
|
||||
|
||||
int n;
|
||||
int i = 7;
|
||||
byte flagVal = 0;
|
||||
foreach(Control c in flagsGroupBox.Controls) {
|
||||
try {
|
||||
if (((CheckBox)c).Checked == true)
|
||||
flagVal += (byte)Math.Pow(2, i);
|
||||
i--;
|
||||
} catch (InvalidCastException) { }
|
||||
}
|
||||
|
||||
if (sender == flag7CheckBox)
|
||||
n = 7;
|
||||
else if (sender == flag6CheckBox)
|
||||
n = 6;
|
||||
else if (sender == flag5CheckBox)
|
||||
n = 5;
|
||||
else if (sender == flag4CheckBox)
|
||||
n = 4;
|
||||
else if (sender == flag3CheckBox)
|
||||
n = 3;
|
||||
else if (sender == flag2CheckBox)
|
||||
n = 2;
|
||||
else if (sender == flag1CheckBox)
|
||||
n = 1;
|
||||
else
|
||||
n = 0;
|
||||
|
||||
/* Toggle flag-specific bit */
|
||||
int flags = currentHeader.flags;
|
||||
flags ^= 1 << n;
|
||||
currentHeader.flags = (byte)flags;
|
||||
currentHeader.flags = flagVal;
|
||||
}
|
||||
private void headerListBox_SelectedIndexChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers)
|
||||
|
|
@ -1508,41 +1486,48 @@ namespace DSPRE {
|
|||
openWildEditorWithIdButton.Enabled = true;
|
||||
|
||||
/* Flags */
|
||||
int i = 7;
|
||||
disableHandlers = true;
|
||||
foreach (Control cBox in flagsGroupBox.Controls) {
|
||||
((CheckBox)cBox).Checked = false;
|
||||
|
||||
if ((currentHeader.flags & (1 << i)) != 0)
|
||||
((CheckBox)cBox).Checked = true;
|
||||
i--;
|
||||
}
|
||||
disableHandlers = false;
|
||||
refreshFlags();
|
||||
|
||||
/* Setup controls for fields with gameVersion-specific differences */
|
||||
switch (romInfo.gameVersion) {
|
||||
case "D":
|
||||
case "P":
|
||||
mapNameComboBox.SelectedIndex = ((HeaderDP)currentHeader).mapName;
|
||||
locationNameComboBox.SelectedIndex = ((HeaderDP)currentHeader).mapName;
|
||||
musicDayComboBox.SelectedIndex = musicDayComboBox.FindString("[" + ((HeaderDP)currentHeader).musicDay.ToString());
|
||||
musicNightComboBox.SelectedIndex = musicNightComboBox.FindString("[" + ((HeaderDP)currentHeader).musicNight.ToString());
|
||||
showNameComboBox.SelectedIndex = showNameComboBox.FindString("[" + $"{currentHeader.showName:D3}");
|
||||
areaSettingsComboBox.SelectedIndex = areaSettingsComboBox.FindString("[" + $"{currentHeader.showName:D3}");
|
||||
break;
|
||||
case "Plat":
|
||||
areaIconComboBox.SelectedIndex = ((HeaderPt)currentHeader).areaIcon;
|
||||
mapNameComboBox.SelectedIndex = ((HeaderPt)currentHeader).mapName;
|
||||
locationNameComboBox.SelectedIndex = ((HeaderPt)currentHeader).mapName;
|
||||
musicDayComboBox.SelectedIndex = musicDayComboBox.FindString("[" + ((HeaderPt)currentHeader).musicDay.ToString());
|
||||
musicNightComboBox.SelectedIndex = musicNightComboBox.FindString("[" + ((HeaderPt)currentHeader).musicNight.ToString());
|
||||
showNameComboBox.SelectedIndex = showNameComboBox.FindString("[" + $"{currentHeader.showName:D3}");
|
||||
areaSettingsComboBox.SelectedIndex = areaSettingsComboBox.FindString("[" + $"{currentHeader.showName:D3}");
|
||||
break;
|
||||
default:
|
||||
areaIconComboBox.SelectedIndex = areaIconComboBox.FindString("[" + $"{((HeaderHGSS)currentHeader).areaIcon:D3}");
|
||||
mapNameComboBox.SelectedIndex = ((HeaderHGSS)currentHeader).mapName;
|
||||
locationNameComboBox.SelectedIndex = ((HeaderHGSS)currentHeader).mapName;
|
||||
musicDayComboBox.SelectedIndex = musicDayComboBox.FindString("[" + ((HeaderHGSS)currentHeader).musicDay.ToString());
|
||||
musicNightComboBox.SelectedIndex = musicNightComboBox.FindString("[" + ((HeaderHGSS)currentHeader).musicNight.ToString());
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void refreshFlags() {
|
||||
int i = 7;
|
||||
disableHandlers = true;
|
||||
foreach (Control cBox in flagsGroupBox.Controls) {
|
||||
try {
|
||||
if ((currentHeader.flags & (1 << i)) != 0)
|
||||
((CheckBox)cBox).Checked = true;
|
||||
else
|
||||
((CheckBox)cBox).Checked = false;
|
||||
i--;
|
||||
} catch (InvalidCastException) { }
|
||||
}
|
||||
disableHandlers = false;
|
||||
}
|
||||
|
||||
private void eventsTabControl_SelectedIndexChanged(object sender, EventArgs e) {
|
||||
if (eventsTabControl.SelectedTab == signsTabPage) {
|
||||
if (spawnablesListBox.Items.Count > 0)
|
||||
|
|
@ -1575,13 +1560,13 @@ namespace DSPRE {
|
|||
switch (romInfo.gameVersion) {
|
||||
case "D":
|
||||
case "P":
|
||||
((HeaderDP)currentHeader).mapName = (ushort)mapNameComboBox.SelectedIndex;
|
||||
((HeaderDP)currentHeader).mapName = (ushort)locationNameComboBox.SelectedIndex;
|
||||
break;
|
||||
case "Plat":
|
||||
((HeaderPt)currentHeader).mapName = (byte)mapNameComboBox.SelectedIndex;
|
||||
((HeaderPt)currentHeader).mapName = (byte)locationNameComboBox.SelectedIndex;
|
||||
break;
|
||||
default:
|
||||
((HeaderHGSS)currentHeader).mapName = (byte)mapNameComboBox.SelectedIndex;
|
||||
((HeaderHGSS)currentHeader).mapName = (byte)locationNameComboBox.SelectedIndex;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
@ -1756,11 +1741,13 @@ namespace DSPRE {
|
|||
writer.Write( Encoding.ASCII.GetBytes(internalNameBox.Text.PadRight(16, '\0')) );
|
||||
updateHeaderNameShown(headerListBox.SelectedIndex, internalNameBox.Text);
|
||||
}
|
||||
|
||||
headerListBox.Focus();
|
||||
disableHandlers = false;
|
||||
}
|
||||
|
||||
private void updateHeaderNameShown(int selectedIndex, string text) {
|
||||
headerListBox.Items[selectedIndex] = selectedIndex.ToString("D3") + headerNamesSeparator + text;
|
||||
private void updateHeaderNameShown(int SelectedIndex, string text) {
|
||||
headerListBox.Items[SelectedIndex] = SelectedIndex.ToString("D3") + headerNamesSeparator + text;
|
||||
}
|
||||
|
||||
private void resetButton_Click(object sender, EventArgs e) {
|
||||
|
|
@ -1796,7 +1783,7 @@ namespace DSPRE {
|
|||
case "D":
|
||||
case "P":
|
||||
for (int i = 0; i < internalNames.Count; i++) {
|
||||
String locationName = mapNameComboBox.Items[((HeaderDP)LoadHeader(i)).mapName].ToString();
|
||||
String locationName = locationNameComboBox.Items[((HeaderDP)LoadHeader(i)).mapName].ToString();
|
||||
if (locationName.IndexOf(searchLocationTextBox.Text, StringComparison.InvariantCultureIgnoreCase) >= 0) {
|
||||
headerListBox.Items.Add(i.ToString("D3") + headerNamesSeparator + internalNames[i]);
|
||||
empty = false;
|
||||
|
|
@ -1805,7 +1792,7 @@ namespace DSPRE {
|
|||
break;
|
||||
case "Plat":
|
||||
for (int i = 0; i < internalNames.Count; i++) {
|
||||
String locationName = mapNameComboBox.Items[((HeaderPt)LoadHeader(i)).mapName].ToString();
|
||||
String locationName = locationNameComboBox.Items[((HeaderPt)LoadHeader(i)).mapName].ToString();
|
||||
if (locationName.IndexOf(searchLocationTextBox.Text, StringComparison.InvariantCultureIgnoreCase) >= 0) {
|
||||
headerListBox.Items.Add(i.ToString("D3") + headerNamesSeparator + internalNames[i]);
|
||||
empty = false;
|
||||
|
|
@ -1815,7 +1802,7 @@ namespace DSPRE {
|
|||
case "HG":
|
||||
case "SS":
|
||||
for (int i = 0; i < internalNames.Count; i++) {
|
||||
String locationName = mapNameComboBox.Items[((HeaderHGSS)LoadHeader(i)).mapName].ToString();
|
||||
String locationName = locationNameComboBox.Items[((HeaderHGSS)LoadHeader(i)).mapName].ToString();
|
||||
if (locationName.IndexOf(searchLocationTextBox.Text, StringComparison.InvariantCultureIgnoreCase) >= 0) {
|
||||
headerListBox.Items.Add(i.ToString("D3") + headerNamesSeparator + internalNames[i]);
|
||||
empty = false;
|
||||
|
|
@ -1840,17 +1827,37 @@ namespace DSPRE {
|
|||
return;
|
||||
currentHeader.script = (ushort)scriptFileUpDown.Value;
|
||||
}
|
||||
private void showNameComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers || showNameComboBox.SelectedItem == null)
|
||||
private void areaSettingsComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers || areaSettingsComboBox.SelectedItem == null)
|
||||
return;
|
||||
currentHeader.showName = Byte.Parse(showNameComboBox.SelectedItem.ToString().Substring(1, 3));
|
||||
|
||||
switch (romInfo.gameVersion) {
|
||||
case "D":
|
||||
case "P":
|
||||
case "Plat":
|
||||
currentHeader.showName = Byte.Parse(areaSettingsComboBox.SelectedItem.ToString().Substring(1, 3));
|
||||
break;
|
||||
case "HG":
|
||||
case "SS":
|
||||
currentHeader.areaSettings = (byte)areaSettingsComboBox.SelectedIndex;
|
||||
if (currentHeader.areaSettings == 4) {
|
||||
areaIconComboBox.Enabled = false;
|
||||
areaIconPictureBox.Enabled = false;
|
||||
} else {
|
||||
areaIconComboBox.Enabled = true;
|
||||
areaIconPictureBox.Enabled = true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
private void textFileUpDown_ValueChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers) return;
|
||||
if (disableHandlers)
|
||||
return;
|
||||
currentHeader.text = (ushort)textFileUpDown.Value;
|
||||
}
|
||||
private void weatherComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
||||
if (disableHandlers) return;
|
||||
if (disableHandlers)
|
||||
return;
|
||||
|
||||
currentHeader.weather = Byte.Parse(weatherComboBox.SelectedItem.ToString().Substring(1, 2));
|
||||
|
||||
|
|
@ -1881,6 +1888,204 @@ namespace DSPRE {
|
|||
else
|
||||
openWildEditorWithIdButton.Enabled = true;
|
||||
}
|
||||
|
||||
|
||||
/*Copy Paste Functions*/
|
||||
#region Variables
|
||||
int locationNameCopy;
|
||||
string internalNameCopy;
|
||||
decimal encountersIDCopy;
|
||||
int shownameCopy;
|
||||
int areaIconCopy;
|
||||
|
||||
int musicdayCopy;
|
||||
int musicnightCopy;
|
||||
int weatherCopy;
|
||||
int camAngleCopy;
|
||||
int areaSettingsCopy;
|
||||
|
||||
decimal scriptsCopy;
|
||||
decimal levelScriptsCopy;
|
||||
decimal eventsCopy;
|
||||
decimal textsCopy;
|
||||
|
||||
decimal matrixCopy;
|
||||
decimal areadataCopy;
|
||||
|
||||
byte flagsCopy;
|
||||
|
||||
#endregion
|
||||
private void copyHeaderButton_Click(object sender, EventArgs e) {
|
||||
locationNameCopy = locationNameComboBox.SelectedIndex;
|
||||
internalNameCopy = internalNameBox.Text;
|
||||
encountersIDCopy = wildPokeUpDown.Value;
|
||||
shownameCopy = areaSettingsComboBox.SelectedIndex;
|
||||
areaIconCopy = areaIconComboBox.SelectedIndex;
|
||||
areaSettingsCopy = areaSettingsComboBox.SelectedIndex;
|
||||
|
||||
musicdayCopy = musicDayComboBox.SelectedIndex;
|
||||
musicnightCopy = musicNightComboBox.SelectedIndex;
|
||||
weatherCopy = weatherComboBox.SelectedIndex;
|
||||
camAngleCopy = cameraComboBox.SelectedIndex;
|
||||
|
||||
scriptsCopy = scriptFileUpDown.Value;
|
||||
levelScriptsCopy = levelScriptUpDown.Value;
|
||||
eventsCopy = eventFileUpDown.Value;
|
||||
textsCopy = textFileUpDown.Value;
|
||||
|
||||
matrixCopy = matrixUpDown.Value;
|
||||
areadataCopy = areaDataUpDown.Value;
|
||||
|
||||
/*Enable paste buttons*/
|
||||
pasteHeaderButton.Enabled = true;
|
||||
|
||||
pasteScriptsButton.Enabled = true;
|
||||
pasteLevelScriptsButton.Enabled = true;
|
||||
pasteEventsButton.Enabled = true;
|
||||
pasteTextsButton.Enabled = true;
|
||||
|
||||
pasteMatrixButton.Enabled = true;
|
||||
pasteAreaDataButton.Enabled = true;
|
||||
}
|
||||
private void copyInternalNameButton_Click(object sender, EventArgs e) {
|
||||
internalNameCopy = internalNameBox.Text;
|
||||
Clipboard.SetData(DataFormats.Text, internalNameCopy);
|
||||
pasteInternalNameButton.Enabled = true;
|
||||
}
|
||||
private void copyLocationNameButton_Click(object sender, EventArgs e) {
|
||||
locationNameCopy = locationNameComboBox.SelectedIndex;
|
||||
pasteLocationNameButton.Enabled = true;
|
||||
}
|
||||
private void copyAreaSettingsButton_Click(object sender, EventArgs e) {
|
||||
areaSettingsCopy = areaSettingsComboBox.SelectedIndex;
|
||||
pasteAreaSettingsButton.Enabled = true;
|
||||
}
|
||||
private void copyAreaIconButton_Click(object sender, EventArgs e) {
|
||||
areaIconCopy = areaIconComboBox.SelectedIndex;
|
||||
pasteAreaIconButton.Enabled = true;
|
||||
}
|
||||
private void copyMusicDayButton_Click(object sender, EventArgs e) {
|
||||
musicdayCopy = musicDayComboBox.SelectedIndex;
|
||||
pasteMusicDayButton.Enabled = true;
|
||||
}
|
||||
private void copyWeatherButton_Click(object sender, EventArgs e) {
|
||||
weatherCopy = weatherComboBox.SelectedIndex;
|
||||
pasteWeatherButton.Enabled = true;
|
||||
}
|
||||
private void copyMusicNightButton_Click(object sender, EventArgs e) {
|
||||
musicnightCopy = musicNightComboBox.SelectedIndex;
|
||||
pasteMusicNightButton.Enabled = true;
|
||||
}
|
||||
private void copyCameraAngleButton_Click(object sender, EventArgs e) {
|
||||
camAngleCopy = cameraComboBox.SelectedIndex;
|
||||
pasteCameraAngleButton.Enabled = true;
|
||||
}
|
||||
private void copyScriptsButton_Click(object sender, EventArgs e) {
|
||||
scriptsCopy = scriptFileUpDown.Value;
|
||||
Clipboard.SetData(DataFormats.Text, scriptsCopy);
|
||||
pasteScriptsButton.Enabled = true;
|
||||
}
|
||||
private void copyLevelScriptsButton_Click(object sender, EventArgs e) {
|
||||
levelScriptsCopy = levelScriptUpDown.Value;
|
||||
Clipboard.SetData(DataFormats.Text, levelScriptsCopy);
|
||||
pasteLevelScriptsButton.Enabled = true;
|
||||
}
|
||||
private void copyEventsButton_Click(object sender, EventArgs e) {
|
||||
eventsCopy = eventFileUpDown.Value;
|
||||
Clipboard.SetData(DataFormats.Text, eventsCopy);
|
||||
copyEventsButton.Enabled = true;
|
||||
}
|
||||
|
||||
private void copyTextsButton_Click(object sender, EventArgs e) {
|
||||
textsCopy = textFileUpDown.Value;
|
||||
Clipboard.SetData(DataFormats.Text, textsCopy);
|
||||
pasteTextsButton.Enabled = true;
|
||||
}
|
||||
|
||||
private void copyMatrixButton_Click(object sender, EventArgs e) {
|
||||
matrixCopy = matrixUpDown.Value;
|
||||
Clipboard.SetData(DataFormats.Text, matrixCopy);
|
||||
pasteMatrixButton.Enabled = true;
|
||||
}
|
||||
|
||||
private void copyAreaDataButton_Click(object sender, EventArgs e) {
|
||||
areadataCopy = areaDataUpDown.Value;
|
||||
Clipboard.SetData(DataFormats.Text, areadataCopy);
|
||||
pasteAreaDataButton.Enabled = true;
|
||||
}
|
||||
private void copyFlagsButton_Click(object sender, EventArgs e) {
|
||||
flagsCopy = currentHeader.flags;
|
||||
pasteFlagsButton.Enabled = true;
|
||||
}
|
||||
|
||||
/* Paste Buttons */
|
||||
private void pasteHeaderButton_Click(object sender, EventArgs e) {
|
||||
locationNameComboBox.SelectedIndex = locationNameCopy;
|
||||
internalNameBox.Text = internalNameCopy;
|
||||
wildPokeUpDown.Value = encountersIDCopy;
|
||||
areaSettingsComboBox.SelectedIndex = shownameCopy;
|
||||
areaIconComboBox.SelectedIndex = areaIconCopy;
|
||||
|
||||
musicDayComboBox.SelectedIndex = musicdayCopy;
|
||||
musicNightComboBox.SelectedIndex = musicnightCopy;
|
||||
weatherComboBox.SelectedIndex = weatherCopy;
|
||||
cameraComboBox.SelectedIndex = camAngleCopy;
|
||||
|
||||
scriptFileUpDown.Value = scriptsCopy;
|
||||
levelScriptUpDown.Value = levelScriptsCopy;
|
||||
eventFileUpDown.Value = eventsCopy;
|
||||
textFileUpDown.Value = textsCopy;
|
||||
|
||||
matrixUpDown.Value = matrixCopy;
|
||||
areaDataUpDown.Value = areadataCopy;
|
||||
}
|
||||
private void pasteInternalNameButton_Click(object sender, EventArgs e) {
|
||||
internalNameBox.Text = internalNameCopy;
|
||||
}
|
||||
private void pasteLocationNameButton_Click(object sender, EventArgs e) {
|
||||
locationNameComboBox.SelectedIndex = locationNameCopy;
|
||||
}
|
||||
private void pasteAreaSettingsButton_Click(object sender, EventArgs e) {
|
||||
areaSettingsComboBox.SelectedIndex = shownameCopy;
|
||||
}
|
||||
private void pasteAreaIconButton_Click(object sender, EventArgs e) {
|
||||
if (areaIconComboBox.Enabled)
|
||||
areaIconComboBox.SelectedIndex = areaIconCopy;
|
||||
}
|
||||
private void pasteMusicDayButton_Click(object sender, EventArgs e) {
|
||||
musicDayComboBox.SelectedIndex = musicdayCopy;
|
||||
}
|
||||
private void pasteScriptsButton_Click(object sender, EventArgs e) {
|
||||
scriptFileUpDown.Value = scriptsCopy;
|
||||
}
|
||||
private void pasteLevelScriptsButton_Click(object sender, EventArgs e) {
|
||||
levelScriptUpDown.Value = levelScriptsCopy;
|
||||
}
|
||||
private void pasteEventsButton_Click(object sender, EventArgs e) {
|
||||
eventFileUpDown.Value = eventsCopy;
|
||||
}
|
||||
private void pasteTextsButton_Click(object sender, EventArgs e) {
|
||||
textFileUpDown.Value = textsCopy;
|
||||
}
|
||||
private void pasteMatrixButton_Click(object sender, EventArgs e) {
|
||||
matrixUpDown.Value = matrixCopy;
|
||||
}
|
||||
private void pasteAreaDataButton_Click(object sender, EventArgs e) {
|
||||
areaDataUpDown.Value = areadataCopy;
|
||||
}
|
||||
private void pasteWeatherButton_Click(object sender, EventArgs e) {
|
||||
weatherComboBox.SelectedIndex = weatherCopy;
|
||||
}
|
||||
private void pasteMusicNightButton_Click(object sender, EventArgs e) {
|
||||
musicNightComboBox.SelectedIndex = musicnightCopy;
|
||||
}
|
||||
private void pasteCameraAngleButton_Click(object sender, EventArgs e) {
|
||||
cameraComboBox.SelectedIndex = camAngleCopy;
|
||||
}
|
||||
private void pasteFlagsButton_Click(object sender, EventArgs e) {
|
||||
currentHeader.flags = flagsCopy;
|
||||
refreshFlags();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Matrix Editor
|
||||
|
|
@ -5568,5 +5773,6 @@ namespace DSPRE {
|
|||
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACA
|
||||
DwAAAk1TRnQBSQFMAgEBBwEAAVQBBQFUAQUBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
DwAAAk1TRnQBSQFMAgEBBwEAAbwBBQG8AQUBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ using System.Runtime.InteropServices;
|
|||
// Le informazioni generali relative a un assembly sono controllate dal seguente
|
||||
// set di attributi. Modificare i valori di questi attributi per modificare le informazioni
|
||||
// associate a un assembly.
|
||||
[assembly: AssemblyTitle("DSPRE Reloaded 1.0.6d")]
|
||||
[assembly: AssemblyTitle("DSPRE Reloaded 1.0.7")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("DSPRE Reloaded 1.0.6d")]
|
||||
[assembly: AssemblyProduct("DSPRE Reloaded 1.0.7")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
|||
// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
|
||||
// usando l'asterisco '*' come illustrato di seguito:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.6")]
|
||||
[assembly: AssemblyFileVersion("1.0.6")]
|
||||
[assembly: AssemblyVersion("1.0.7")]
|
||||
[assembly: AssemblyFileVersion("1.0.7")]
|
||||
|
|
|
|||
20
DS_Map/Properties/Resources.Designer.cs
generated
20
DS_Map/Properties/Resources.Designer.cs
generated
|
|
@ -240,6 +240,16 @@ namespace DSPRE.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap copyIcon {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("copyIcon", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
|
|
@ -1009,6 +1019,16 @@ namespace DSPRE.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap pasteIcon {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("pasteIcon", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Cerca una stringa localizzata simile a dp.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -133,8 +133,8 @@
|
|||
<data name="hgsssnow" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\HGSS\hgsssnow.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dprain" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dprain.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="hgsscamera10" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera10.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="unpackAllIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\unpackAllIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
|
@ -145,8 +145,11 @@
|
|||
<data name="dpcamera6" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\dpcamera6.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptcamera11" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="hgsscamera12" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera12.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera08" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera08.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptcamera4" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
|
@ -160,6 +163,9 @@
|
|||
<data name="ptcamera14" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera14.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera13" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera13.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dplightsandstorm" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dplightsandstorm.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -169,6 +175,9 @@
|
|||
<data name="ptcamera12" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera12.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera06" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera06.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="LeftClick" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\LeftClick.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -178,6 +187,9 @@
|
|||
<data name="ptspotlight" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptspotlight.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="SurfIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\SurfIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpcamera14" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\dpcamera14.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -208,6 +220,9 @@
|
|||
<data name="dpcamera5" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\dpcamera5.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera04" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera04.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="goToWarp" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\goToWarp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -217,6 +232,9 @@
|
|||
<data name="hgssnormal" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\HGSS\hgssnormal.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpdark" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dpdark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptthunderstorm" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptthunderstorm.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -253,6 +271,9 @@
|
|||
<data name="areaicon01" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Area Icons\areaicon01.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpcamera10" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\dpcamera10.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptcamera15" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera15.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -268,6 +289,9 @@
|
|||
<data name="hgsswater" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Area Icons\hgsswater.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera05" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera05.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptcamera9" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera9.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -277,6 +301,9 @@
|
|||
<data name="areaicon03" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Area Icons\areaicon03.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera00" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera00.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptrocksascending" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptrocksascending.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -319,12 +346,18 @@
|
|||
<data name="route_sign" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Event Icons\route_sign.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="gray_sign" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Event Icons\gray_sign.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpcamera8" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\dpcamera8.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpsandfall" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dpsandfall.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="goToOW" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\goToOW.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="areaicon02" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Area Icons\areaicon02.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -340,6 +373,9 @@
|
|||
<data name="ptcamera8" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera8.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera01" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera01.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgssgray" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Area Icons\hgssgray.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -352,15 +388,15 @@
|
|||
<data name="ptdark" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptdark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dprain" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dprain.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptlightning" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptlightning.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpcloudy" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dpcloudy.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpcamera10" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\dpcamera10.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="areaicon04" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Area Icons\areaicon04.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
@ -385,26 +421,35 @@
|
|||
<data name="ptforestweather" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptforestweather.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="arrowright" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\arrowright.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpcamera4" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\dpcamera4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="overworld" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Event Icons\overworld.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="goToOW" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\goToOW.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="red_sign" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Event Icons\red_sign.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptlightsandstorm" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptlightsandstorm.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera11" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera15" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera15.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="map_editor" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\map_editor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpthunderstorm" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dpthunderstorm.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="gray_sign" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Event Icons\gray_sign.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="hgsscamera03" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera03.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpareaicon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Area Icons\dp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
|
@ -433,9 +478,6 @@
|
|||
<data name="dpnormal" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dpnormal.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="red_sign" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Event Icons\red_sign.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="blz" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Tools\blz.exe;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
|
|
@ -463,8 +505,11 @@
|
|||
<data name="goToSpawnable" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\goToSpawnable.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="arrowright" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\arrowright.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="copyIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\copyIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera09" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera09.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptcamera5" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera5.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
|
@ -481,8 +526,17 @@
|
|||
<data name="dphail" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dphail.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="dpdark" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\dpdark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="ptcamera11" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Camera Angles\DPPt\ptcamera11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera14" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera14.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera02" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera02.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera07" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera07.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="ptdiamondsnow" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Weather\DPPt\ptdiamondsnow.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
|
|
@ -493,55 +547,7 @@
|
|||
<data name="WheelClick" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\WheelClick.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="SurfIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\SurfIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera00" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera00.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera01" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera01.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera02" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera02.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera03" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera03.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera04" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera04.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera05" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera05.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera06" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera06.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera07" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera07.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera08" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera08.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera09" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera09.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera10" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera10.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera11" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera12" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera12.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera13" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera13.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera14" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera14.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="hgsscamera15" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\graphics\camera angles\hgss\hgsscamera15.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
<data name="pasteIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Graphics\Program Icons\pasteIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 943 B |
Loading…
Reference in New Issue
Block a user