pgtools 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +25 -0
- data/bin/bxm_decoder +2 -0
- data/bin/bxm_encoder +2 -0
- data/bin/clh_convert +2 -0
- data/bin/clp_convert +2 -0
- data/bin/clw_convert +2 -0
- data/bin/dat_creator +2 -0
- data/bin/dat_extractor +2 -0
- data/bin/dat_ls +2 -0
- data/bin/eff_idd_creator +2 -0
- data/bin/eff_idd_extractor +2 -0
- data/bin/exp_convert_wiiu_pc +2 -0
- data/bin/exp_tool +2 -0
- data/bin/mot_convert_wiiu_pc +2 -0
- data/bin/mot_tool +2 -0
- data/bin/pkz_extractor +2 -0
- data/bin/scr_creator +2 -0
- data/bin/scr_extractor +2 -0
- data/bin/wmb_cleanup +2 -0
- data/bin/wmb_common_bones +2 -0
- data/bin/wmb_convert_pc_switch +2 -0
- data/bin/wmb_convert_wiiu_pc +2 -0
- data/bin/wmb_export_assimp +2 -0
- data/bin/wmb_get_bone_map +2 -0
- data/bin/wmb_import_assimp +2 -0
- data/bin/wmb_import_nier +2 -0
- data/bin/wmb_import_wiiu +2 -0
- data/bin/wtb_convert_wiiu_pc +2 -0
- data/bin/wtx_creator +2 -0
- data/bin/wtx_extractor +2 -0
- data/lib/bayonetta/alignment.rb +14 -0
- data/lib/bayonetta/bone.rb +55 -0
- data/lib/bayonetta/bxm.rb +180 -0
- data/lib/bayonetta/clh.rb +159 -0
- data/lib/bayonetta/clp.rb +212 -0
- data/lib/bayonetta/clw.rb +166 -0
- data/lib/bayonetta/dat.rb +261 -0
- data/lib/bayonetta/eff.rb +314 -0
- data/lib/bayonetta/endianness.rb +53 -0
- data/lib/bayonetta/exp.rb +768 -0
- data/lib/bayonetta/linalg.rb +416 -0
- data/lib/bayonetta/material_database.yaml +2581 -0
- data/lib/bayonetta/mot.rb +763 -0
- data/lib/bayonetta/pkz.rb +63 -0
- data/lib/bayonetta/scr.rb +393 -0
- data/lib/bayonetta/tools/bxm_decoder.rb +23 -0
- data/lib/bayonetta/tools/bxm_encoder.rb +37 -0
- data/lib/bayonetta/tools/clh_convert.rb +60 -0
- data/lib/bayonetta/tools/clp_convert.rb +70 -0
- data/lib/bayonetta/tools/clw_convert.rb +60 -0
- data/lib/bayonetta/tools/dat_creator.rb +57 -0
- data/lib/bayonetta/tools/dat_extractor.rb +94 -0
- data/lib/bayonetta/tools/dat_ls.rb +106 -0
- data/lib/bayonetta/tools/eff_idd_creator.rb +66 -0
- data/lib/bayonetta/tools/eff_idd_extractor.rb +73 -0
- data/lib/bayonetta/tools/exp_convert_wiiu_pc.rb +33 -0
- data/lib/bayonetta/tools/exp_tool.rb +48 -0
- data/lib/bayonetta/tools/mot_convert_wiiu_pc.rb +33 -0
- data/lib/bayonetta/tools/mot_tool.rb +60 -0
- data/lib/bayonetta/tools/pkz_extractor.rb +75 -0
- data/lib/bayonetta/tools/scr_creator.rb +63 -0
- data/lib/bayonetta/tools/scr_extractor.rb +78 -0
- data/lib/bayonetta/tools/wmb_cleanup.rb +250 -0
- data/lib/bayonetta/tools/wmb_common_bones.rb +45 -0
- data/lib/bayonetta/tools/wmb_convert_pc_switch.rb +35 -0
- data/lib/bayonetta/tools/wmb_convert_wiiu_pc.rb +33 -0
- data/lib/bayonetta/tools/wmb_export_assimp.rb +479 -0
- data/lib/bayonetta/tools/wmb_get_bone_map.rb +50 -0
- data/lib/bayonetta/tools/wmb_import_assimp.rb +735 -0
- data/lib/bayonetta/tools/wmb_import_geometry_wiiu_pc.rb +472 -0
- data/lib/bayonetta/tools/wmb_import_nier.rb +309 -0
- data/lib/bayonetta/tools/wtb_convert_wiiu_pc.rb +95 -0
- data/lib/bayonetta/tools/wtb_import_textures.rb +103 -0
- data/lib/bayonetta/tools/wtx_creator.rb +69 -0
- data/lib/bayonetta/tools/wtx_extractor.rb +85 -0
- data/lib/bayonetta/vertex_types.yaml +213 -0
- data/lib/bayonetta/vertex_types2.yaml +164 -0
- data/lib/bayonetta/vertex_types_nier.yaml +145 -0
- data/lib/bayonetta/wmb.rb +2443 -0
- data/lib/bayonetta/wmb3.rb +759 -0
- data/lib/bayonetta/wtb.rb +481 -0
- data/lib/bayonetta.rb +60 -0
- metadata +254 -0
metadata
ADDED
@@ -0,0 +1,254 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pgtools
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Brice Videau
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-12-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: libbin
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.0.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 2.0.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: zstd-ruby
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 1.5.0
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 1.5.0
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: assimp-ffi
|
55
|
+
requirement: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - "~>"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0.1'
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 0.1.7
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0.1'
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 0.1.7
|
73
|
+
- !ruby/object:Gem::Dependency
|
74
|
+
name: oodle-kraken-ruby
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - "~>"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0.9'
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.9.0
|
83
|
+
type: :runtime
|
84
|
+
prerelease: false
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.9'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 0.9.0
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: nokogiri
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '1'
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 1.11.0
|
103
|
+
type: :runtime
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '1'
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 1.11.0
|
113
|
+
description: Those are tha basic tools required to work on PlatinumGames files and
|
114
|
+
mod them.
|
115
|
+
email: brice.videau@gmail.com
|
116
|
+
executables:
|
117
|
+
- bxm_decoder
|
118
|
+
- bxm_encoder
|
119
|
+
- clh_convert
|
120
|
+
- clp_convert
|
121
|
+
- clw_convert
|
122
|
+
- dat_creator
|
123
|
+
- dat_extractor
|
124
|
+
- dat_ls
|
125
|
+
- eff_idd_creator
|
126
|
+
- eff_idd_extractor
|
127
|
+
- exp_convert_wiiu_pc
|
128
|
+
- exp_tool
|
129
|
+
- mot_convert_wiiu_pc
|
130
|
+
- mot_tool
|
131
|
+
- pkz_extractor
|
132
|
+
- scr_creator
|
133
|
+
- scr_extractor
|
134
|
+
- wmb_cleanup
|
135
|
+
- wmb_common_bones
|
136
|
+
- wmb_convert_pc_switch
|
137
|
+
- wmb_convert_wiiu_pc
|
138
|
+
- wmb_export_assimp
|
139
|
+
- wmb_get_bone_map
|
140
|
+
- wmb_import_assimp
|
141
|
+
- wmb_import_nier
|
142
|
+
- wmb_import_wiiu
|
143
|
+
- wtb_convert_wiiu_pc
|
144
|
+
- wtx_creator
|
145
|
+
- wtx_extractor
|
146
|
+
extensions: []
|
147
|
+
extra_rdoc_files: []
|
148
|
+
files:
|
149
|
+
- LICENSE
|
150
|
+
- bin/bxm_decoder
|
151
|
+
- bin/bxm_encoder
|
152
|
+
- bin/clh_convert
|
153
|
+
- bin/clp_convert
|
154
|
+
- bin/clw_convert
|
155
|
+
- bin/dat_creator
|
156
|
+
- bin/dat_extractor
|
157
|
+
- bin/dat_ls
|
158
|
+
- bin/eff_idd_creator
|
159
|
+
- bin/eff_idd_extractor
|
160
|
+
- bin/exp_convert_wiiu_pc
|
161
|
+
- bin/exp_tool
|
162
|
+
- bin/mot_convert_wiiu_pc
|
163
|
+
- bin/mot_tool
|
164
|
+
- bin/pkz_extractor
|
165
|
+
- bin/scr_creator
|
166
|
+
- bin/scr_extractor
|
167
|
+
- bin/wmb_cleanup
|
168
|
+
- bin/wmb_common_bones
|
169
|
+
- bin/wmb_convert_pc_switch
|
170
|
+
- bin/wmb_convert_wiiu_pc
|
171
|
+
- bin/wmb_export_assimp
|
172
|
+
- bin/wmb_get_bone_map
|
173
|
+
- bin/wmb_import_assimp
|
174
|
+
- bin/wmb_import_nier
|
175
|
+
- bin/wmb_import_wiiu
|
176
|
+
- bin/wtb_convert_wiiu_pc
|
177
|
+
- bin/wtx_creator
|
178
|
+
- bin/wtx_extractor
|
179
|
+
- lib/bayonetta.rb
|
180
|
+
- lib/bayonetta/alignment.rb
|
181
|
+
- lib/bayonetta/bone.rb
|
182
|
+
- lib/bayonetta/bxm.rb
|
183
|
+
- lib/bayonetta/clh.rb
|
184
|
+
- lib/bayonetta/clp.rb
|
185
|
+
- lib/bayonetta/clw.rb
|
186
|
+
- lib/bayonetta/dat.rb
|
187
|
+
- lib/bayonetta/eff.rb
|
188
|
+
- lib/bayonetta/endianness.rb
|
189
|
+
- lib/bayonetta/exp.rb
|
190
|
+
- lib/bayonetta/linalg.rb
|
191
|
+
- lib/bayonetta/material_database.yaml
|
192
|
+
- lib/bayonetta/mot.rb
|
193
|
+
- lib/bayonetta/pkz.rb
|
194
|
+
- lib/bayonetta/scr.rb
|
195
|
+
- lib/bayonetta/tools/bxm_decoder.rb
|
196
|
+
- lib/bayonetta/tools/bxm_encoder.rb
|
197
|
+
- lib/bayonetta/tools/clh_convert.rb
|
198
|
+
- lib/bayonetta/tools/clp_convert.rb
|
199
|
+
- lib/bayonetta/tools/clw_convert.rb
|
200
|
+
- lib/bayonetta/tools/dat_creator.rb
|
201
|
+
- lib/bayonetta/tools/dat_extractor.rb
|
202
|
+
- lib/bayonetta/tools/dat_ls.rb
|
203
|
+
- lib/bayonetta/tools/eff_idd_creator.rb
|
204
|
+
- lib/bayonetta/tools/eff_idd_extractor.rb
|
205
|
+
- lib/bayonetta/tools/exp_convert_wiiu_pc.rb
|
206
|
+
- lib/bayonetta/tools/exp_tool.rb
|
207
|
+
- lib/bayonetta/tools/mot_convert_wiiu_pc.rb
|
208
|
+
- lib/bayonetta/tools/mot_tool.rb
|
209
|
+
- lib/bayonetta/tools/pkz_extractor.rb
|
210
|
+
- lib/bayonetta/tools/scr_creator.rb
|
211
|
+
- lib/bayonetta/tools/scr_extractor.rb
|
212
|
+
- lib/bayonetta/tools/wmb_cleanup.rb
|
213
|
+
- lib/bayonetta/tools/wmb_common_bones.rb
|
214
|
+
- lib/bayonetta/tools/wmb_convert_pc_switch.rb
|
215
|
+
- lib/bayonetta/tools/wmb_convert_wiiu_pc.rb
|
216
|
+
- lib/bayonetta/tools/wmb_export_assimp.rb
|
217
|
+
- lib/bayonetta/tools/wmb_get_bone_map.rb
|
218
|
+
- lib/bayonetta/tools/wmb_import_assimp.rb
|
219
|
+
- lib/bayonetta/tools/wmb_import_geometry_wiiu_pc.rb
|
220
|
+
- lib/bayonetta/tools/wmb_import_nier.rb
|
221
|
+
- lib/bayonetta/tools/wtb_convert_wiiu_pc.rb
|
222
|
+
- lib/bayonetta/tools/wtb_import_textures.rb
|
223
|
+
- lib/bayonetta/tools/wtx_creator.rb
|
224
|
+
- lib/bayonetta/tools/wtx_extractor.rb
|
225
|
+
- lib/bayonetta/vertex_types.yaml
|
226
|
+
- lib/bayonetta/vertex_types2.yaml
|
227
|
+
- lib/bayonetta/vertex_types_nier.yaml
|
228
|
+
- lib/bayonetta/wmb.rb
|
229
|
+
- lib/bayonetta/wmb3.rb
|
230
|
+
- lib/bayonetta/wtb.rb
|
231
|
+
homepage: https://github.com/kerilk/bayonetta_tools
|
232
|
+
licenses:
|
233
|
+
- BSD-2-Clause
|
234
|
+
metadata: {}
|
235
|
+
post_install_message:
|
236
|
+
rdoc_options: []
|
237
|
+
require_paths:
|
238
|
+
- lib
|
239
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - ">="
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: 2.3.0
|
244
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
245
|
+
requirements:
|
246
|
+
- - ">="
|
247
|
+
- !ruby/object:Gem::Version
|
248
|
+
version: '0'
|
249
|
+
requirements: []
|
250
|
+
rubygems_version: 3.1.2
|
251
|
+
signing_key:
|
252
|
+
specification_version: 4
|
253
|
+
summary: Library and utilities to manipulate PlatinumGames files.
|
254
|
+
test_files: []
|