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
a08f0f67
Commit
a08f0f67
authored
17 years ago
by
Shon Ferguson
Browse files
Options
Downloads
Patches
Plain Diff
Updating NiObject to new Python update method. Will probably break compilation for a while.
parent
c8833c85
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/obj/NiObject.cpp
+103
-42
103 additions, 42 deletions
src/obj/NiObject.cpp
with
103 additions
and
42 deletions
src/obj/NiObject.cpp
+
103
−
42
View file @
a08f0f67
/* Copyright (c) 2006, NIF File Format Library and Tools
All rights reserved. Please see niflib.h for license. */
#include
"../../include/obj/NiObject.h"
//-----------------------------------NOTICE----------------------------------//
// Some of this file is automatically filled in by a Python script. Only //
// add custom code in the designated areas or it will be overwritten during //
// the next update. //
//-----------------------------------NOTICE----------------------------------//
//--BEGIN FILE HEAD CUSTOM CODE--//
#include
"../../include/niflib.h"
//--END CUSTOM CODE--//
#include
"../../include/FixLink.h"
#include
"../../include/NIF_IO.h"
#include
"../../include/obj/NiObject.h"
using
namespace
Niflib
;
//Definition of TYPE constant
const
Type
NiObject
::
TYPE
(
"NiObject"
,
NULL
);
//Static to track total number of objects in memory. Initialize to zero.
unsigned
int
NiObject
::
objectsInMemory
=
0
;
NiObject
::
NiObject
()
:
_ref_count
(
0
)
{
NiObject
::
NiObject
()
{
//--BEGIN CONSTRUCTOR CUSTOM CODE--//
_ref_count
=
0
;
objectsInMemory
++
;
//--END CUSTOM CODE--//
}
NiObject
::~
NiObject
()
{
//--BEGIN DESTRUCTOR CUSTOM CODE--//
objectsInMemory
--
;
//--END CUSTOM CODE--//
}
const
Type
&
NiObject
::
GetType
()
const
{
return
TYPE
;
}
namespace
Niflib
{
typedef
NiObject
*
(
*
obj_factory_func
)();
extern
map
<
string
,
obj_factory_func
>
global_object_map
;
//Initialization function
static
bool
Initialization
();
//A static bool to force the initialization to happen pre-main
static
bool
obj_initialized
=
Initialization
();
static
bool
Initialization
()
{
//Add the function to the global object map
global_object_map
[
"NiObject"
]
=
NiObject
::
Create
;
//Do this stuff just to make sure the compiler doesn't optimize this function and the static bool away.
obj_initialized
=
true
;
return
obj_initialized
;
}
}
NiObject
*
NiObject
::
Create
()
{
return
new
NiObject
;
}
void
NiObject
::
Read
(
istream
&
in
,
list
<
unsigned
int
>
&
link_stack
,
const
NifInfo
&
info
)
{
//--BEGIN PRE-READ CUSTOM CODE--//
//--END CUSTOM CODE--//
//--BEGIN POST-READ CUSTOM CODE--//
//--END CUSTOM CODE--//
}
void
NiObject
::
Write
(
ostream
&
out
,
const
map
<
NiObjectRef
,
unsigned
int
>
&
link_map
,
const
NifInfo
&
info
)
const
{
//--BEGIN PRE-WRITE CUSTOM CODE--//
//--END CUSTOM CODE--//
//--BEGIN POST-WRITE CUSTOM CODE--//
//--END CUSTOM CODE--//
}
std
::
string
NiObject
::
asString
(
bool
verbose
)
const
{
//--BEGIN PRE-STRING CUSTOM CODE--//
//--END CUSTOM CODE--//
stringstream
out
;
unsigned
int
array_output_count
=
0
;
return
out
.
str
();
//--BEGIN POST-STRING CUSTOM CODE--//
//--END CUSTOM CODE--//
}
void
NiObject
::
FixLinks
(
const
map
<
unsigned
int
,
NiObjectRef
>
&
objects
,
list
<
unsigned
int
>
&
link_stack
,
const
NifInfo
&
info
)
{
//--BEGIN PRE-FIXLINKS CUSTOM CODE--//
//--END CUSTOM CODE--//
//--BEGIN POST-FIXLINKS CUSTOM CODE--//
//--END CUSTOM CODE--//
}
std
::
list
<
NiObjectRef
>
NiObject
::
GetRefs
()
const
{
list
<
Ref
<
NiObject
>
>
refs
;
return
refs
;
}
//--BEGIN MISC CUSTOM CODE--//
bool
NiObject
::
IsSameType
(
const
Type
&
compare_to
)
const
{
return
GetType
().
IsSameType
(
compare_to
);
}
...
...
@@ -49,15 +146,6 @@ unsigned int NiObject::NumObjectsInMemory() {
return
objectsInMemory
;
}
//These should be pure virtual eventually
string
NiObject
::
asString
(
bool
verbose
)
const
{
return
string
();
}
list
<
NiObjectRef
>
NiObject
::
GetRefs
()
const
{
return
list
<
NiObjectRef
>
();
}
/*! Used to format a human readable string that includes the type of the object */
string
NiObject
::
GetIDString
()
const
{
stringstream
out
;
...
...
@@ -92,35 +180,8 @@ NiObjectRef NiObject::Clone( unsigned int version, unsigned int user_version ) {
return
clone
;
};
const
Type
&
NiObject
::
GetType
()
const
{
return
TYPE
;
};
unsigned
int
NiObject
::
GetNumRefs
()
{
return
_ref_count
;
}
namespace
Niflib
{
typedef
NiObject
*
(
*
obj_factory_func
)();
extern
map
<
string
,
obj_factory_func
>
global_object_map
;
//Initialization function
static
bool
Initialization
();
//A static bool to force the initialization to happen pre-main
static
bool
obj_initialized
=
Initialization
();
static
bool
Initialization
()
{
//Add the function to the global object map
global_object_map
[
"NiObject"
]
=
NiObject
::
Create
;
//Do this stuff just to make sure the compiler doesn't optimize this function and the static bool away.
obj_initialized
=
true
;
return
obj_initialized
;
}
}
NiObject
*
NiObject
::
Create
()
{
return
new
NiObject
;
}
//--END CUSTOM CODE--//
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