Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring and reorganizing code. #5

Merged
merged 20 commits into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6d31ccb
Added abstract readers. Only Zero 2 is supported right now.
HikikoMarmy Oct 29, 2023
0dc05d5
Added contact information for invalid ISO error message
HikikoMarmy Oct 29, 2023
965b3a5
Added contact information for ISO error message
HikikoMarmy Oct 29, 2023
5fc0616
Oops missing include for memcpy
HikikoMarmy Oct 29, 2023
9833455
Moved Less decoder into its own namespace and tidied up some decompil…
HikikoMarmy Oct 31, 2023
30f2927
Moved Less decoder into its own namespace and tidied up some decompil…
HikikoMarmy Oct 31, 2023
c7e05fb
Merge branch 'main' of https://github.com/HikikoMarmy/Obscura
HikikoMarmy Oct 31, 2023
c4f4b4b
memcpy and formatting
HikikoMarmy Oct 31, 2023
e2459cc
Cleanup and oopsie fixes
HikikoMarmy Oct 31, 2023
ff92343
Reworked LZSS decoder more so that it's more inline with official cod…
HikikoMarmy Nov 2, 2023
8d66246
Reworked LZSS decoder more so that it's more inline with official cod…
HikikoMarmy Nov 2, 2023
eeab0be
Changing std::exception to std::runtime_error
HikikoMarmy Nov 2, 2023
4bea540
PR request fixes
HikikoMarmy Nov 2, 2023
8229a63
Merge branch 'main' of https://github.com/HikikoMarmy/Obscura
HikikoMarmy Nov 3, 2023
5b5e2f8
Formatting
HikikoMarmy Nov 3, 2023
e69d174
Merge branch 'main' of https://github.com/HikikoMarmy/Obscura
HikikoMarmy Nov 3, 2023
fb60ecb
Changed vector to fixed array length
HikikoMarmy Nov 3, 2023
f4f6dee
Merge branch 'main' of https://github.com/HikikoMarmy/Obscura
HikikoMarmy Nov 3, 2023
44788c4
Some cleanup and formatting
HikikoMarmy Nov 3, 2023
ca00fb7
PR request fix for formatting
HikikoMarmy Nov 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ cmake-build-release/
.idea/

.DS_Store
/.vs
/out
26 changes: 19 additions & 7 deletions Extractor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,24 @@ include_directories(../argparse)
add_executable(Extractor
extractor.h
extractor.cpp
deless.h
deless.cpp

../argparse/argparse.hpp
Regions.cpp Regions.h
IsoHandler.cpp
IsoHandler.h
ZeroFileType.h
Utility.h
Utility.cpp
Regions.h
IsoHandler.hpp
Constants.h
)

Encode/ZeroLess.cpp
Encode/ZeroLess.h

ZeroReader.h

Zero1/Zero1Extractor.cpp
Zero1/Zero1Extractor.h

Zero2/Zero2Extractor.cpp
Zero2/Zero2Extractor.h
Zero2/Zero2_DirectoryTable.hpp
Zero2/Zero2_FileTable.hpp
)
Loading
Loading