openclonk/planet/Arena.ocf/ScorchedGardens.ocs/Script.c

159 lines
4.4 KiB
C
Raw Normal View History

2011-02-11 17:12:27 +00:00
/*--
Scorches Gardens
Author: Mimmo_O
A melee in a fiery setting.
--*/
protected func Initialize()
{
SetMatAdjust(RGB(255,150,128));
2011-02-11 17:12:27 +00:00
// Goal.
CreateObject(Goal_DeathMatch, 0, 0, NO_OWNER);
2011-02-11 17:12:27 +00:00
CreateObject(Rule_KillLogs);
//Enviroment.
CreateObject(Rule_ObjectFade)->DoFadeTime(10 * 36);
SetSkyAdjust(RGB(255,128,0));
CreateObject(Column,160,304)->SetClrModulation(RGB(255,100,80));
CreateObject(Column,448,272)->SetClrModulation(RGB(255,100,80));
2011-02-11 17:12:27 +00:00
AddEffect("RandomMeteor", nil, 100, 36-Min(GetPlayerCount()*3,20));
AddEffect("RemoveCorpses", nil, 100, 1);
2011-02-11 17:12:27 +00:00
// Smooth brick edges.
PlaceEdges();
PlaceGras();
return;
}
2011-02-11 17:12:27 +00:00
global func FxRemoveCorpsesTimer()
{
//uber effect abuse
for(var dead in FindObjects(Find_ID(Clonk),Find_Not(Find_OCF(OCF_Alive))))
{
CastParticles("MagicFire",100,50,dead->GetX(),dead->GetY(),50+Random(30));
CastParticles("MagicFire",50,30,dead->GetX(),dead->GetY(),70+Random(60));
dead->RemoveObject();
}
for(var burning in FindObjects(Find_ID(Clonk),Find_OCF(OCF_OnFire)))
{
burning->DoEnergy(-3); //lava hurts a lot
}
}
global func FxRandomMeteorTimer()
{
if(!Random(10)) return ;
2011-02-11 17:12:27 +00:00
var flint = CreateObject(Firestone,50+Random(LandscapeWidth()-100),-10);
flint->SetYDir(25+Random(6));
flint->SetXDir(RandomX(-20,20));
flint->SetMass(0);
2011-02-11 17:12:27 +00:00
AddEffect("Meteorsparkle",flint,100,1,nil,nil,true);
}
public func FxMeteorSparkleStart(obj, effect, iTemp, natural)
{
if(iTemp) return;
effect.n=natural;
}
global func FxMeteorsparkleTimer(obj, effect, time)
{
if (!obj)
return -1;
2011-02-11 17:12:27 +00:00
var x=obj->GetX(), y=obj->GetY();
CreateParticle("FireballSmoke",x,y,Sin(Random(360),2),Cos(Random(360),2),RandomX(120,180),RGBa(100,100,100,70));
for(var i=0; i<6; i++) CreateParticle("MagicFire",x,y,Sin(Random(360),RandomX(5,6)),Cos(Random(360),RandomX(5,6)),RandomX(50,90),HSL(Random(50), 200+Random(25), Random(100)));
CreateParticle("MagicSpark",x,y,Sin(Random(360),RandomX(15,33)),Cos(Random(360),RandomX(15,33)),RandomX(30,70),RGB(255,255,255));
if (obj->Contained())
{
obj->Hit();
return -1;
}
if (Abs(obj->GetXDir())<3 && Abs(obj->GetYDir())<3)
effect.count++;
2011-02-11 17:12:27 +00:00
else effect.count=0;
if (effect.count>10)
{
obj->Hit();
return -1;
}
return 1;
2011-02-11 17:12:27 +00:00
}
global func FxMeteorsparkleStop (obj, effect, reason, iTemp)
{
if (iTemp)
return;
if (!obj)
return;
for (var i = 0; i < 30; i++)
CreateParticle("MagicSpark",obj->GetX(),obj->GetY(),Sin(Random(360),RandomX(15,33)),Cos(Random(360),RandomX(15,33)),RandomX(30,70),RGB(255,255,255));
return;
2011-02-11 17:12:27 +00:00
}
private func PlaceEdges()
2011-02-11 17:12:27 +00:00
{
var x=[69, 69, 76, 84, 484, 76, 565, 565, 532, 68, 68, 476, 468, 235, 665, 675, 685, 775, 685, 775, 532, 765, 695, 765, 765, 365, 525, 505];
var y=[357, 349, 364, 364, 260, 300, 305, 313, 313, 300, 308, 260, 268, 495, 375, 365, 355, 355, 275, 415, 305, 345, 345, 255, 285, 445, 445, 435];
var d=[3, 1, 3, 2, 0, 0, 1, 3, 2, 1, 3, 1, 1, 3, 1, 1, 1, 0, 3, 2, 0, 0, 1, 1, 3, 3, 2, 3];
2011-02-11 17:12:27 +00:00
for (var i = 0; i < GetLength(x); i++)
{
var edge=CreateObject(BrickEdge, x[i], y[i] + 4, NO_OWNER);
2011-02-11 17:12:27 +00:00
edge->Initialize();
edge->SetP(d[i]);
edge->SetPosition(x[i],y[i]);
edge->PermaEdge();
}
return;
2011-02-11 17:12:27 +00:00
}
global func PlaceGras()
{
var x=[502,468,530,525,548,560,555,551,461,483,354,425,348,343,338,420,412,405,300,315,310,305,290,193,198,169,181,176,127,137,142,133,122,147,35,45,41,30,122];
var y=[225,221,201,206,191,178,181,185,228,220,190,234,190,188,188,231,226,221,229,218,221,228,229,262,260,261,261,259,227,227,230,228,237,240,221,221,219,222,224];
var r=[45,-45,-45,-45,-45,-45,-45,-45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-45,45,45,0,-45,0,-45,45,0,-45,90];
2011-02-11 17:12:27 +00:00
for (var i = 0; i < GetLength(x); i++)
{
while(GBackSolid(x[i],y[i])) y[i]--;
var edge=CreateObject(Grass, x[i], y[i] + 5, NO_OWNER);
edge->SetCategory(C4D_StaticBack);
edge->SetR(r[i]);
edge->Initialize();
edge->SetClrModulation(RGB(200+Random(50),100+Random(60),100+Random(60)));
}
return 1;
}
protected func OnPlayerRelaunch(int plr)
{
var clonk = GetCrew(plr);
clonk->DoEnergy(100000);
var x = RandomX(75,500);
var y=100;
while(!GBackSolid(x,y)) y+=1;
2011-02-11 17:12:27 +00:00
y-=30;
var relaunch = CreateObject(RelaunchContainer, x, y, clonk->GetOwner());
relaunch->StartRelaunch(clonk);
relaunch->SetRelaunchTime(3);
clonk->CreateContents(TeleGlove);
2011-02-11 17:12:27 +00:00
return;
}
func OnClonkLeftRelaunch(object clonk)
{
CastParticles("Magic",36,12,clonk->GetX(),clonk->GetY(),30,60,clonk->GetColor(),clonk->GetColor(),clonk);
clonk->SetYDir(-5);
return;
}
func WinKillCount() { return 5; }