Skip to content

Commit b37beef

Browse files
committed
add a visible exit timer to test.pl
1 parent 59961df commit b37beef

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

test.pl

+12-6
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
my $hasVBO = 0;
9292
my $hasFragProg = 0;
9393
my $hasImagePointer = 0;
94-
my $idleTime = time();
94+
my $idleTime = $hasHires ? gettimeofday() : time();
9595
my $idleSecsMax = 5;
9696
my $er;
9797

@@ -791,7 +791,9 @@ sub ourInitShaders
791791
sub cbRenderScene
792792
{
793793
# Quit if inactive
794-
if ($idleSecsMax < (time()-$idleTime))
794+
my $time = $hasHires ? gettimeofday() : time();
795+
my $time_to_exit = $idleSecsMax - ($time-$idleTime);
796+
if ($time_to_exit <= 0 )
795797
{
796798
print "Idle timeout; completing test\n";
797799
ourCleanup();
@@ -989,6 +991,10 @@ sub cbRenderScene
989991
# But, for fun, let's make the text partially transparent too.
990992
glColor4f(0.6,1.0,0.6,.75);
991993

994+
$buf = sprintf "TIME TO EXIT: %.1fs", $time_to_exit;
995+
my $bufwidth = 6 * length $buf;
996+
glRasterPos2i($Window_Width-4-$bufwidth,2); ourPrintString(GLUT_BITMAP_HELVETICA_12,$buf);
997+
992998
# Render our various display mode settings.
993999
$buf = sprintf "Mode: %s", $TexModesStr[$Curr_TexMode];
9941000
glRasterPos2i(2,2); ourPrintString(GLUT_BITMAP_HELVETICA_12,$buf);
@@ -1321,7 +1327,7 @@ sub cbKeyPressed
13211327
printf "KP: No action for %d.\n", $key;
13221328
}
13231329

1324-
$idleTime = time();
1330+
$idleTime = $hasHires ? gettimeofday() : time();
13251331
}
13261332

13271333
# ------
@@ -1360,7 +1366,7 @@ sub cbSpecialKeyPressed
13601366
printf "SKP: No action for %d.\n", $key;
13611367
}
13621368

1363-
$idleTime = time();
1369+
$idleTime = $hasHires ? gettimeofday() : time();
13641370
}
13651371

13661372
# ------
@@ -1466,7 +1472,7 @@ sub cbMouseClick
14661472
print "\n";
14671473
}
14681474

1469-
$idleTime = time();
1475+
$idleTime = $hasHires ? gettimeofday() : time();
14701476
}
14711477

14721478
sub GetKeyModifier
@@ -1497,7 +1503,7 @@ sub cbResizeScene
14971503
$Window_Width = $Width;
14981504
$Window_Height = $Height;
14991505

1500-
$idleTime = time();
1506+
$idleTime = $hasHires ? gettimeofday() : time();
15011507
}
15021508

15031509
sub cbWindowStat

0 commit comments

Comments
 (0)