homedecor_modpack/homedecor_exterior/models/homedecor_shrubbery.obj

115 lines
2.1 KiB
Plaintext
Raw Normal View History

# Compression Commit This commit performs both lossless and lossy compression on every .obj and .png in homedecor. The .png files were all 100% losslessly compressed using ect.exe and optipng.exe (more details below) at maximum settings. The .obj files were lossy-compressed so that comments were removed, trailing 000's were removed and all numbers rounded to 3 decimal places max. Blender exports at 6 decimal places but for minetest, 3 decimal places is the absolute maximum a person with anything under a 256K screen will ever need. ## Results ``` Original entire modpack size: 6343.5 KB New entire modpack size: 5312.2 KB Total Reduction: 1031.3 KB (16.3% less) ``` Please note that actual media size is likely more like 4,500 KB so media reduction is more around 20-25%. ## Details / What actions were actually performed Used these programs: https://github.com/ExeVirus/Compress-Obj https://sourceforge.net/projects/optipng/ https://github.com/fhanau/Efficient-Compression-Tool Ran this command on every .obj: (fast) ``` luajit.exe compress.lua -f <file> -precision 3 ``` Ran these commands on every .png: (slow) ``` ect.exe -9 -strip --allfilters-b <file> optipng.exe -o7 -strip all -clobber <file> ``` Note that for future compression, I recommend only using optipng.exe instead of both. ECT can get better results but it takes a LOT longer and only ever saves another 1-2% of the file size. Not worth an extra 10-20 seconds per texture file in my opinion. ## Time spent Roughly 2 Hours from start to finish + commit + PR
2021-01-23 13:28:20 +01:00
v -0.499 -0.313 0.5
v -0.499 -0.313 -0.499
v 0.5 -0.313 -0.499
v 0.5 -0.313 0.5
v -0.499 0.499 0.5
v -0.499 0.499 -0.499
v 0.5 0.499 -0.499
v 0.5 0.499 0.5
v 0.187 -0.5 0.25
v 0.187 -0.5 0.125
v 0.312 -0.5 0.125
v 0.312 -0.5 0.25
v 0.062 -0.313 0.375
v 0.062 -0.313 0
v 0.437 -0.313 0
v 0.437 -0.313 0.375
v 0.35 -0.406 0.288
v 0.15 -0.406 0.288
v 0.35 -0.406 0.087
v 0.15 -0.406 0.087
v 0 -0.5 -0.187
v 0 -0.5 -0.312
v 0.125 -0.5 -0.312
v 0.125 -0.5 -0.187
v -0.125 -0.313 -0.062
v -0.125 -0.313 -0.437
v 0.25 -0.313 -0.437
v 0.25 -0.313 -0.062
v 0.163 -0.406 -0.149
v -0.038 -0.406 -0.149
v 0.163 -0.406 -0.35
v -0.038 -0.406 -0.35
v -0.312 -0.5 0.312
v -0.312 -0.5 0.187
v -0.187 -0.5 0.187
v -0.187 -0.5 0.312
v -0.437 -0.313 0.437
v -0.437 -0.313 0.062
v -0.062 -0.313 0.062
v -0.062 -0.313 0.437
v -0.149 -0.406 0.35
v -0.35 -0.406 0.35
v -0.149 -0.406 0.15
v -0.35 -0.406 0.15
vt 1 1
vt 0 1
vt 0 0.188
vt 1 0.188
vt 0 0
vt 1 0
vt 0.375 0.438
vt 0.5 0.438
vt 0.5 0.563
vt 0.375 0.563
vt 0.725 0.656
vt 0.813 0.75
vt 0.438 0.75
vt 0.525 0.656
vt 0.288 0.906
vt 0.375 1
vt 0.087 0.906
vt 0.725 0.906
vt 0.813 1
vt 0.438 1
vt 0.525 0.906
vt 0.288 0.656
vt 0.375 0.75
vt 0 0.75
vt 0.087 0.656
vt 0.25 0.562
vt 0.125 0.562
vt 0.25 0.812
vt 0.125 0.812
vt 0.688 0.812
vt 0.563 0.812
vt 0.688 0.562
vt 0.563 0.562
g 1
2015-09-25 15:00:22 +02:00
s off
f 5/1 6/2 2/3 1/4
f 6/1 7/2 3/3 2/4
f 7/1 8/2 4/3 3/4
f 8/1 5/2 1/3 4/4
f 8/5 7/6 6/1 5/2
# Compression Commit This commit performs both lossless and lossy compression on every .obj and .png in homedecor. The .png files were all 100% losslessly compressed using ect.exe and optipng.exe (more details below) at maximum settings. The .obj files were lossy-compressed so that comments were removed, trailing 000's were removed and all numbers rounded to 3 decimal places max. Blender exports at 6 decimal places but for minetest, 3 decimal places is the absolute maximum a person with anything under a 256K screen will ever need. ## Results ``` Original entire modpack size: 6343.5 KB New entire modpack size: 5312.2 KB Total Reduction: 1031.3 KB (16.3% less) ``` Please note that actual media size is likely more like 4,500 KB so media reduction is more around 20-25%. ## Details / What actions were actually performed Used these programs: https://github.com/ExeVirus/Compress-Obj https://sourceforge.net/projects/optipng/ https://github.com/fhanau/Efficient-Compression-Tool Ran this command on every .obj: (fast) ``` luajit.exe compress.lua -f <file> -precision 3 ``` Ran these commands on every .png: (slow) ``` ect.exe -9 -strip --allfilters-b <file> optipng.exe -o7 -strip all -clobber <file> ``` Note that for future compression, I recommend only using optipng.exe instead of both. ECT can get better results but it takes a LOT longer and only ever saves another 1-2% of the file size. Not worth an extra 10-20 seconds per texture file in my opinion. ## Time spent Roughly 2 Hours from start to finish + commit + PR
2021-01-23 13:28:20 +01:00
g 2
2015-09-25 15:00:22 +02:00
f 1/5 2/6 3/1 4/2
# Compression Commit This commit performs both lossless and lossy compression on every .obj and .png in homedecor. The .png files were all 100% losslessly compressed using ect.exe and optipng.exe (more details below) at maximum settings. The .obj files were lossy-compressed so that comments were removed, trailing 000's were removed and all numbers rounded to 3 decimal places max. Blender exports at 6 decimal places but for minetest, 3 decimal places is the absolute maximum a person with anything under a 256K screen will ever need. ## Results ``` Original entire modpack size: 6343.5 KB New entire modpack size: 5312.2 KB Total Reduction: 1031.3 KB (16.3% less) ``` Please note that actual media size is likely more like 4,500 KB so media reduction is more around 20-25%. ## Details / What actions were actually performed Used these programs: https://github.com/ExeVirus/Compress-Obj https://sourceforge.net/projects/optipng/ https://github.com/fhanau/Efficient-Compression-Tool Ran this command on every .obj: (fast) ``` luajit.exe compress.lua -f <file> -precision 3 ``` Ran these commands on every .png: (slow) ``` ect.exe -9 -strip --allfilters-b <file> optipng.exe -o7 -strip all -clobber <file> ``` Note that for future compression, I recommend only using optipng.exe instead of both. ECT can get better results but it takes a LOT longer and only ever saves another 1-2% of the file size. Not worth an extra 10-20 seconds per texture file in my opinion. ## Time spent Roughly 2 Hours from start to finish + commit + PR
2021-01-23 13:28:20 +01:00
g 3
2015-09-25 15:00:22 +02:00
f 9/7 10/8 11/9 12/10
f 17/11 16/12 13/13 18/14
f 19/15 15/16 16/2 17/17
f 20/18 14/19 15/20 19/21
f 18/22 13/23 14/24 20/25
f 9/26 18/22 20/25 10/27
f 10/28 20/15 19/17 11/29
f 11/30 19/18 17/21 12/31
f 12/32 17/11 18/14 9/33
f 21/7 22/8 23/9 24/10
f 29/11 28/12 25/13 30/14
f 31/15 27/16 28/2 29/17
f 32/18 26/19 27/20 31/21
f 30/22 25/23 26/24 32/25
f 21/26 30/22 32/25 22/27
f 22/28 32/15 31/17 23/29
f 23/30 31/18 29/21 24/31
f 24/32 29/11 30/14 21/33
f 33/7 34/8 35/9 36/10
f 41/11 40/12 37/13 42/14
f 43/15 39/16 40/2 41/17
f 44/18 38/19 39/20 43/21
f 42/22 37/23 38/24 44/25
f 33/26 42/22 44/25 34/27
f 34/28 44/15 43/17 35/29
f 35/30 43/18 41/21 36/31
f 36/32 41/11 42/14 33/33