Browse Source

Auto verschiebung/schaltung von Barieren hinzugefügt

Kolja Strohm 5 years ago
parent
commit
2eda30b773
2 changed files with 58 additions and 0 deletions
  1. 56 0
      StickmanWorldOnline/Spiel.cpp
  2. 2 0
      StickmanWorldOnline/Spiel.h

+ 56 - 0
StickmanWorldOnline/Spiel.cpp

@@ -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++ )
     {

+ 2 - 0
StickmanWorldOnline/Spiel.h

@@ -91,6 +91,8 @@ private:
     int karteId;
     int gameTicks;
     bool pause;
+    double nextAutoVerschiebung;
+    double nextAutoSchaltung;
     int ref;
 
 public: