|
@@ -52,6 +52,8 @@ Spiel::Spiel()
|
|
|
zuletztFortgesetzterTimer = 0;
|
|
|
zuletztBenutzterTunnel = 0;
|
|
|
zuletztBenutzteUmlenkung = 0;
|
|
|
+ nextAutoVerschiebung = 10;
|
|
|
+ nextAutoSchaltung = 10;
|
|
|
ref = 1;
|
|
|
}
|
|
|
|
|
@@ -458,6 +460,60 @@ void Spiel::tick( double zeit )
|
|
|
{
|
|
|
if( pause )
|
|
|
zeit = 0;
|
|
|
+ nextAutoVerschiebung -= zeit;
|
|
|
+ nextAutoSchaltung -= zeit;
|
|
|
+ if( nextAutoVerschiebung <= 0 )
|
|
|
+ {
|
|
|
+ nextAutoVerschiebung += 30 + randG.rand() * 30;
|
|
|
+ int anz = 0;
|
|
|
+ for( auto b = barieren.getIterator(); b; b++ )
|
|
|
+ {
|
|
|
+ if( b->hatStyle( Bariere::Style::AutoVerschiebung ) )
|
|
|
+ anz++;
|
|
|
+ }
|
|
|
+ if( anz )
|
|
|
+ {
|
|
|
+ int rand = (int)( randG.rand() * anz );
|
|
|
+ for( auto b = barieren.getIterator(); b; b++ )
|
|
|
+ {
|
|
|
+ if( b->hatStyle( Bariere::Style::AutoVerschiebung ) )
|
|
|
+ {
|
|
|
+ if( rand == 0 )
|
|
|
+ {
|
|
|
+ b->startAutoVerschiebung( this );
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ rand--;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if( nextAutoSchaltung <= 0 )
|
|
|
+ {
|
|
|
+ nextAutoSchaltung += 30 + randG.rand() * 30;
|
|
|
+ int anz = 0;
|
|
|
+ for( auto b = barieren.getIterator(); b; b++ )
|
|
|
+ {
|
|
|
+ if( b->hatStyle( Bariere::Style::AutoSchaltung ) )
|
|
|
+ anz++;
|
|
|
+ }
|
|
|
+ if( anz )
|
|
|
+ {
|
|
|
+ int rand = (int)( randG.rand() * anz );
|
|
|
+ for( auto b = barieren.getIterator(); b; b++ )
|
|
|
+ {
|
|
|
+ if( b->hatStyle( Bariere::Style::AutoSchaltung ) )
|
|
|
+ {
|
|
|
+ if( rand == 0 )
|
|
|
+ {
|
|
|
+ b->startAutoSchaltung( this );
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ rand--;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
// spieler bewegungen
|
|
|
for( auto s = spieler.getIterator(); s; s++ )
|
|
|
{
|