Author Topic: Help with AC converter utility  (Read 1367 times)

0 Members and 1 Guest are viewing this topic.

Help with AC converter utility
Hey all.  I want to create my own movies for Command Briefings, but I can't even open the AC converter utility thing that I downloaded.  How do I get it to work?  I am running on a windows XP.
"Do or do not, there is not try."

"May God have mercy on my enemies, because I won't.'

The Land of Dallan MMO - Coming Summer 2006

{SS}Infantry Clan Leader

 

Offline Nuke

  • Ka-Boom!
  • 212
  • Mutants Worship Me
Help with AC converter utility
its a command line tool, open a command window and type /? for help. or you can do things the easy way and just drop your first frame onto the exe. i think they have to be pcx files (all with the same pallette), with up to 4 letters followed by a 4 digit number starting at 0000, so if you drop xxxx0000.pcx onto the exe it should compile the animation from the current folder. dont quote me on this but i think theres another animation format you can use, unfortunately i dont know anything about that.
I can no longer sit back and allow communist infiltration, communist indoctrination, communist subversion, and the international communist conspiracy to sap and impurify all of our precious bodily fluids.

Nuke's Scripting SVN

 

Offline Solatar

  • 211
Help with AC converter utility
.eff, but, except for the name I can't remember anything about it either...

 

Offline Nuke

  • Ka-Boom!
  • 212
  • Mutants Worship Me
Help with AC converter utility
how does one go about creating an eff, what advantages do they have? ani is kinda bloated for big things.
I can no longer sit back and allow communist infiltration, communist indoctrination, communist subversion, and the international communist conspiracy to sap and impurify all of our precious bodily fluids.

Nuke's Scripting SVN

 

Offline Taristin

  • Snipes
  • 213
  • BlueScalie
    • Skelkwank Shipyards
Help with AC converter utility
eff is a text file that desribes what kind of images are being used, and how many fps (IIRC). Basically an eff is a redirect for several (sometimes hundred) dds,pcx,tga files.
Freelance Modeler | Amateur Artist

 

Offline Nuke

  • Ka-Boom!
  • 212
  • Mutants Worship Me
Help with AC converter utility
intresting, would mean better 32bit animations for weapon effects. im assuming you point a texture to the eff, and then the eff to the frames. whats the syntax?
I can no longer sit back and allow communist infiltration, communist indoctrination, communist subversion, and the international communist conspiracy to sap and impurify all of our precious bodily fluids.

Nuke's Scripting SVN

 

Offline Axem

  • 211
Help with AC converter utility
The eff file syntax is just:

Quote
$Type: DDS (or image type)
$Frames: 32 (or total frames)
$FPS: 18 (or speed of animation)


With everything being pretty self explanatory.

And the file structure would be like...

Code: [Select]
data/effects/...

flashyeffect.eff
flashyeffect_0000.dds
flashyeffect_0000.dds
.
.
.
flashyeffect_0031.dds

 

Offline Nuke

  • Ka-Boom!
  • 212
  • Mutants Worship Me
Help with AC converter utility
cool, thanks :D
I can no longer sit back and allow communist infiltration, communist indoctrination, communist subversion, and the international communist conspiracy to sap and impurify all of our precious bodily fluids.

Nuke's Scripting SVN

 

Offline karajorma

  • King Louie - Jungle VIP
  • Administrator
  • 214
    • Karajorma's Freespace FAQ
Help with AC converter utility
Can you use effs in CB anims now? I seem to remember that you couldn't when they first came out.
Karajorma's Freespace FAQ. It's almost like asking me yourself.

[ Diaspora ] - [ Seeds Of Rebellion ] - [ Mind Games ]

 

Offline Primus

  • Ranger
  • 29
  • Lusus Naturae
    • Proxima Fleet
Help with AC converter utility
Yeah, I remember too that they couldn't be used in CBs. But it'd be great if this wasn't true. :p
No surrender, no retreat.
Proxima Fleet - https://proxima-fleet.com/
Tumblr - https://www.tumblr.com/proximafleet

  

Offline taylor

  • Super SCP/Linux Guru
  • 212
    • http://www.icculus.org/~taylor
Help with AC converter utility
Quote
Originally posted by karajorma
Can you use effs in CB anims now? I seem to remember that you couldn't when they first came out.

Nope, still can't use them for that.  That's a different part of the code and those anis need better control that an EFF can provide, by design.  EFF was setup to make creating/using effects easier and be optimized to take up less memory.  EFFs let you use whatever format you want for the frames (as long as they are all the same format) so that you can choose the format which works best with what you want to show.  You can have JPG for non-power-of-2 images and low disk space usage, TGA for best quality (but also most memory), or the various DDS formats where you can choose the quality vs. memory.

There will be a new format which can replace a standard ANI used for briefings, mainhall anims, talking heads, intel data, etc.  It will use JPG for the frames and all be contained in a single file like ANI is now.  Every one of these new files will be created to take full advantage of the animation system and be able to play forwards, backwards and ping-pong.  Only some ANIs can actually do that now.  It will only use JPG for the frames because it's the only format which satisfies all of the requirements.  Those requirements being: non-power-of-2 sized frames, low disk space usage, quicker to download (smaller), variable compression to pick the best quality/size ratio to fit the animation.  Compression rates are also frame independant so you can have some frames that are highly compressed and other frames that have hardly any compression to get the best quality.

Work on that was put on hold a couple of months ago since I needed time to work on other stuff.  Shortly after 3.6.7 gets released though I'll go back and finish up the code.  Hopefully this new format will work out for everyone.