open_toontown_panda3d/panda/src/pgraph/alphaTestAttrib.cxx

167 lines
6.3 KiB
C++

// Filename: alphaTestAttrib.cxx
// Created by: drose (04Mar02)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) 2001 - 2004, 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 "alphaTestAttrib.h"
#include "attribSlots.h"
#include "graphicsStateGuardianBase.h"
#include "dcast.h"
#include "bamReader.h"
#include "bamWriter.h"
#include "datagram.h"
#include "datagramIterator.h"
TypeHandle AlphaTestAttrib::_type_handle;
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::make
// Access: Published, Static
// Description: Constructs a new AlphaTestAttrib object.
////////////////////////////////////////////////////////////////////
CPT(RenderAttrib) AlphaTestAttrib::
make(PandaCompareFunc mode, float reference_value) {
assert((reference_value >=0.0f) && (reference_value <=1.0f));
AlphaTestAttrib *attrib = new AlphaTestAttrib(mode,reference_value);
return return_new(attrib);
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::output
// Access: Public, Virtual
// Description:
////////////////////////////////////////////////////////////////////
void AlphaTestAttrib::
output(ostream &out) const {
out << get_type() << ":";
output_comparefunc(out,_mode);
out << "," << _reference_alpha;
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::compare_to_impl
// Access: Protected, Virtual
// Description: Intended to be overridden by derived AlphaTestAttrib
// types to return a unique number indicating whether
// this AlphaTestAttrib is equivalent to the other one.
//
// This should return 0 if the two AlphaTestAttrib objects
// are equivalent, a number less than zero if this one
// should be sorted before the other one, and a number
// greater than zero otherwise.
//
// This will only be called with two AlphaTestAttrib
// objects whose get_type() functions return the same.
////////////////////////////////////////////////////////////////////
int AlphaTestAttrib::
compare_to_impl(const RenderAttrib *other) const {
const AlphaTestAttrib *ta;
DCAST_INTO_R(ta, other, 0);
int compare_result = ((int)_mode - (int)ta->_mode) ;
if (compare_result!=0) {
return compare_result;
} else {
return (int) (255.0f*(_reference_alpha - ta->_reference_alpha));
}
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::make_default_impl
// Access: Protected, Virtual
// Description: Intended to be overridden by derived AlphaTestAttrib
// types to specify what the default property for a
// AlphaTestAttrib of this type should be.
//
// This should return a newly-allocated AlphaTestAttrib of
// the same type that corresponds to whatever the
// standard default for this kind of AlphaTestAttrib is.
////////////////////////////////////////////////////////////////////
RenderAttrib *AlphaTestAttrib::
make_default_impl() const {
return new AlphaTestAttrib;
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::store_into_slot
// Access: Public, Virtual
// Description: Stores this attrib into the appropriate slot of
// an object of class AttribSlots.
////////////////////////////////////////////////////////////////////
void AlphaTestAttrib::
store_into_slot(AttribSlots *slots) const {
slots->_alpha_test = this;
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::register_with_read_factory
// Access: Public, Static
// Description: Tells the BamReader how to create objects of type
// AlphaTestAttrib.
////////////////////////////////////////////////////////////////////
void AlphaTestAttrib::
register_with_read_factory() {
BamReader::get_factory()->register_factory(get_class_type(), make_from_bam);
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::write_datagram
// Access: Public, Virtual
// Description: Writes the contents of this object to the datagram
// for shipping out to a Bam file.
////////////////////////////////////////////////////////////////////
void AlphaTestAttrib::
write_datagram(BamWriter *manager, Datagram &dg) {
RenderAttrib::write_datagram(manager, dg);
dg.add_int8(_mode);
dg.add_float32(_reference_alpha);
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::make_from_bam
// Access: Protected, Static
// Description: This function is called by the BamReader's factory
// when a new object of type AlphaTestAttrib is encountered
// in the Bam file. It should create the AlphaTestAttrib
// and extract its information from the file.
////////////////////////////////////////////////////////////////////
TypedWritable *AlphaTestAttrib::
make_from_bam(const FactoryParams &params) {
AlphaTestAttrib *attrib = new AlphaTestAttrib;
DatagramIterator scan;
BamReader *manager;
parse_params(params, scan, manager);
attrib->fillin(scan, manager);
return attrib;
}
////////////////////////////////////////////////////////////////////
// Function: AlphaTestAttrib::fillin
// Access: Protected
// Description: This internal function is called by make_from_bam to
// read in all of the relevant data from the BamFile for
// the new AlphaTestAttrib.
////////////////////////////////////////////////////////////////////
void AlphaTestAttrib::
fillin(DatagramIterator &scan, BamReader *manager) {
RenderAttrib::fillin(scan, manager);
_mode = (PandaCompareFunc)scan.get_int8();
_reference_alpha = scan.get_float32();
}