pgtools 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +25 -25
- data/bin/bxm_decoder +2 -2
- data/bin/bxm_encoder +2 -2
- data/bin/clh_convert +2 -2
- data/bin/clp_convert +2 -2
- data/bin/clw_convert +2 -2
- data/bin/dat_creator +2 -2
- data/bin/dat_extractor +2 -2
- data/bin/dat_ls +2 -2
- data/bin/eff_idd_creator +2 -2
- data/bin/eff_idd_extractor +2 -2
- data/bin/exp_convert_wiiu_pc +2 -2
- data/bin/exp_tool +2 -2
- data/bin/mot_convert_wiiu_pc +2 -2
- data/bin/mot_tool +2 -2
- data/bin/pkz_extractor +2 -2
- data/bin/scr_creator +2 -2
- data/bin/scr_extractor +2 -2
- data/bin/wmb_cleanup +2 -2
- data/bin/wmb_common_bones +2 -2
- data/bin/wmb_convert_pc_switch +2 -2
- data/bin/wmb_convert_wiiu_pc +2 -2
- data/bin/wmb_export_assimp +2 -2
- data/bin/wmb_get_bone_map +2 -2
- data/bin/wmb_import_assimp +2 -2
- data/bin/wmb_import_nier +2 -2
- data/bin/wmb_import_wiiu +2 -2
- data/bin/wtb_convert_wiiu_pc +2 -2
- data/bin/wtx_creator +2 -2
- data/bin/wtx_extractor +2 -2
- data/lib/bayonetta/alignment.rb +0 -0
- data/lib/bayonetta/bone.rb +0 -0
- data/lib/bayonetta/bxm.rb +180 -180
- data/lib/bayonetta/clh.rb +159 -159
- data/lib/bayonetta/clp.rb +212 -212
- data/lib/bayonetta/clw.rb +166 -166
- data/lib/bayonetta/dat.rb +261 -261
- data/lib/bayonetta/eff.rb +314 -314
- data/lib/bayonetta/endianness.rb +0 -0
- data/lib/bayonetta/exp.rb +768 -768
- data/lib/bayonetta/linalg.rb +416 -416
- data/lib/bayonetta/material_database.yaml +2581 -2581
- data/lib/bayonetta/mot.rb +763 -763
- data/lib/bayonetta/pkz.rb +63 -63
- data/lib/bayonetta/scr.rb +0 -0
- data/lib/bayonetta/tools/bxm_decoder.rb +23 -23
- data/lib/bayonetta/tools/bxm_encoder.rb +37 -37
- data/lib/bayonetta/tools/clh_convert.rb +60 -60
- data/lib/bayonetta/tools/clp_convert.rb +70 -70
- data/lib/bayonetta/tools/clw_convert.rb +60 -60
- data/lib/bayonetta/tools/dat_creator.rb +57 -57
- data/lib/bayonetta/tools/dat_extractor.rb +94 -94
- data/lib/bayonetta/tools/dat_ls.rb +106 -106
- data/lib/bayonetta/tools/eff_idd_creator.rb +66 -66
- data/lib/bayonetta/tools/eff_idd_extractor.rb +73 -73
- data/lib/bayonetta/tools/exp_convert_wiiu_pc.rb +33 -33
- data/lib/bayonetta/tools/exp_tool.rb +48 -48
- data/lib/bayonetta/tools/mot_convert_wiiu_pc.rb +33 -33
- data/lib/bayonetta/tools/mot_tool.rb +0 -0
- data/lib/bayonetta/tools/pkz_extractor.rb +75 -75
- data/lib/bayonetta/tools/scr_creator.rb +63 -63
- data/lib/bayonetta/tools/scr_extractor.rb +78 -78
- data/lib/bayonetta/tools/wmb_cleanup.rb +250 -250
- data/lib/bayonetta/tools/wmb_common_bones.rb +45 -45
- data/lib/bayonetta/tools/wmb_convert_pc_switch.rb +35 -35
- data/lib/bayonetta/tools/wmb_convert_wiiu_pc.rb +33 -33
- data/lib/bayonetta/tools/wmb_export_assimp.rb +479 -479
- data/lib/bayonetta/tools/wmb_get_bone_map.rb +50 -50
- data/lib/bayonetta/tools/wmb_import_assimp.rb +735 -735
- data/lib/bayonetta/tools/wmb_import_geometry_wiiu_pc.rb +472 -472
- data/lib/bayonetta/tools/wmb_import_nier.rb +309 -309
- data/lib/bayonetta/tools/wtb_convert_wiiu_pc.rb +95 -95
- data/lib/bayonetta/tools/wtb_import_textures.rb +103 -103
- data/lib/bayonetta/tools/wtx_creator.rb +69 -69
- data/lib/bayonetta/tools/wtx_extractor.rb +85 -85
- data/lib/bayonetta/vertex_types.yaml +0 -0
- data/lib/bayonetta/vertex_types2.yaml +0 -0
- data/lib/bayonetta/vertex_types_nier.yaml +145 -145
- data/lib/bayonetta/wmb.rb +2455 -2443
- data/lib/bayonetta/wmb3.rb +759 -759
- data/lib/bayonetta/wtb.rb +481 -481
- data/lib/bayonetta.rb +60 -60
- metadata +2 -2
@@ -1,50 +1,50 @@
|
|
1
|
-
require 'set'
|
2
|
-
require 'yaml'
|
3
|
-
require 'optparse'
|
4
|
-
require_relative '../../bayonetta'
|
5
|
-
include Bayonetta
|
6
|
-
|
7
|
-
$options = {
|
8
|
-
filter: nil
|
9
|
-
}
|
10
|
-
|
11
|
-
OptionParser.new do |opts|
|
12
|
-
opts.banner = <<EOF
|
13
|
-
Usage: wmb_get_bone_map target_file
|
14
|
-
EOF
|
15
|
-
opts.on("-h", "--help", "Prints this help") do
|
16
|
-
puts opts
|
17
|
-
exit
|
18
|
-
end
|
19
|
-
|
20
|
-
opts.on("-f", "--filter=YAML_FILE", "A YAML file containing the list of global bones to get the mapping for") do |f|
|
21
|
-
$options[:filter] = f
|
22
|
-
end
|
23
|
-
|
24
|
-
end.parse!
|
25
|
-
|
26
|
-
def decode_bone_index_translate_table(wmb, filter=nil)
|
27
|
-
table = wmb.bone_index_translate_table.table.dup
|
28
|
-
table.select! { |k,v| filter.include?(k) } if filter
|
29
|
-
table
|
30
|
-
end
|
31
|
-
|
32
|
-
input_file = ARGV[0]
|
33
|
-
filter = $options[:filter]
|
34
|
-
if filter
|
35
|
-
raise "Invalid filter file: #{filter}!" unless File.exist?(filter)
|
36
|
-
f = YAML::load_file(filter).to_set
|
37
|
-
else
|
38
|
-
f = nil
|
39
|
-
end
|
40
|
-
|
41
|
-
raise "Invalid file #{input_file}" unless input_file && File::file?(input_file)
|
42
|
-
if File.extname(input_file) == ".dat"
|
43
|
-
wmb = DATFile::load(input_file).each.select { |name, f|
|
44
|
-
name == File.basename(input_file, ".dat")+".wmb"
|
45
|
-
}.first[1]
|
46
|
-
wmb = WMBFile::load(wmb)
|
47
|
-
else
|
48
|
-
wmb = WMBFile::load(input_file)
|
49
|
-
end
|
50
|
-
puts YAML::dump decode_bone_index_translate_table(wmb, f).to_h
|
1
|
+
require 'set'
|
2
|
+
require 'yaml'
|
3
|
+
require 'optparse'
|
4
|
+
require_relative '../../bayonetta'
|
5
|
+
include Bayonetta
|
6
|
+
|
7
|
+
$options = {
|
8
|
+
filter: nil
|
9
|
+
}
|
10
|
+
|
11
|
+
OptionParser.new do |opts|
|
12
|
+
opts.banner = <<EOF
|
13
|
+
Usage: wmb_get_bone_map target_file
|
14
|
+
EOF
|
15
|
+
opts.on("-h", "--help", "Prints this help") do
|
16
|
+
puts opts
|
17
|
+
exit
|
18
|
+
end
|
19
|
+
|
20
|
+
opts.on("-f", "--filter=YAML_FILE", "A YAML file containing the list of global bones to get the mapping for") do |f|
|
21
|
+
$options[:filter] = f
|
22
|
+
end
|
23
|
+
|
24
|
+
end.parse!
|
25
|
+
|
26
|
+
def decode_bone_index_translate_table(wmb, filter=nil)
|
27
|
+
table = wmb.bone_index_translate_table.table.dup
|
28
|
+
table.select! { |k,v| filter.include?(k) } if filter
|
29
|
+
table
|
30
|
+
end
|
31
|
+
|
32
|
+
input_file = ARGV[0]
|
33
|
+
filter = $options[:filter]
|
34
|
+
if filter
|
35
|
+
raise "Invalid filter file: #{filter}!" unless File.exist?(filter)
|
36
|
+
f = YAML::load_file(filter).to_set
|
37
|
+
else
|
38
|
+
f = nil
|
39
|
+
end
|
40
|
+
|
41
|
+
raise "Invalid file #{input_file}" unless input_file && File::file?(input_file)
|
42
|
+
if File.extname(input_file) == ".dat"
|
43
|
+
wmb = DATFile::load(input_file).each.select { |name, f|
|
44
|
+
name == File.basename(input_file, ".dat")+".wmb"
|
45
|
+
}.first[1]
|
46
|
+
wmb = WMBFile::load(wmb)
|
47
|
+
else
|
48
|
+
wmb = WMBFile::load(input_file)
|
49
|
+
end
|
50
|
+
puts YAML::dump decode_bone_index_translate_table(wmb, f).to_h
|