137 lines
5.2 KiB
C++
137 lines
5.2 KiB
C++
// Filename: mouseAndKeyboard.cxx
|
|
// Created by: drose (12Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "mouseAndKeyboard.h"
|
|
#include "mouseData.h"
|
|
#include "buttonHandle.h"
|
|
#include "buttonEvent.h"
|
|
#include "dataNodeTransmit.h"
|
|
#include "graphicsWindow.h"
|
|
|
|
TypeHandle MouseAndKeyboard::_type_handle;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: MouseAndKeyboard::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
MouseAndKeyboard::
|
|
MouseAndKeyboard(GraphicsWindow *window, int device, const string &name) :
|
|
DataNode(name),
|
|
_window(window),
|
|
_device(device)
|
|
{
|
|
_pixel_xy_output = define_output("pixel_xy", EventStoreVec2::get_class_type());
|
|
_pixel_size_output = define_output("pixel_size", EventStoreVec2::get_class_type());
|
|
_xy_output = define_output("xy", EventStoreVec2::get_class_type());
|
|
_button_events_output = define_output("button_events", ButtonEventList::get_class_type());
|
|
_pointer_events_output = define_output("pointer_events", PointerEventList::get_class_type());
|
|
|
|
_pixel_xy = new EventStoreVec2(LPoint2f(0.0f, 0.0f));
|
|
_pixel_size = new EventStoreVec2(LPoint2f(0.0f, 0.0f));
|
|
_xy = new EventStoreVec2(LPoint2f(0.0f, 0.0f));
|
|
_button_events = new ButtonEventList;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: MouseAndKeyboard::set_source
|
|
// Access: Public
|
|
// Description: Redirects the class to get the data from the mouse
|
|
// and keyboard associated with a different window
|
|
// and/or device number.
|
|
////////////////////////////////////////////////////////////////////
|
|
void MouseAndKeyboard::
|
|
set_source(GraphicsWindow *window, int device) {
|
|
_window = window;
|
|
_device = device;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: MouseAndKeyboard::get_source_window
|
|
// Access: Public
|
|
// Description: Returns the associated source window.
|
|
////////////////////////////////////////////////////////////////////
|
|
PT(GraphicsWindow) MouseAndKeyboard::
|
|
get_source_window() const {
|
|
return _window;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: MouseAndKeyboard::get_source_device
|
|
// Access: Public
|
|
// Description: Returns the associated source device.
|
|
////////////////////////////////////////////////////////////////////
|
|
int MouseAndKeyboard::
|
|
get_source_device() const {
|
|
return _device;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: MouseAndKeyboard::do_transmit_data
|
|
// Access: Protected, Virtual
|
|
// Description: The virtual implementation of transmit_data(). This
|
|
// function receives an array of input parameters and
|
|
// should generate an array of output parameters. The
|
|
// input parameters may be accessed with the index
|
|
// numbers returned by the define_input() calls that
|
|
// were made earlier (presumably in the constructor);
|
|
// likewise, the output parameters should be set with
|
|
// the index numbers returned by the define_output()
|
|
// calls.
|
|
////////////////////////////////////////////////////////////////////
|
|
void MouseAndKeyboard::
|
|
do_transmit_data(DataGraphTraverser *, const DataNodeTransmit &,
|
|
DataNodeTransmit &output) {
|
|
if (_window->has_button_event(_device)) {
|
|
// Fill up the button events.
|
|
_button_events->clear();
|
|
while (_window->has_button_event(_device)) {
|
|
ButtonEvent be = _window->get_button_event(_device);
|
|
_button_events->add_event(be);
|
|
}
|
|
output.set_data(_button_events_output, EventParameter(_button_events));
|
|
}
|
|
if (_window->has_pointer_event(_device)) {
|
|
PT(PointerEventList) pel = _window->get_pointer_events(_device);
|
|
output.set_data(_pointer_events_output, EventParameter(pel));
|
|
}
|
|
|
|
// Get the window size.
|
|
WindowProperties properties = _window->get_properties();
|
|
if (properties.has_size()) {
|
|
int w = properties.get_x_size();
|
|
int h = properties.get_y_size();
|
|
|
|
_pixel_size->set_value(LPoint2f(w, h));
|
|
output.set_data(_pixel_size_output, EventParameter(_pixel_size));
|
|
|
|
if (_window->has_pointer(_device)) {
|
|
const MouseData &mdata = _window->get_pointer(_device);
|
|
|
|
if (mdata._in_window) {
|
|
// Get mouse motion in pixels.
|
|
_pixel_xy->set_value(LPoint2f(mdata._xpos, mdata._ypos));
|
|
output.set_data(_pixel_xy_output, EventParameter(_pixel_xy));
|
|
|
|
// Normalize pixel motion to range [-1,1].
|
|
float xf = (float)(2 * mdata._xpos) / (float)w - 1.0f;
|
|
float yf = 1.0f - (float)(2 * mdata._ypos) / (float)h;
|
|
|
|
_xy->set_value(LPoint2f(xf, yf));
|
|
output.set_data(_xy_output, EventParameter(_xy));
|
|
}
|
|
}
|
|
}
|
|
}
|