本文整理汇总了C++中EventBuffer::print方法的典型用法代码示例。如果您正苦于以下问题:C++ EventBuffer::print方法的具体用法?C++ EventBuffer::print怎么用?C++ EventBuffer::print使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EventBuffer
的用法示例。
在下文中一共展示了EventBuffer::print方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: keyboardchar
void keyboardchar(int key) {
switch (key) {
case 'p':
cout << "current list in eventBuffer: " << endl;
eventBuffer.print();
cout << endl;
cout << "Event[0] status: " << eventBuffer[0].getStatus() << endl;
break;
default:
sillyKeyboard(key);
}
}
示例2: keyboardchar
void keyboardchar(int key) {
switch (key) {
case 'p': // print eventbuffer info
eventBuffer.print();
cout << endl;
break;
case '[': // speed up echo rate
decayrate *= 0.99;
cout << "Decay rate = " << decayrate << endl;
break;
case ']': // slow down echo rate
decayrate /= 0.99;
cout << "Decay rate = " << decayrate << endl;
break;
default:
sillyKeyboard(key);
}
}
示例3: keyboardchar
void keyboardchar(int key) {
switch (key) {
case 'p':
cout << "current list in eventBuffer: " << endl;
eventBuffer.print();
cout << endl;
cout << "Event[0] status: " << eventBuffer[0].getStatus() << endl;
break;
case '\\':
direction *= -1;
if (direction == 1) {
cout << "Up" << endl;
} else {
cout << "Down" << endl;
}
break;
case 'r': // random direction to current algorithms
randomizeDirections(tparam);
cout << "Random directions" << endl;
break;
case 'f': // normal direction of algorithms
forwardDirections(tparam);
cout << "Normal directions" << endl;
break;
case 'i': // invert direction of algorithms
invertDirections(tparam);
cout << "Inverted directions" << endl;
break;
case 'c': // reverse direction of algorithms
reverseDirections(tparam);
cout << "Changed directions" << endl;
break;
case 's': // increase rhythmic sensitivity
tolerance = limit(tolerance * 1.02, 0.01, 0.99);
cout << "Sensitivity = " << tolerance << endl;
break;
case 'x': // decrease rhythmic sensitivity
tolerance = limit(tolerance / 1.02, 0.01, 0.99);
cout << "Sensitivity = " << tolerance << endl;
break;
default:
sillyKeyboard(key);
}
}