Page 1 of 1
Coming soon, Pandemic-esque loadscreen tools
Posted: Fri Feb 18, 2011 12:53 pm
by Teancum
I've had these sitting on my hard drive for a long, long time. Basically what I got forever ago from Pandemic was enough to scrape together a toolset to build loadscreens for both games. That's right, SWBF1 and SWBF2. The problem is that I didn't get everything I needed, so I have to make do with extracting some pre-munged files from existing lvl files, which I didn't know how to do at the time. So for instance the animations in SWBF to transition from image to image, effectively zooming in - I don't have the animations, so I pulled those from an existing lvl file. What I do have are the necessary scripts and the ability to lay this out.
Anyway, I'm mostly writing this to remind myself to finish the respective tools. A couple of things of note, though; 1-SWBF2 tools will not work for SWBF1 and vice versa. The code changed between games, so there's no planet-zoom ability for SWBF2, nor can it do the little spinning Loading sign in the right corner. Same goes in reverse for SWBF1, though you can probably do a static image with the spinning loading sign. 2-People who use this will still need to have a basic understanding of how to call your new loadscreen lvl from existing tutorials, I won't be writing one. SWBF1 players will need to figure out something, but LUA is LUA, so the SWBF2 tutorials should be a good jumping off point.
I'll report back when I can.
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Fri Feb 18, 2011 4:00 pm
by [Padawan]Helkaan
So, is it a release? You already
released it but not finished. Does it mean that you will finish it?

Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Fri Feb 18, 2011 6:00 pm
by acryptozoo
Cool

Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Fri Feb 18, 2011 6:04 pm
by Firefang
Nice, can't wait.
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Fri Feb 18, 2011 6:43 pm
by Teancum
[Padawan]Helkaan wrote:So, is it a release? You already
released it but not finished. Does it mean that you will finish it?

Correct.

Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sat Feb 19, 2011 12:43 am
by THEWULFMAN
Awesome, no more manualy setting them up

Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sat Feb 19, 2011 5:29 am
by naru1305
THEWULFMAN wrote:Awesome, no more manualy setting them up

i totally agree
Awesome

Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sat Feb 19, 2011 6:35 am
by Lephenix
Great

.
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sat Feb 19, 2011 9:34 am
by Maveritchell
naru1305 wrote:THEWULFMAN wrote:Awesome, no more manualy setting them up

i totally agree
Awesome

Not that it's a bad thing to have greater ease-of-use, but Tean's change here is primarily about improved
functionality, not usability. It takes all of about 30 seconds to set up a proper loadscreen anyway, and there's a very simple tutorial to follow to do it. As it is now, it's just about the easiest component of a mod.
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sat Feb 19, 2011 2:01 pm
by THEWULFMAN
Maveritchell wrote:naru1305 wrote:THEWULFMAN wrote:Awesome, no more manualy setting them up

i totally agree
Awesome

Not that it's a bad thing to have greater ease-of-use, but Tean's change here is primarily about improved
functionality, not usability. It takes all of about 30 seconds to set up a proper loadscreen anyway, and there's a very simple tutorial to follow to do it. As it is now, it's just about the easiest component of a mod.
I hope you know I was just joking a little, I am not
that lazy.
I hope this will allow multiple loadscreens per .lvl?
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sat Feb 19, 2011 3:00 pm
by Teancum
Yep, that's exactly what it does.
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sun Feb 20, 2011 4:52 pm
by Fiodis
Could you use it to make cyclic or randomized loadscreens? I think you mentioned a couple years ago, maybe, that you once had the code but lost it. I forget the consensus as to whether cyclic or randomized loadscreens were possible to make without that code.
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sun Feb 20, 2011 5:51 pm
by THEWULFMAN
Fiodis wrote:Could you use it to make cyclic or randomized loadscreens? I think you mentioned a couple years ago, maybe, that you once had the code but lost it. I forget the consensus as to whether cyclic or randomized loadscreens were possible to make without that code.
Yeah, like the PS2 version.

Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sun Feb 20, 2011 8:43 pm
by Teancum
It's random. Here's a snippet:
Code: Select all
Map("pol1")
{
RandomBackdrop("load\pol1");
PS2()
{
ProgressBarTotalTime(34.0);
}
XBOX()
{
ProgressBarTotalTime(16.0);
}
PC()
{
ProgressBarTotalTime(11.0);
}
}
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Sun Feb 20, 2011 11:52 pm
by THEWULFMAN
Suhweeet

Thats awesome, always wanted to do that.
Re: Coming soon, Pandemic-esque loadscreen tools
Posted: Mon Feb 21, 2011 1:23 am
by commandoCC-9811
wow, this looks really nice just by looking at it!
Great work (in progress)