-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fixes to logger and config saving
- Loading branch information
Showing
13 changed files
with
101 additions
and
40 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Player Tracker Decoder - CONFIG | ||
Delete this config file to reset values to their default settings | ||
size: 1.0 // Change th position marker or line size | ||
convertChunkPositions: true // Convert logged chunk positions into block positions, this is done by multiplying the chunk position by 16 | ||
maxEntries: 0 // The limit to the amount of data entries to compile into the final image or gif, useful when wanting a less-detailed, but quick output or when with low memory. Set to 0 to disable | ||
drawType: 0 // The way to represent the positions. 0 = Pixel, 1 = Dot, 2 = Lines, 3 = Heatmap | ||
lineThreshold: 200 // The maximum distance a player can move until its position change doesn't draw a line. This is to fix issues where massive lines are drawn across the map when players nether travel or die. | ||
upscale: 1 // The scale multiplier. The higher the up-scaling, the higher the final resolution. HIGHER VALUES DRASTICALLY INCREASE FILE SIZE AND PROCESSING TIME! | ||
fancyLines: false // Show arrows at data points when drawing using lines | ||
antialiasing: true // Use antialiasing when rendering. Used to smooth out the hard, pixelated edges | ||
hiddenLines: false // Show lines that were hidden for being above the threshold | ||
terminusPoints: true // Show dots at the start and end of lines | ||
ageFade: false // Fade out older log markers, showing the age of the marker | ||
ageFadeThreshold: 0 // How much to fade out older log markers. If 0, then it uses the max amount of log markers | ||
heatDrawType: 0 // The way to represent the heatmap. 0 = Change size, 1 = Change color | ||
heatMapThreshold: 0 // How much to change colors on the heatmap |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[INFO] <2022-05-14; 16:40:09.314> Player Tracker Decoder App v1.7.3 - LOG FILE | ||
[INFO] <2022-05-14; 16:40:09.316> Initializing logger | ||
[INFO] <2022-05-14; 16:40:09.317> Logger successfully initialized | ||
[INFO] <2022-05-14; 16:40:09.317> Initializing primary systems | ||
[INFO] <2022-05-14; 16:40:09.319> Initializing settings subsystem | ||
[WARNING] <2022-05-14; 16:40:09.320> Config file does not exist, creating it | ||
[INFO] <2022-05-14; 16:40:09.321> Successfully created config file | ||
[INFO] <2022-05-14; 16:40:09.322> Saving and writing settings to config file | ||
[INFO] <2022-05-14; 16:40:09.326> Successfully saved and wrote settings to config file | ||
[INFO] <2022-05-14; 16:40:09.327> Successfully saved and wrote default settings to config file | ||
[INFO] <2022-05-14; 16:40:09.327> Fetching and parsing settings from config file | ||
[INFO] <2022-05-14; 16:40:09.331> 1.0 | ||
[INFO] <2022-05-14; 16:40:09.332> true | ||
[INFO] <2022-05-14; 16:40:09.333> 0 | ||
[INFO] <2022-05-14; 16:40:09.333> Pixel | ||
[INFO] <2022-05-14; 16:40:09.333> 200 | ||
[INFO] <2022-05-14; 16:40:09.334> false | ||
[INFO] <2022-05-14; 16:40:09.334> true | ||
[INFO] <2022-05-14; 16:40:09.334> false | ||
[INFO] <2022-05-14; 16:40:09.335> true | ||
[INFO] <2022-05-14; 16:40:09.335> false | ||
[INFO] <2022-05-14; 16:40:09.336> ageFadeThreshold: 0 | ||
[INFO] <2022-05-14; 16:40:09.336> ChangeSize | ||
[INFO] <2022-05-14; 16:40:09.336> 0 | ||
[INFO] <2022-05-14; 16:40:09.337> Settings: 12 | ||
[INFO] <2022-05-14; 16:40:09.337> Successfully fetched and parsed settings from config file | ||
[INFO] <2022-05-14; 16:40:09.337> Successfully initialized settings subsystem | ||
[INFO] <2022-05-14; 16:40:09.339> Initializing decoder subsystem | ||
[INFO] <2022-05-14; 16:40:09.339> Successfully initialized decoder subsystem | ||
[INFO] <2022-05-14; 16:40:09.339> Initializing primary frame subsystem | ||
[INFO] <2022-05-14; 16:40:09.394> Initializing main display subsystem | ||
[INFO] <2022-05-14; 16:40:09.395> Antialiasing enabled on main display panel | ||
[INFO] <2022-05-14; 16:40:09.395> Successfully initialized main display subsystem | ||
[INFO] <2022-05-14; 16:40:09.433> Successfully initialized primary frame subsystem | ||
[INFO] <2022-05-14; 16:40:09.433> Loading resources | ||
[INFO] <2022-05-14; 16:40:10.301> Successfully initialized all subsystems | ||
|
Binary file modified
BIN
+558 Bytes
(100%)
out/artifacts/TrackerDecoderApp_jar/TrackerDecoderApp.jar
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Player Tracker Decoder - CONFIG | ||
Delete this config file to reset values to their default settings | ||
size: 1.0 // Change th position marker or line size | ||
convertChunkPositions: true // Convert logged chunk positions into block positions, this is done by multiplying the chunk position by 16 | ||
maxEntries: 0 // The limit to the amount of data entries to compile into the final image or gif, useful when wanting a less-detailed, but quick output or when with low memory. Set to 0 to disable | ||
drawType: 0 // The way to represent the positions. 0 = Pixel, 1 = Dot, 2 = Lines, 3 = Heatmap | ||
lineThreshold: 200 // The maximum distance a player can move until its position change doesn't draw a line. This is to fix issues where massive lines are drawn across the map when players nether travel or die. | ||
upscale: 1 // The scale multiplier. The higher the up-scaling, the higher the final resolution. HIGHER VALUES DRASTICALLY INCREASE FILE SIZE AND PROCESSING TIME! | ||
fancyLines: false // Show arrows at data points when drawing using lines | ||
antialiasing: true // Use antialiasing when rendering. Used to smooth out the hard, pixelated edges | ||
hiddenLines: false // Show lines that were hidden for being above the threshold | ||
terminusPoints: true // Show dots at the start and end of lines | ||
ageFade: false // Fade out older log markers, showing the age of the marker | ||
ageFadeThreshold: 0 // How much to fade out older log markers. If 0, then it uses the max amount of log markers | ||
heatDrawType: 0 // The way to represent the heatmap. 0 = Change size, 1 = Change color | ||
heatMapThreshold: 0 // How much to change colors on the heatmap |
Binary file modified
BIN
+0 Bytes
(100%)
out/production/TrackerDecoderApp/src/Logger$MessageType.class
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
out/production/TrackerDecoderApp/src/PlayerTrackerDecoder.class
Binary file not shown.
Binary file not shown.
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