Kurt
48977eefa8
Add other localizations
...
Need to make a dump method for villager names so that those get localized
2020-04-23 09:14:18 -07:00
Kurt
7e736f4a46
Enhance dump for lifesupportachievements
...
Closes #101 ; updates dumper to use the correct off-by-one and adds a bunch of extra documentation values
I'm sure the thresholds are dumpable, but I don't think they're enforced maximums (future milestone additions)
ty @CanoeHope !
2020-04-23 08:40:45 -07:00
Kurt
94c141393f
Reload displayed object on import
2020-04-22 23:43:12 -07:00
Kurt
f49d223e7b
Indirectly get villager name
...
Villager[Index] != Villager that inhabits House[Index]
Closes #99
2020-04-22 23:22:06 -07:00
Archit Date
c36fe4cd22
update pouch offset in default settings
2020-04-23 13:32:29 +08:00
Archit Date
1460725cf0
Merge branch 'master' of https://github.com/kwsch/NHSE
2020-04-23 13:28:54 +08:00
Archit Date
e626c93916
update default pocket offset
...
for live injection
2020-04-23 13:28:39 +08:00
Kurt
7a78154ed6
Add trycatch for player bmp loading
...
Closes #98
2020-04-22 22:28:26 -07:00
Kurt
6f4d9e163c
Update translations
...
Now includes the villager usercontrol in the editor form
2020-04-22 22:12:18 -07:00
Kurt
de48c037f9
Add house editor
...
only some surface appearance properties; interior item layout nope
use enum values for house info interface
Closes #95
Closes #96
Changes the displayed villager indexes from 1-indexed to 0-indexed to match the game's references.
2020-04-22 21:55:24 -07:00
Archit Date
f9d397004a
add DIY recipe item
2020-04-23 12:19:41 +08:00
Kurt
143e7e84cc
Update item list
...
Add suffix for fake painting/sculpture
2020-04-22 20:51:22 -07:00
Kurt
ce28880379
Update reference lists
...
fish: adds in water egg, lul
2020-04-22 20:38:05 -07:00
Kurt
b6878e4ad4
Add offsets for v1.2
...
up next: bcsv/msbt
2020-04-22 20:09:29 -07:00
Kurt
3a35e25c64
Update FileHashRevision.cs
2020-04-22 19:44:16 -07:00
Kurt
6e72f2e1a9
Add placeholder v1.2.0 values
...
Need to repoint offsets and update with the actual hash regions
2020-04-22 19:40:35 -07:00
Kurt
0ff0b02b53
Add item name dumper from msbt
...
reference 2283bddaff/Switch/NewHorizons/scrape_data.py
2020-04-22 14:37:14 -07:00
Kurt
e9f9e51f15
Add load from cheat code import option
...
Hold control when clicking Load to instead read from clipboard. If no text is found, the program will ask for a file to load instead.
Closes #90
2020-04-22 08:32:13 -07:00
Kurt
e38394092a
Indicate pattern type
2020-04-21 15:12:29 -07:00
Kurt
91f88a3f3a
Fix LastSavedTime offset for launch ver
...
parent object is not same size/layout as v1.1+; it's smaller
2020-04-21 15:12:21 -07:00
Kurt
806089cd9d
Copy NPC1 when importing
...
Stores which villager index can inhabit the house
2020-04-21 14:52:54 -07:00
Kurt
c9a86cbff9
Add program translation
...
jp/en/zh -- only english has been translated (duh)
keep in mind this translates the text in the program, not the internal flag names.
not sure if other languages need to be supported; from PKHeX's experience, only spanish is updated (besides jp/zh), as most users speak english or are fine using the program in english.
pls localize villager names and item names for non-english :P -- preferrably automated from raw game dumps
2020-04-21 14:26:18 -07:00
Kurt
b4f1bda2c7
Extract translatable strings to static class
2020-04-21 12:43:16 -07:00
Kurt
eaa805a374
Add automatic backup, add program settings editor
2020-04-21 12:11:31 -07:00
Kurt
3a68919325
Add Last Saved Time, display at top of window
2020-04-21 11:17:34 -07:00
Kurt
fd44cd37be
Update azure-pipelines.yml for Azure Pipelines
...
try this again
2020-04-20 14:43:00 -07:00
Kurt
532533ad8e
Update azure-pipelines.yml for Azure Pipelines
...
embed build number in azure build
2020-04-20 14:25:08 -07:00
Kurt
aa970f1eab
Add main (land) event flag editing
...
Can turn easter on/off, ha
maybe when they patch in new events ahead of time, we can turn them on early?
2020-04-20 11:31:00 -07:00
Kurt
f0492f1dc1
Allow importing old (x40) building list (not x46)
2020-04-20 09:08:45 -07:00
Kurt
345f3c3f1b
Add howto hint for removing a villager
...
Closes #84
ty @PandaUnit-TWL
2020-04-19 16:56:03 -07:00
Kurt
d21b99978a
Add player & villager house dump/load
...
share your house, but not your toothbrush!
2020-04-19 16:23:59 -07:00
Kurt
5d51cf65df
rename some classes to match internal naming
2020-04-19 15:26:20 -07:00
Kurt
4fa77c9242
Minor unused additions
...
add some villager stuff
add outside acre template id
add mainfield template id
2020-04-19 15:26:09 -07:00
Kurt
0e437bd5d1
Extract villager editing to separate control
2020-04-19 12:12:29 -07:00
Kurt
31dd3e04bc
Update Villager.cs
2020-04-19 11:27:58 -07:00
Kurt
aff52ce842
Make building structure explicit layout, add unk->usage
...
9c0648c0b7/savefile/save_schema_120_109_pseudoC.h (L967)
2020-04-19 11:27:26 -07:00
Kurt
2e64f0b109
Add villager flag editor + moving out state toggle
2020-04-18 11:11:25 -07:00
Kurt
59c0c27737
Move sub-editors to separate folders by type
...
Don't cherrypick this commit; won't compile (next commit will work)
2020-04-18 11:09:32 -07:00
Kurt
be0a456067
Decrypt savefile in-place (less allocation)
...
Each player and main.dat is ~11MB of allocation to read; old would read & decrypt into separate array = 22MB * (1 + playerCount). Cutting this in half reduces the amount of allocation and keeps stuff off gen2 LOH
2020-04-17 14:00:34 -07:00
Kurt
456575e64e
Add missing ) to error messages
2020-04-17 13:45:02 -07:00
Kurt
6e18605f69
Trycatch save export
...
yay write protected/unplugged SD cards or bad sizes
2020-04-15 10:15:14 -07:00
Kurt
14bbc73481
Verify sizes on load
2020-04-15 10:14:48 -07:00
Kurt
1af352dae5
Add dropdown to jump to specific recipe
2020-04-15 09:56:14 -07:00
Kurt
7e3003687b
MInor clean
2020-04-15 09:47:20 -07:00
Kurt
d89a7245e0
Add more field item mass-editing buttons
...
Closes #75
2020-04-14 15:20:08 -07:00
Kurt
43b043a1b6
Change duplicate hotkey
...
Hashes = CTRL-H
RAM = CTRL-R
2020-04-13 22:34:20 -07:00
Kurt
2210f6e6fc
Add Building List Dump/Import
...
Doesn't include plaza; if you're sharing details, just share the coordinates via text.
2020-04-13 16:53:38 -07:00
Kurt
3060e790bc
Fix expected import size
2020-04-12 21:28:51 -07:00
Kurt
0fbae15dd6
Clarify turnip times
2020-04-12 20:32:41 -07:00
Kurt
28e4e76d3f
Update EnumHashTests.cs
2020-04-11 23:11:04 -07:00