|
@@ -71,21 +71,31 @@ Asteroid *GameData::createNewAsteroid()
|
|
Vec2< float > speed( (float)cos( sw ), (float)sin( sw ) );
|
|
Vec2< float > speed( (float)cos( sw ), (float)sin( sw ) );
|
|
speed *= (float)( rGen->rand() * 40 );
|
|
speed *= (float)( rGen->rand() * 40 );
|
|
Vec2< float > pos( (float)rGen->rand() * breite, (float)rGen->rand() * höhe );
|
|
Vec2< float > pos( (float)rGen->rand() * breite, (float)rGen->rand() * höhe );
|
|
- if( ( ship->getPosition() - pos ).getLengthSq() > world->getWorldInfo().size.getLengthSq() / 3 )
|
|
|
|
- return 0;
|
|
|
|
- if( speed.x < 0 )
|
|
|
|
- pos.x = (float)( breite + 200 );
|
|
|
|
- Asteroid *ast = new Asteroid( aData[ num ]->getThis(), 0, pos, speed, (float)( rGen->rand() * 100 ) / 75.f, (float)sw, aGröße / 1000.f, num );
|
|
|
|
- int aAnz = asteroid->getEintragAnzahl();
|
|
|
|
- for( int i = 0; i < aAnz; i++ )
|
|
|
|
|
|
+ if( ( ship->getPosition() - Vertex( (float)world->getWorldInfo().size.x, 0 ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() + Vertex( (float)world->getWorldInfo().size.x, 0 ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() - Vertex( 0, (float)world->getWorldInfo().size.y ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() + Vertex( 0, (float)world->getWorldInfo().size.y ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() - Vertex( (float)world->getWorldInfo().size.x, (float)world->getWorldInfo().size.y ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() + Vertex( (float)world->getWorldInfo().size.x, (float)world->getWorldInfo().size.y ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() + Vertex( (float)world->getWorldInfo().size.x, -(float)world->getWorldInfo().size.y ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() + Vertex( -(float)world->getWorldInfo().size.x, (float)world->getWorldInfo().size.y ) - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 &&
|
|
|
|
+ ( ship->getPosition() - pos ).getLength() > world->getWorldInfo().size.getLength() / 3 )
|
|
{
|
|
{
|
|
- if( ast->istModelInnen( asteroid->z( i ) ) )
|
|
|
|
|
|
+ if( speed.x < 0 )
|
|
|
|
+ pos.x = (float)( breite + 200 );
|
|
|
|
+ Asteroid *ast = new Asteroid( aData[ num ]->getThis(), 0, pos, speed, (float)( rGen->rand() * 100 ) / 75.f, (float)sw, aGröße / 1000.f, num );
|
|
|
|
+ int aAnz = asteroid->getEintragAnzahl();
|
|
|
|
+ for( int i = 0; i < aAnz; i++ )
|
|
{
|
|
{
|
|
- ast->release();
|
|
|
|
- return 0;
|
|
|
|
|
|
+ if( ast->istModelInnen( asteroid->z( i ) ) )
|
|
|
|
+ {
|
|
|
|
+ ast->release();
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ return ast;
|
|
}
|
|
}
|
|
- return ast;
|
|
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
// nicht constant
|
|
// nicht constant
|