summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/analysis/TranslationIndex.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [WIP] Mapping rework (#91)Gravatar Gegy2019-01-241-275/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Move packages * Mapping & entry refactor: first pass * Fix deobf -> obf tree remapping * Resolve various issues * Give all entries the potential for parents and treat inner classes as children * Deobf UI tree elements * Tests pass * Sort mapping output * Fix delta tracking * Index separation and first pass for #97 * Keep track of remapped jar index * Fix child entries not being remapped * Drop non-root entries * Track dropped mappings * Fix enigma mapping ordering * EntryTreeNode interface * Small tweaks * Naive full index remap on rename * Entries can resolve to more than one root entry * Support alternative resolution strategies * Bridge method resolution * Tests pass * Fix mappings being used where there are none * Fix methods with different descriptors being considered unique. closes #89
* fix #74Gravatar asie2018-12-111-0/+11
|
* rewrite entry resolution logic in TranslationIndex, hopefully fixing bugsGravatar asie2018-12-081-80/+55
|
* Resolve all failed testsGravatar gegy10002018-06-221-1/+1
|
* Signature refactoringGravatar gegy10002018-05-191-2/+2
|
* Package updatesGravatar gegy10002018-05-191-0/+1
|
* Initial port to ASMGravatar gegy10002018-05-191-65/+58
|
* Follow Fabric guidelinesGravatar Thog2017-03-081-273/+270
|
* Starting implementing local variables (#33)Gravatar Thog2016-10-191-0/+2
| | | | | | | | TODO: - Store format (need to be defined) - Implement some translate operations This commit also fix some cases where argument tokens are not selected
* Add a recursive scan for interfacesGravatar Thog2016-09-101-0/+7
|
* Revert "Removed unused methods"Gravatar asiekierka2016-08-171-0/+7
| | | | This reverts commit 1742190f784d0d62e7cc869eebafdfe1927e448f.
* Fix remapping of methods in children class with interfacesGravatar Thog2016-08-141-0/+8
|
* Reverse scan of superclasses to find the first definition of method ↵Gravatar Thog2016-08-141-12/+31
| | | | signature avoiding remapping errors
* Avoid using the override fix in others case than remapping (fix unit tests ↵Gravatar Thog2016-08-131-3/+11
| | | | failures)
* Fix override issuesGravatar Thog2016-08-131-4/+10
|
* ReformatGravatar lclc982016-07-041-36/+5
|
* Removed unused methodsGravatar lclc982016-07-021-7/+0
|
* Reformatting codeGravatar lclc982016-07-021-1/+1
|
* Renamed FieldsGravatar lclc982016-07-021-44/+41
|
* Json format (#2)Gravatar lclc982016-06-301-0/+282
* Added new format * Fixed bug * Updated Version