mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-24 22:09:10 -06:00
70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
/*
|
|
TUIO2 C++ Library
|
|
Copyright (c) 2009-2014 Martin Kaltenbrunner <martin@tuio.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 3.0 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library.
|
|
*/
|
|
|
|
#include "TuioToken.h"
|
|
|
|
using namespace TUIO2;
|
|
|
|
TuioToken::TuioToken (TuioTime ttime, TuioObject *tobj, unsigned short ti, unsigned short ui, unsigned int sym, float xp, float yp, float a):TuioComponent(ttime, tobj, xp, yp,a) {
|
|
type_id = ti;
|
|
user_id = ui;
|
|
symbol_id = sym;
|
|
}
|
|
|
|
TuioToken::TuioToken (TuioObject *tobj, unsigned short ti, unsigned short ui, unsigned int sym, float xp, float yp, float a):TuioComponent(tobj, xp, yp, a) {
|
|
type_id = ti;
|
|
user_id = ui;
|
|
symbol_id = sym;
|
|
}
|
|
|
|
TuioToken::TuioToken (TuioObject *tobj, unsigned int sym, float xp, float yp, float a):TuioComponent(tobj, xp, yp, a) {
|
|
type_id = 0;
|
|
user_id = 0;
|
|
symbol_id = sym;
|
|
}
|
|
|
|
TuioToken::TuioToken (TuioToken *ttok):TuioComponent(ttok) {
|
|
symbol_id = ttok->getSymbolID();
|
|
}
|
|
|
|
void TuioToken::stop (TuioTime ttime) {
|
|
update(ttime,xpos,ypos,angle);
|
|
}
|
|
|
|
unsigned int TuioToken::getSymbolID() const{
|
|
return symbol_id;
|
|
}
|
|
|
|
unsigned short TuioToken::getTypeID() const{
|
|
return type_id;
|
|
};
|
|
|
|
unsigned short TuioToken::getUserID() const{
|
|
return user_id;
|
|
};
|
|
|
|
unsigned int TuioToken::getTypeUserID() const {
|
|
int tu_id = user_id << 16 | type_id;
|
|
return tu_id;
|
|
}
|
|
|
|
void TuioToken::setTypeUserID(unsigned int tu_id) {
|
|
user_id = tu_id >> 16;
|
|
type_id = tu_id & 0x0000FFFF;
|
|
}
|