Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10428 for code


Ignore:
Timestamp:
May 7, 2015, 2:29:09 PM (9 years ago)
Author:
gpregger
Message:

waste of time + New Explosion in 'rocket.cc' + old Rocket in 'rocketOld.cc' with 'RocketFireOld.cc'

Location:
code/branches/ParticleEffectsFS15
Files:
9 added
11 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ParticleEffectsFS15/data/DefaultResources.oxr

    r7709 r10428  
    1010    <ResourceLocation path = "gui/schemes" />
    1111    <ResourceLocation path = "gui/scripts" />
     12   
    1213</ResourceCollection>
  • code/branches/ParticleEffectsFS15/data/levels/emptyLevel.oxw

    r9415 r10428  
    1313
    1414<?lua
    15   include("templates/spaceshipAssff2.oxt")
     15  include("templates/spaceshipAssff.oxt")
    1616  include("templates/spaceshipPirate.oxt")
    1717  include("templates/spaceshipEscort.oxt")
     
    3030
    3131    <Light type=directional position="0,0,0" direction="0.253, 0.593, -0.765" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0"/>
    32     <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort />
     32    <SpawnPoint team=0 position="-200,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff />
    3333   
    3434  </Scene>
  • code/branches/ParticleEffectsFS15/data/levels/includes/weaponSettingsAssff.oxi

    r8868 r10428  
    3939        </Weapon>
    4040        <Weapon>
    41           <SimpleRocketFire mode=2 muzzleoffset="0,0,0" damage=30 shielddamage=20 />
     41          <SimpleRocketFire mode=2 muzzleoffset="0,0,0" damage=30 healthdamage=50 shielddamage=20 />
    4242          <RocketFire mode=3 muzzleoffset="0,0,0" damage=30 healthdamage=50 shielddamage=20 />
    4343        </Weapon>
  • code/branches/ParticleEffectsFS15/src/external/CMakeLists.txt

    r9550 r10428  
    2727ADD_SUBDIRECTORY(gtest)
    2828ADD_SUBDIRECTORY(loki)
     29
    2930IF(CEGUI_OGRE_RENDERER_BUILD_REQUIRED)
    3031  ADD_SUBDIRECTORY(ogreceguirenderer)
  • code/branches/ParticleEffectsFS15/src/external/ogreceguirenderer/CMakeLists.txt

    r8729 r10428  
    3838    ${OCR_FILES}
    3939)
     40
     41TARGET_LINK_LIBRARIES(ogreceguirenderer_orxonox
     42    pthread
     43    boost_system   
     44)
  • code/branches/ParticleEffectsFS15/src/modules/weapons/CMakeLists.txt

    r7163 r10428  
    1919  SOURCE_FILES ${WEAPONS_SRC_FILES}
    2020)
     21
     22#TARGET_LINK_LIBRARIES(weapons
     23#    particleuniverse_orxonox
     24#)
  • code/branches/ParticleEffectsFS15/src/modules/weapons/WeaponsPrereqs.h

    r8855 r10428  
    8282    class Projectile;
    8383    class Rocket;
     84    class RocketOld;
    8485    class SimpleRocket;
    8586
     
    9192    class LightningGun;
    9293    class RocketFire;
     94    class RocketFireOld;
    9395    class SimpleRocketFire;
    9496}
  • code/branches/ParticleEffectsFS15/src/modules/weapons/projectiles/CMakeLists.txt

    r8855 r10428  
    66  LightningGunProjectile.cc
    77  Rocket.cc
     8  RocketOld.cc
    89  SimpleRocket.cc
    910)
  • code/branches/ParticleEffectsFS15/src/modules/weapons/projectiles/Rocket.cc

    r10216 r10428  
    4848#include "worldentities/CameraPosition.h"
    4949#include "worldentities/pawns/Pawn.h"
     50//#include "particleuniverse/include/ParticleUniverseSystemManager.h"
    5051
    5152namespace orxonox
     
    8384            fire->setOrientation(this->getOrientation());
    8485            fire->setSource("Orxonox/rocketfire");
     86           
     87            // Add Particle Universe Effects
     88                //ParticleUniverse::ParticleSystemManager* pManager = ParticleUniverse::ParticleSystemManager::getSingletonPtr();
     89                //ParticleUniverse::ParticleSystem* pSys1 = pManager->createParticleSystem("pSys1", "bubbles", this->getScene()->getSceneManager());
     90                //this->attachOgreObject(pSys1);
    8591
    8692            this->enableCollisionCallback();
     
    223229    void Rocket::destructionEffect()
    224230    {
    225         ParticleSpawner *effect1, *effect2;
     231        ParticleSpawner *effect1, *effect2, *effect3, *effect4, *effect5;
    226232        if(this->getShooter())
    227233        {
    228234            effect1 = new ParticleSpawner(this->getShooter()->getContext());
    229235            effect2 = new ParticleSpawner(this->getShooter()->getContext());
     236            effect3 = new ParticleSpawner(this->getShooter()->getContext());
     237            effect4 = new ParticleSpawner(this->getShooter()->getContext());
     238            effect5 = new ParticleSpawner(this->getShooter()->getContext());
    230239        }
    231240        else
     
    233242            effect1 = new ParticleSpawner(this->getContext());
    234243            effect2 = new ParticleSpawner(this->getContext());
     244            effect3 = new ParticleSpawner(this->getContext());
     245            effect4 = new ParticleSpawner(this->getContext());
     246            effect5 = new ParticleSpawner(this->getContext());
    235247        }
    236248
     
    238250        effect1->setOrientation(this->getOrientation());
    239251        effect1->setDestroyAfterLife(true);
    240         effect1->setSource("Orxonox/explosion4");
     252        effect1->setSource("orxonox/explosion_flash");
    241253        effect1->setLifetime(2.0f);
    242254
     
    244256        effect2->setOrientation(this->getOrientation());
    245257        effect2->setDestroyAfterLife(true);
    246         effect2->setSource("Orxonox/smoke4");
     258        effect2->setSource("orxonox/explosion_flame");
    247259        effect2->setLifetime(3.0f);
     260
     261        effect3->setPosition(this->getPosition());
     262        effect3->setOrientation(this->getOrientation());
     263        effect3->setDestroyAfterLife(true);
     264        effect3->setSource("orxonox/explosion_shockwave");
     265        effect3->setLifetime(3.0f);
     266
     267        effect4->setPosition(this->getPosition());
     268        effect4->setOrientation(this->getOrientation());
     269        effect4->setDestroyAfterLife(true);
     270        effect4->setSource("orxonox/explosion_sparks");
     271        effect4->setLifetime(3.0f);
     272
     273        effect5->setPosition(this->getPosition());
     274        effect5->setOrientation(this->getOrientation());
     275        effect5->setDestroyAfterLife(true);
     276        effect5->setSource("orxonox/explosion_streak1");
     277        effect5->setLifetime(3.0f);
    248278    }
    249279
  • code/branches/ParticleEffectsFS15/src/modules/weapons/weaponmodes/CMakeLists.txt

    r7163 r10428  
    66  LightningGun.cc
    77  RocketFire.cc
     8  RocketFireOld.cc
    89  SimpleRocketFire.cc
    910)
  • code/branches/ParticleEffectsFS15/src/orxonox/worldentities/CMakeLists.txt

    r8706 r10428  
    1212  SpawnPoint.cc
    1313  TeamSpawnPoint.cc
     14 
    1415)
    1516
Note: See TracChangeset for help on using the changeset viewer.