Quellcode durchsuchen

add output() function

David Rose vor 24 Jahren
Ursprung
Commit
d31a882b09

+ 27 - 17
panda/src/express/typeHandle.I

@@ -24,7 +24,7 @@
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Constructor
-//       Access: Public
+//       Access: Published
 //  Description: The default constructor must do nothing, because we
 //               can't guarantee ordering of static initializers.  If
 //               the constructor tried to initialize its value, it
@@ -37,7 +37,7 @@ TypeHandle() {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Copy Constructor
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE TypeHandle::
@@ -46,7 +46,7 @@ TypeHandle(const TypeHandle &copy) : _index(copy._index) {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Equality Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool TypeHandle::
@@ -56,7 +56,7 @@ operator == (const TypeHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Inequality Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool TypeHandle::
@@ -66,7 +66,7 @@ operator != (const TypeHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Ordering Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool TypeHandle::
@@ -76,7 +76,7 @@ operator < (const TypeHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Ordering Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool TypeHandle::
@@ -86,7 +86,7 @@ operator <= (const TypeHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Ordering Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool TypeHandle::
@@ -96,7 +96,7 @@ operator > (const TypeHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::Ordering Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool TypeHandle::
@@ -106,7 +106,7 @@ operator >= (const TypeHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::get_name
-//       Access: Public
+//       Access: Published
 //  Description: Returns the name of the type.
 //
 //               The "object" pointer is an optional pointer to the
@@ -125,7 +125,7 @@ get_name(TypedObject *object) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::is_derived_from
-//       Access: Public
+//       Access: Published
 //  Description: Returns true if this type is derived from the
 //               indicated type, false otherwise.
 //
@@ -141,7 +141,7 @@ is_derived_from(TypeHandle parent, TypedObject *object) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::get_num_parent_classes
-//       Access: Public
+//       Access: Published
 //  Description: Returns the number of parent classes that this
 //               type is known to have.  This may then be used to
 //               index into get_parent_class().  The result will be 0
@@ -162,7 +162,7 @@ get_num_parent_classes(TypedObject *object) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::get_num_parent_classes
-//       Access: Public
+//       Access: Published
 //  Description: Returns the nth parent class of this type.  The index
 //               should be in the range 0 <= index <
 //               get_num_parent_classes().
@@ -174,7 +174,7 @@ get_parent_class(int index) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::get_num_child_classes
-//       Access: Public
+//       Access: Published
 //  Description: Returns the number of child classes that this
 //               type is known to have.  This may then be used to
 //               index into get_child_class().
@@ -191,7 +191,7 @@ get_num_child_classes(TypedObject *object) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::get_num_child_classes
-//       Access: Public
+//       Access: Published
 //  Description: Returns the nth child class of this type.  The index
 //               should be in the range 0 <= index <
 //               get_num_child_classes().
@@ -203,7 +203,7 @@ get_child_class(int index) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::get_parent_towards
-//       Access: Public
+//       Access: Published
 //  Description: Returns the parent class that is in a direct line of
 //               inheritance to the indicated ancestor class.  This is
 //               useful in the presence of multiple inheritance to try
@@ -226,7 +226,7 @@ get_parent_towards(TypeHandle ancestor, TypedObject *object) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::get_index
-//       Access: Public
+//       Access: Published
 //  Description: Returns the integer index associated with this
 //               TypeHandle. Each different TypeHandle will have a
 //               different index.  However, you probably shouldn't be
@@ -240,9 +240,19 @@ get_index() const {
   return _index;
 }
 
+////////////////////////////////////////////////////////////////////
+//     Function: TypeHandle::output
+//       Access: Published
+//  Description: 
+////////////////////////////////////////////////////////////////////
+INLINE void TypeHandle::
+output(ostream &out) const {
+  out << get_name();
+}
+
 ////////////////////////////////////////////////////////////////////
 //     Function: TypeHandle::none
-//       Access: Public, Static
+//       Access: Published, Static
 //  Description: Returns a special zero-valued TypeHandle that is used
 //               to indicate no type.
 ////////////////////////////////////////////////////////////////////

+ 3 - 2
panda/src/express/typeHandle.h

@@ -114,7 +114,7 @@ PUBLISHED:
                                        TypedObject *object = (TypedObject *)NULL) const;
 
   INLINE int get_index() const;
-
+  INLINE void output(ostream &out) const;
   INLINE static TypeHandle none();
 
 private:
@@ -128,7 +128,8 @@ friend class TypeRegistry;
 // It's handy to be able to output a TypeHandle directly, and see the
 // type name.
 INLINE ostream &operator << (ostream &out, TypeHandle type) {
-  return out << type.get_name();
+  type.output(out);
+  return out;
 }
 
 // We must include typeRegistry at this point so we can call it from

+ 19 - 9
panda/src/putil/buttonHandle.I

@@ -19,7 +19,7 @@
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::Constructor
-//       Access: Public
+//       Access: Published
 //  Description: The default constructor must do nothing, because we
 //               can't guarantee ordering of static initializers.  If
 //               the constructor tried to initialize its value, it
@@ -32,7 +32,7 @@ ButtonHandle() {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::Copy Constructor
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE ButtonHandle::
@@ -41,7 +41,7 @@ ButtonHandle(const ButtonHandle &copy) : _index(copy._index) {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::Equality Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool ButtonHandle::
@@ -51,7 +51,7 @@ operator == (const ButtonHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::Inequality Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool ButtonHandle::
@@ -61,7 +61,7 @@ operator != (const ButtonHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::Ordering Operator
-//       Access: Public
+//       Access: Published
 //  Description:
 ////////////////////////////////////////////////////////////////////
 INLINE bool ButtonHandle::
@@ -71,7 +71,7 @@ operator < (const ButtonHandle &other) const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::has_ascii_equivalent
-//       Access: Public
+//       Access: Published
 //  Description: Returns true if the button was created with an ASCII
 //               equivalent code (e.g. for a standard keyboard
 //               button).
@@ -83,7 +83,7 @@ has_ascii_equivalent() const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::get_ascii_equivalent
-//       Access: Public
+//       Access: Published
 //  Description: Returns the character code associated with the
 //               button, or '\0' if no ASCII code was associated.
 ////////////////////////////////////////////////////////////////////
@@ -94,7 +94,7 @@ get_ascii_equivalent() const {
 
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::get_index
-//       Access: Public
+//       Access: Published
 //  Description: Returns the integer index associated with this
 //               ButtonHandle. Each different ButtonHandle will have a
 //               different index.  However, you probably shouldn't be
@@ -108,9 +108,19 @@ get_index() const {
   return _index;
 }
 
+////////////////////////////////////////////////////////////////////
+//     Function: ButtonHandle::output
+//       Access: Published
+//  Description: 
+////////////////////////////////////////////////////////////////////
+INLINE void ButtonHandle::
+output(ostream &out) const {
+  out << get_name();
+}
+
 ////////////////////////////////////////////////////////////////////
 //     Function: ButtonHandle::none
-//       Access: Public, Static
+//       Access: Published, Static
 //  Description: Returns a special zero-valued ButtonHandle that is
 //               used to indicate no button.
 ////////////////////////////////////////////////////////////////////

+ 3 - 1
panda/src/putil/buttonHandle.h

@@ -44,6 +44,7 @@ PUBLISHED:
   INLINE char get_ascii_equivalent() const;
 
   INLINE int get_index() const;
+  INLINE void output(ostream &out) const;
   INLINE static ButtonHandle none();
 
 private:
@@ -56,7 +57,8 @@ friend class ButtonRegistry;
 // It's handy to be able to output a ButtonHandle directly, and see the
 // button name.
 INLINE ostream &operator << (ostream &out, ButtonHandle button) {
-  return out << button.get_name();
+  button.output(out);
+  return out;
 }
 
 #include "buttonHandle.I"