本文整理汇总了C++中Simulator::Update方法的典型用法代码示例。如果您正苦于以下问题:C++ Simulator::Update方法的具体用法?C++ Simulator::Update怎么用?C++ Simulator::Update使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Simulator
的用法示例。
在下文中一共展示了Simulator::Update方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main()
{
// Inicialización de ncurses
initscr();
start_color();
cbreak();
noecho();
curs_set( 0 );
nodelay( stdscr, TRUE );
keypad( stdscr, TRUE );
// Inicialización del simulador
Simulator* simulator = Simulator::GetInstance();
// Inicialización de instrumentos
Gauge* gTorque = new Gauge( "Torque", 5, 3 );
Gauge* gRPM = new Gauge( "RPM", 5, 6 );
Gauge* gITT = new Gauge( "ITT", 5, 9 );
// Bucle principal
int tecla;
while( (tecla = getch()) != 'q' )
{
// Leemos el teclado
switch( tecla ) {
case '1':
simulator->StartEngine1();
break;
case '2':
simulator->StopEngine1();
break;
case '3':
break;
case '4':
break;
}
// Actualizamos el estado del simulador
simulator->Update();
// Asignamos los valores actualizados a los instrumentos
gTorque->setValue( simulator->torque1() );
gRPM->setValue( simulator->rpm1() );
gITT->setValue( simulator->itt1() );
// Borramos la pantalla y redibujamos todo
erase();
mvprintw( 0, 20, "ENGINE 1" ); // mvprintw escribe un texto en unas coordenadas (y,x). Permite formato al estilo de printf()
gTorque->Refresh();
gRPM->Refresh();
gITT->Refresh();
// LINES es la altura actual de la pantalla en líneas de texto
mvprintw( LINES - 3, 0, "1 = Arrancar motor 1 2 = Parar motor 1" );
mvprintw( LINES - 2, 0, "3 = Arrancar motor 2 4 = Parar motor 2" );
mvprintw( LINES - 1, 0, "Q = Salir" );
refresh();
// Detenemos el programa 1 ms para no saturar la CPU
usleep( 1000 );
}
// Desinicialización de instrumentos
delete gTorque;
delete gRPM;
delete gITT;
// Desinicialización de ncurses
endwin();
}