I'll use the bulldozer as my example. Before I joined the project, it was originally done thusly:

- Screenshot 2025-03-10 151553.png (399.92 KiB) Viewed 24379 times
A number of Custom Invisible Bridge actors of various heights and radii arranged carefully around the actual bulldozer actor. Naturally, this struck me as something tedious to recreate in the event, say if a mapper wanted to place another bulldozer. One would have to copy/paste this whole setup, or recreate it from scratch. Especially tedious if changing the orientation. Plus it just looks messy in the map editor.
So, I opted to create some actors in ZScript that replicate the function of those Custom Invisible Bridge actors. Here are the ones for the bulldozer (as well as one from the robotic loader since I inherited from it as a base class)
Code: Select all
class LoaderBox : Actor
{
Default
{
Radius 32;
Height 64;
+SOLID
+NOGRAVITY
+NOLIFTDROP
+ACTLIKEBRIDGE
}
}
class BulldozerRoof : LoaderBox
{
Default
{
Radius 36;
Height 2;
}
}
class BulldozerFront : LoaderBox
{
Default
{
Radius 16;
Height 40;
}
}
class BulldozerSide : LoaderBox
{
Default
{
Radius 16;
Height 24;
}
}
class BulldozerRear : LoaderBox
{
Default
{
Radius 8;
Height 64;
}
}
class BulldozerPillar : LoaderBox
{
Default
{
Radius 2;
Height 64;
}
}
Now that I've defined my analogues of the Custom Invisible Bridges, I tell the bulldozer in ZScript to spawn and position these invisible blocks automatically upon its genesis by using the PostBeginPlay() function.
Code: Select all
class Bulldozer1 : ModelBase
{
override void postbeginplay()
{
A_SpawnItemEx("BulldozerRoof",-8,0,88);
A_SpawnItemEx("BulldozerFront",80,-32);
A_SpawnItemEx("BulldozerFront",80,-16);
A_SpawnItemEx("BulldozerFront",80,16);
A_SpawnItemEx("BulldozerFront",80,32);
A_SpawnItemEx("BulldozerFront",48,-16);
A_SpawnItemEx("BulldozerFront",48,16);
A_SpawnItemEx("BulldozerFront",-48,-16);
A_SpawnItemEx("BulldozerFront",-48,16);
A_SpawnItemEx("BulldozerSide",-48,-32);
A_SpawnItemEx("BulldozerSide",-16,-32);
A_SpawnItemEx("BulldozerSide",16,-32);
A_SpawnItemEx("BulldozerSide",48,-32);
A_SpawnItemEx("BulldozerSide",-48,32);
A_SpawnItemEx("BulldozerSide",-16,32);
A_SpawnItemEx("BulldozerSide",16,32);
A_SpawnItemEx("BulldozerSide",48,32);
A_SpawnItemEx("BulldozerRear",-32,0);
A_SpawnItemEx("BulldozerPillar",-48,-32);
A_SpawnItemEx("BulldozerPillar",-48,32);
super.postbeginplay();
}
Default
{Height 36;}
}
Now that the bulldozer makes them automatically, mappers don't need to place them. Simply placing the bulldozer itself in a map will be enough.