164 lines
5.6 KiB
C++
164 lines
5.6 KiB
C++
// Filename: buttonEventList.cxx
|
|
// Created by: drose (12Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 "buttonEventList.h"
|
|
#include "modifierButtons.h"
|
|
#include "indent.h"
|
|
|
|
TypeHandle ButtonEventList::_type_handle;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::add_events
|
|
// Access: Public
|
|
// Description: Appends the events from the other list onto the end
|
|
// of this one.
|
|
////////////////////////////////////////////////////////////////////
|
|
void ButtonEventList::
|
|
add_events(const ButtonEventList &other) {
|
|
_events.reserve(_events.size() + other._events.size());
|
|
Events::const_iterator ei;
|
|
for (ei = other._events.begin(); ei != other._events.end(); ++ei) {
|
|
_events.push_back(*ei);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::update_mods
|
|
// Access: Public
|
|
// Description: Updates the indicated ModifierButtons object with all
|
|
// of the button up/down transitions indicated in the
|
|
// list.
|
|
////////////////////////////////////////////////////////////////////
|
|
void ButtonEventList::
|
|
update_mods(ModifierButtons &mods) const {
|
|
Events::const_iterator ei;
|
|
for (ei = _events.begin(); ei != _events.end(); ++ei) {
|
|
(*ei).update_mods(mods);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::output
|
|
// Access: Public, Virtual
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
void ButtonEventList::
|
|
output(ostream &out) const {
|
|
if (_events.empty()) {
|
|
out << "(no buttons)";
|
|
} else {
|
|
Events::const_iterator ei;
|
|
ei = _events.begin();
|
|
out << "(" << (*ei);
|
|
++ei;
|
|
while (ei != _events.end()) {
|
|
out << " " << (*ei);
|
|
++ei;
|
|
}
|
|
out << ")";
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::write
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
void ButtonEventList::
|
|
write(ostream &out, int indent_level) const {
|
|
indent(out, indent_level) << _events.size() << " events:\n";
|
|
Events::const_iterator ei;
|
|
for (ei = _events.begin(); ei != _events.end(); ++ei) {
|
|
indent(out, indent_level + 2) << (*ei) << "\n";
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::register_with_read_factory
|
|
// Access: Public, Static
|
|
// Description: Tells the BamReader how to create objects of type
|
|
// Lens.
|
|
////////////////////////////////////////////////////////////////////
|
|
void ButtonEventList::
|
|
register_with_read_factory() {
|
|
BamReader::get_factory()->register_factory(get_class_type(), make_from_bam);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::write_datagram
|
|
// Access: Public, Virtual
|
|
// Description: Writes the contents of this object to the datagram
|
|
// for shipping out to a Bam file.
|
|
////////////////////////////////////////////////////////////////////
|
|
void ButtonEventList::
|
|
write_datagram(BamWriter *manager, Datagram &dg) {
|
|
TypedWritable::write_datagram(manager, dg);
|
|
|
|
dg.add_uint16(_events.size());
|
|
Events::const_iterator ei;
|
|
for (ei = _events.begin(); ei != _events.end(); ++ei) {
|
|
(*ei).write_datagram(dg);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::make_from_bam
|
|
// Access: Protected, Static
|
|
// Description: This function is called by the BamReader's factory
|
|
// when a new object of type Lens is encountered
|
|
// in the Bam file. It should create the Lens
|
|
// and extract its information from the file.
|
|
////////////////////////////////////////////////////////////////////
|
|
TypedWritable *ButtonEventList::
|
|
make_from_bam(const FactoryParams ¶ms) {
|
|
ButtonEventList *list = new ButtonEventList;
|
|
DatagramIterator scan;
|
|
BamReader *manager;
|
|
|
|
parse_params(params, scan, manager);
|
|
list->fillin(scan, manager);
|
|
|
|
return list;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: ButtonEventList::fillin
|
|
// Access: Public
|
|
// Description: This internal function is called by make_from_bam to
|
|
// read in all of the relevant data from the BamFile for
|
|
// the new ButtonEventList.
|
|
//
|
|
// This function is normally protected, but it is
|
|
// declared public in this case so that MouseRecorder
|
|
// may call it to read a ButtonEventList from the middle
|
|
// of a datagram.
|
|
////////////////////////////////////////////////////////////////////
|
|
void ButtonEventList::
|
|
fillin(DatagramIterator &scan, BamReader *manager) {
|
|
TypedWritable::fillin(scan, manager);
|
|
|
|
int num_events = scan.get_uint16();
|
|
_events.clear();
|
|
_events.reserve(num_events);
|
|
for (int i = 0; i < num_events; i++) {
|
|
ButtonEvent event;
|
|
event.read_datagram(scan);
|
|
_events.push_back(event);
|
|
}
|
|
}
|