/****************************************************************************** This source file is part of AstroMenace game (Hardcore 3D space shooter with spaceship upgrade possibilities.) For the latest info, see http://www.viewizard.com/ File name: AlienSpaceFighterEngine.cpp Copyright (c) 2006-2007 Michael Kurinnoy, Viewizard All Rights Reserved. File Version: 1.2 ****************************************************************************** AstroMenace game source code available under "dual licensing" model. The licensing options available are: * Commercial Licensing. This is the appropriate option if you are creating proprietary applications and you are not prepared to distribute and share the source code of your application. Contact us for pricing at viewizard@viewizard.com * Open Source Licensing. This is the appropriate option if you want to share the source code of your application with everyone you distribute it to, and you also want to give them the right to share who uses it. You should have received a copy of the GNU General Public License version 3 with this source codes. If not, see . ******************************************************************************/ /// подключаем нужные файлы #include "AlienSpaceFighter.h" //----------------------------------------------------------------------------- // Создание двигателя //----------------------------------------------------------------------------- void SetAlienSpaceFighterEngine(eParticleSystem *ParticleSystem, int EngineType) { ParticleSystem->Texture = vw_FindTextureByName("DATA/GFX/flare1.tga"); ParticleSystem->Direction = VECTOR3D(0.0f, 0.0f, -1.0f); switch(EngineType) { case 1: // большой двигатель ParticleSystem->ColorStart.r = 0.00f; ParticleSystem->ColorStart.g = 0.70f; ParticleSystem->ColorStart.b = 1.00f; ParticleSystem->ColorEnd.r = 0.70f; ParticleSystem->ColorEnd.g = 1.00f; ParticleSystem->ColorEnd.b = 1.00f; ParticleSystem->AlphaStart = 1.00f; ParticleSystem->AlphaEnd = 0.00f; ParticleSystem->SizeStart = 0.30f; ParticleSystem->SizeVar = 0.10f; ParticleSystem->SizeEnd = 0.50f; ParticleSystem->Speed = 10.00f; ParticleSystem->SpeedOnCreation = 10.00f; ParticleSystem->Theta = 0.00f; ParticleSystem->Life = 1.00f; ParticleSystem->ParticlesPerSec = 50; ParticleSystem->CreationType = 2; ParticleSystem->CreationSize = VECTOR3D(0.8f,0.8f,0.8f); ParticleSystem->IsAttractive = true; ParticleSystem->Light = vw_CreatPointLight(VECTOR3D(0.0f,0.0f,0.0f), 0.35f, 0.85f, 1.0f, 0.0f, 0.1f); ParticleSystem->LightNeedDeviation = true; break; case 2: // малый двигатель ParticleSystem->ColorStart.r = 0.00f; ParticleSystem->ColorStart.g = 0.70f; ParticleSystem->ColorStart.b = 1.00f; ParticleSystem->ColorEnd.r = 0.70f; ParticleSystem->ColorEnd.g = 1.00f; ParticleSystem->ColorEnd.b = 1.00f; ParticleSystem->AlphaStart = 1.00f; ParticleSystem->AlphaEnd = 0.20f; ParticleSystem->SizeStart = 0.30f; ParticleSystem->SizeVar = 0.00f; ParticleSystem->SizeEnd = 0.10f; ParticleSystem->Speed = 6.00f; ParticleSystem->SpeedOnCreation = 6.00f; ParticleSystem->Theta = 20.00f; ParticleSystem->Life = 0.30f; ParticleSystem->ParticlesPerSec = 50; ParticleSystem->CreationType = 1; ParticleSystem->CreationSize = VECTOR3D(0.4f,0.7f,0.1f); ParticleSystem->IsAttractive = true; ParticleSystem->Light = vw_CreatPointLight(VECTOR3D(0.0f,0.0f,0.0f), 0.35f, 0.85f, 1.0f, 0.0f, 0.3f); ParticleSystem->LightNeedDeviation = true; break; case 3: // кабина ParticleSystem->ColorStart.r = 0.00f; ParticleSystem->ColorStart.g = 0.70f; ParticleSystem->ColorStart.b = 1.00f; ParticleSystem->ColorEnd.r = 0.70f; ParticleSystem->ColorEnd.g = 1.00f; ParticleSystem->ColorEnd.b = 1.00f; ParticleSystem->AlphaStart = 0.50f; ParticleSystem->AlphaEnd = 0.00f; ParticleSystem->SizeStart = 0.30f; ParticleSystem->SizeVar = 0.30f; ParticleSystem->SizeEnd = 0.20f; ParticleSystem->Speed = 3.0f; ParticleSystem->SpeedOnCreation = -1.0f; ParticleSystem->Theta = 360.00f; ParticleSystem->Life = 1.0f; ParticleSystem->ParticlesPerSec = 15; ParticleSystem->IsAttractive = true; break; case 4: // кабина - высокая, двойная ParticleSystem->ColorStart.r = 0.00f; ParticleSystem->ColorStart.g = 0.70f; ParticleSystem->ColorStart.b = 1.00f; ParticleSystem->ColorEnd.r = 0.70f; ParticleSystem->ColorEnd.g = 1.00f; ParticleSystem->ColorEnd.b = 1.00f; ParticleSystem->AlphaStart = 0.50f; ParticleSystem->AlphaEnd = 0.00f; ParticleSystem->SizeStart = 0.50f; ParticleSystem->SizeVar = 0.30f; ParticleSystem->SizeEnd = 0.20f; ParticleSystem->Speed = 3.0f; ParticleSystem->SpeedOnCreation = -1.0f; ParticleSystem->Theta = 360.00f; ParticleSystem->Life = 1.0f; ParticleSystem->ParticlesPerSec = 20; ParticleSystem->IsAttractive = true; ParticleSystem->CreationType = 1; ParticleSystem->CreationSize = VECTOR3D(0.1f,0.9f,0.1f); break; case 5: // основа для очень большого двигателя ParticleSystem->ColorStart.r = 0.00f; ParticleSystem->ColorStart.g = 0.40f; ParticleSystem->ColorStart.b = 1.00f; ParticleSystem->ColorEnd.r = 0.00f; ParticleSystem->ColorEnd.g = 0.70f; ParticleSystem->ColorEnd.b = 1.00f; ParticleSystem->AlphaStart = 1.00f; ParticleSystem->AlphaEnd = 0.00f; ParticleSystem->SizeStart = 0.50f; ParticleSystem->SizeVar = 0.10f; ParticleSystem->SizeEnd = 0.10f; ParticleSystem->Speed = 7.00f; ParticleSystem->SpeedOnCreation = -1.00f; ParticleSystem->Theta = 360.00f; ParticleSystem->Life = 1.50f; ParticleSystem->ParticlesPerSec = 40; ParticleSystem->IsAttractive = true; ParticleSystem->Light = vw_CreatPointLight(VECTOR3D(0.0f,0.0f,0.0f), 0.0f, 0.55f, 1.0f, 0.0f, 0.1f); ParticleSystem->LightNeedDeviation = true; break; case 6: // малый двигатель 2 ParticleSystem->ColorStart.r = 0.00f; ParticleSystem->ColorStart.g = 0.70f; ParticleSystem->ColorStart.b = 1.00f; ParticleSystem->ColorEnd.r = 0.70f; ParticleSystem->ColorEnd.g = 1.00f; ParticleSystem->ColorEnd.b = 1.00f; ParticleSystem->AlphaStart = 1.00f; ParticleSystem->AlphaEnd = 0.20f; ParticleSystem->SizeStart = 0.30f; ParticleSystem->SizeVar = 0.00f; ParticleSystem->SizeEnd = 0.10f; ParticleSystem->Speed = 6.00f; ParticleSystem->SpeedOnCreation = 6.00f; ParticleSystem->Theta = 20.00f; ParticleSystem->Life = 0.30f; ParticleSystem->ParticlesPerSec = 50; ParticleSystem->CreationType = 1; ParticleSystem->CreationSize = VECTOR3D(0.5f,0.5f,0.1f); ParticleSystem->IsAttractive = true; ParticleSystem->Light = vw_CreatPointLight(VECTOR3D(0.0f,0.0f,0.0f), 0.35f, 0.85f, 1.0f, 0.0f, 0.3f); ParticleSystem->LightNeedDeviation = true; break; case 7: // свечение частей ParticleSystem->ColorStart.r = 0.00f; ParticleSystem->ColorStart.g = 0.70f; ParticleSystem->ColorStart.b = 1.00f; ParticleSystem->ColorEnd.r = 0.70f; ParticleSystem->ColorEnd.g = 1.00f; ParticleSystem->ColorEnd.b = 1.00f; ParticleSystem->AlphaStart = 1.00f; ParticleSystem->AlphaEnd = 0.20f; ParticleSystem->SizeStart = 0.30f; ParticleSystem->SizeVar = 0.10f; ParticleSystem->SizeEnd = 0.10f; ParticleSystem->Speed = 8.00f; ParticleSystem->SpeedOnCreation = -1.00f; ParticleSystem->Theta = 0.00f; ParticleSystem->Life = 0.30f; ParticleSystem->ParticlesPerSec = 20; ParticleSystem->CreationType = 1; ParticleSystem->CreationSize = VECTOR3D(0.1f,0.2f,0.1f); ParticleSystem->IsAttractive = true; break; } }