Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Niflib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Kim
Niflib
Commits
664a4620
Commit
664a4620
authored
18 years ago
by
Shon Ferguson
Browse files
Options
Downloads
Patches
Plain Diff
Implemented Quaternion template specialization.
Some other DAoC related fixes to XML.
parent
9d03c41f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
NIF_IO.cpp
+9
-9
9 additions, 9 deletions
NIF_IO.cpp
NIF_IO.h
+7
-2
7 additions, 2 deletions
NIF_IO.h
gen/obj_defines.h
+35
-20
35 additions, 20 deletions
gen/obj_defines.h
niflib.h
+1
-1
1 addition, 1 deletion
niflib.h
with
52 additions
and
32 deletions
NIF_IO.cpp
+
9
−
9
View file @
664a4620
...
...
@@ -119,7 +119,7 @@ float ReadFloat( istream &in ){
string
ReadString
(
istream
&
in
)
{
uint
len
=
ReadUInt
(
in
);
string
out
;
if
(
len
>
4
000
)
if
(
len
>
10
000
)
throw
runtime_error
(
"String too long. Not a NIF file or unsupported format?"
);
if
(
len
>
0
)
{
out
.
resize
(
len
);
...
...
@@ -612,7 +612,12 @@ string HexString( const byte * src, uint len ) {
}
void
StreamQuatKey
(
Key
<
Quaternion
>
&
key
,
istream
&
file
,
KeyType
type
)
{
//Byte
ostream
&
operator
<<
(
ostream
&
out
,
byte
const
&
val
)
{
return
out
<<
uint
(
val
);
}
void
NifStream
(
Key
<
Quaternion
>
&
key
,
istream
&
file
,
uint
version
,
KeyType
type
)
{
key
.
time
=
ReadFloat
(
file
);
//If key type is not 1, 2, or 3, throw an exception
...
...
@@ -632,7 +637,7 @@ string HexString( const byte * src, uint len ) {
}
void
Stream
QuatKey
(
Key
<
Quaternion
>
const
&
key
,
ostream
&
file
,
KeyType
type
)
{
void
Nif
Stream
(
Key
<
Quaternion
>
const
&
key
,
ostream
&
file
,
uint
version
,
KeyType
type
)
{
WriteFloat
(
key
.
time
,
file
);
//If key type is not 1, 2, or 3, throw an exception
...
...
@@ -649,9 +654,4 @@ void StreamQuatKey( Key<Quaternion> const & key, ostream& file, KeyType type ) {
WriteFloat
(
key
.
bias
,
file
);
WriteFloat
(
key
.
continuity
,
file
);
}
}
//Byte
ostream
&
operator
<<
(
ostream
&
out
,
byte
const
&
val
)
{
return
out
<<
uint
(
val
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
NIF_IO.h
+
7
−
2
View file @
664a4620
...
...
@@ -379,6 +379,11 @@ ostream & operator<<( ostream & out, HeaderString const & val );
//--Templates--//
void
NifStream
(
Key
<
Quaternion
>
&
key
,
istream
&
file
,
uint
version
,
KeyType
type
);
void
NifStream
(
Key
<
Quaternion
>
const
&
key
,
ostream
&
file
,
uint
version
,
KeyType
type
);
//Key<T>
template
<
class
T
>
void
NifStream
(
Key
<
T
>
&
key
,
istream
&
file
,
uint
version
,
KeyType
type
)
{
...
...
@@ -450,8 +455,8 @@ ostream & operator<<( ostream & out, Key<T> const & val ) {
}
//Key<Quaternion>
void
StreamQuatKey
(
Key
<
Quaternion
>
&
key
,
istream
&
file
,
uint
version
,
KeyType
type
);
void
StreamQuatKey
(
Key
<
Quaternion
>
const
&
key
,
ostream
&
file
,
uint
version
,
KeyType
type
);
//
void StreamQuatKey( Key<Quaternion> & key, istream& file, uint version, KeyType type );
//
void StreamQuatKey( Key<Quaternion> const & key, ostream& file, uint version, KeyType type );
//The HexString function creates a formatted hex display of the given data for use in printing
//a debug string for information that is not understood
...
...
This diff is collapsed.
Click to expand it.
gen/obj_defines.h
+
35
−
20
View file @
664a4620
...
...
@@ -8513,54 +8513,69 @@ return refs; \
#define NI_PARTICLE_MESH_MODIFIER_MEMBERS \
uint numParticleMeshes; \
Ref<NiAVObject > particleMeshes; \
vector<
Ref<NiAVObject >
>
particleMeshes; \
#define NI_PARTICLE_MESH_MODIFIER_INCLUDE "AParticleModifier.h" \
#define NI_PARTICLE_MESH_MODIFIER_PARENT AParticleModifier \
#define NI_PARTICLE_MESH_MODIFIER_CONSTRUCT \
: numParticleMeshes((uint)0)
, particleMeshes(NULL)
\
: numParticleMeshes((uint)0) \
#define NI_PARTICLE_MESH_MODIFIER_READ \
uint block_num; \
AParticleModifier::Read( in, link_stack, version, user_version ); \
NifStream( numParticleMeshes, in, version ); \
NifStream( block_num, in, version ); \
link_stack.push_back( block_num ); \
particleMeshes.resize(numParticleMeshes); \
for (uint i0 = 0; i0 < particleMeshes.size(); i0++) { \
NifStream( block_num, in, version ); \
link_stack.push_back( block_num ); \
}; \
#define NI_PARTICLE_MESH_MODIFIER_WRITE \
AParticleModifier::Write( out, link_map, version, user_version ); \
NifStream( numParticleMeshes, out, version ); \
if ( particleMeshes != NULL ) \
NifStream( link_map[StaticCast<NiObject>(particleMeshes)], out, version ); \
else \
NifStream( 0xffffffff, out, version ); \
for (uint i0 = 0; i0 < particleMeshes.size(); i0++) { \
if ( particleMeshes[i0] != NULL ) \
NifStream( link_map[StaticCast<NiObject>(particleMeshes[i0])], out, version ); \
else \
NifStream( 0xffffffff, out, version ); \
}; \
#define NI_PARTICLE_MESH_MODIFIER_STRING \
stringstream out; \
out << AParticleModifier::asString(); \
out << "Num Particle Meshes: " << numParticleMeshes << endl; \
out << "Particle Meshes: " << particleMeshes << endl; \
for (uint i0 = 0; i0 < particleMeshes.size(); i0++) { \
if ( !verbose && ( i0 > MAXARRAYDUMP ) ) { \
out << "<Data Truncated. Use verbose mode to see complete listing.>" << endl; \
break; \
}; \
out << " Particle Meshes[" << i0 << "]: " << particleMeshes[i0] << endl; \
}; \
return out.str(); \
#define NI_PARTICLE_MESH_MODIFIER_FIXLINKS \
AParticleModifier::FixLinks( objects, link_stack, version, user_version ); \
if (link_stack.empty()) \
throw runtime_error("Trying to pop a link from empty stack. This is probably a bug."); \
if (link_stack.front() != 0xffffffff) { \
particleMeshes = DynamicCast<NiAVObject>(objects[link_stack.front()]); \
if ( particleMeshes == NULL ) \
throw runtime_error("Link could not be cast to required type during file read. This NIF file may be invalid or improperly understood."); \
} else \
particleMeshes = NULL; \
link_stack.pop_front(); \
for (uint i0 = 0; i0 < particleMeshes.size(); i0++) { \
if (link_stack.empty()) \
throw runtime_error("Trying to pop a link from empty stack. This is probably a bug."); \
if (link_stack.front() != 0xffffffff) { \
particleMeshes[i0] = DynamicCast<NiAVObject>(objects[link_stack.front()]); \
if ( particleMeshes[i0] == NULL ) \
throw runtime_error("Link could not be cast to required type during file read. This NIF file may be invalid or improperly understood."); \
} else \
particleMeshes[i0] = NULL; \
link_stack.pop_front(); \
}; \
#define NI_PARTICLE_MESH_MODIFIER_GETREFS \
list<Ref<NiObject> > refs; \
refs = AParticleModifier::GetRefs(); \
if ( particleMeshes != NULL ) \
refs.push_back(StaticCast<NiObject>(particleMeshes)); \
for (uint i0 = 0; i0 < particleMeshes.size(); i0++) { \
if ( particleMeshes[i0] != NULL ) \
refs.push_back(StaticCast<NiObject>(particleMeshes[i0])); \
}; \
return refs; \
#define NI_PARTICLE_ROTATION_MEMBERS \
...
...
This diff is collapsed.
Click to expand it.
niflib.h
+
1
−
1
View file @
664a4620
...
...
@@ -194,7 +194,7 @@ NIFLIB_API void WriteFileGroup( string const & file_name, NiObjectRef const & ro
* \param right The root block of the second Nif tree to merge.
* \param version The version of the nif format to use during the clone operation on the right-hand tree. The default is the highest version availiable.
*/
NIFLIB_API
void
MergeNifTrees
(
NiNodeRef
target
,
NiAVObjectRef
right
,
unsigned
int
version
=
0xffffffff
);
//
NIFLIB_API void MergeNifTrees( NiNodeRef target, NiAVObjectRef right, unsigned int version = 0xffffffff );
//// Returns list of all blocks in the tree rooted by root block.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment