-
Notifications
You must be signed in to change notification settings - Fork 19
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
Reworking copying functions to only copy files for textures #264
Merged
AsherGlick
merged 12 commits into
AsherGlick:xml_converter
from
klingbolt:copying_files
Apr 20, 2024
Merged
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
14a0279
Added argument for copying files and standardized proto reading
klingbolt 251d775
removing the copying argument
klingbolt 9ad280d
Added textures to proto reader state
klingbolt 9c78165
removing erroneous file
klingbolt 56d9370
Moved structs into the packaging files and changed the data format of…
klingbolt 87754e6
reworked typing and moved the copying function for xml images
klingbolt da49bb2
changed copying option
klingbolt 2f68f5c
addressing code review
klingbolt fbce0f4
Merge branch 'xml_converter' into copying_files
klingbolt 06479ed
Fastforward to resolve conflict
klingbolt 7f07be6
Changed the images in tests to smaller icons
klingbolt e092bcc
removed metadata from images
klingbolt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file added
BIN
+7.99 KB
...erter/integration_tests/test_cases/texture/input/pack/somedir/texture_three.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.38 KB
xml_converter/integration_tests/test_cases/texture/input/pack/texture_one.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.9 KB
xml_converter/integration_tests/test_cases/texture/input/pack/texture_two.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+3 Bytes
(100%)
xml_converter/integration_tests/test_cases/texture/output_proto/markers.bin
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Full Diff--- xml_converter/integration_tests/test_cases/texture/output_proto/markers.bin.textproto._old 2024-04-20 22:56:53.572116768 +0000
+++ xml_converter/integration_tests/test_cases/texture/output_proto/markers.bin.textproto._new 2024-04-20 22:56:53.580116633 +0000
@@ -21,11 +21,11 @@
textures {
}
textures {
- filepath: "my_texture.png"
+ filepath: "texture_one.png"
}
textures {
- filepath: "my_texture2.png"
+ filepath: "texture_two.png"
}
textures {
- filepath: "somedir/my_texture3.png"
+ filepath: "somedir/texture_three.png"
}
|
Binary file not shown.
Binary file added
BIN
+7.99 KB
...ter/integration_tests/test_cases/texture/output_proto/somedir/texture_three.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.38 KB
xml_converter/integration_tests/test_cases/texture/output_proto/texture_one.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.9 KB
xml_converter/integration_tests/test_cases/texture/output_proto/texture_two.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.99 KB
...erter/integration_tests/test_cases/texture/output_xml/somedir/texture_three.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.38 KB
xml_converter/integration_tests/test_cases/texture/output_xml/texture_one.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.9 KB
xml_converter/integration_tests/test_cases/texture/output_xml/texture_two.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Full Diff