65 lines
2.2 KiB
C++
Executable File
65 lines
2.2 KiB
C++
Executable File
// Filename: config_softegg.cxx
|
|
// Created by: masad (25Sep03)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2003, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "config_softegg.h"
|
|
#include "softEggGroupUserData.h"
|
|
#include "softNodeDesc.h"
|
|
|
|
#include "dconfig.h"
|
|
|
|
Configure(config_softegg);
|
|
NotifyCategoryDef(softegg, ":soft");
|
|
|
|
ConfigureFn(config_softegg) {
|
|
init_libsoftegg();
|
|
}
|
|
|
|
// These control the default behavior of the softegg converter, but
|
|
// not necessarily the default behavior of the soft2egg command-line
|
|
// tool (which has its own defaults).
|
|
|
|
// Should we respect the Soft? double-sided flag (true) or ignore it
|
|
// and assume everything is single-sided (false)?
|
|
const bool soft_default_double_sided = config_softegg.GetBool("soft-default-double-sided", false);
|
|
|
|
// Should we apply vertex color even when a texture is applied (true)
|
|
// or only when no texture is applied or the vertex-color egg flag is
|
|
// set (false)?
|
|
const bool soft_default_vertex_color = config_softegg.GetBool("soft-default-vertex-color", true);
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: init_libsoftegg
|
|
// Description: Initializes the library. This must be called at
|
|
// least once before any of the functions or classes in
|
|
// this library can be used. Normally it will be
|
|
// called by the static initializers and need not be
|
|
// called explicitly, but special cases exist.
|
|
////////////////////////////////////////////////////////////////////
|
|
void
|
|
init_libsoftegg() {
|
|
static bool initialized = false;
|
|
if (initialized) {
|
|
return;
|
|
}
|
|
initialized = true;
|
|
|
|
SoftEggGroupUserData::init_type();
|
|
SoftNodeDesc::init_type();
|
|
}
|
|
|