Official Website (source available there as well): http://code.google.com/p/blackopstexturecompiler/
My Website: http://JariZ.nl
"This program will convert all your images any image format to an valid call of duty black ops IWI file.
Why would you use this? it's 1000x times at fast as the methods who are being used by you guys right now."
Features:
- IWI > Image Conversion
- Image > IWI Conversion
- Presets for different types of textures
- Awesome GUI
- Resizing
- Multiple Compilers
- A build in 'install to black ops' function
- Bulk list
Hey guys, Today I present to you my masterpiece TextureCompiler.
It was just doing nothing on my hard drive, so I thought, let's finally release this.
It's still is missing some stuff (as you can see)
It's opensource and has no license, so russian hackers, copy as much as you can!
Remember it's a ALPHA, I haven't tested it yet on all platforms
also there might be bugs I don't know about
>> DOWNLOAD! <<
Virus scan: http://virusscan.jotti.org/en/scanresult...485b39deb5
note: The installer supplied will download some files from my website and will ask you if you trust me.
FAQ:
Q: It doesn't work! You Suck!
A: It's a test version, (also known as alpha) which means that it's not done yet, and it still might have bugs.
Tell me all information from the error (there also is a build-in error reporting system so you might only have to press 'Send')
Q: Why should I use this
A: It's much faster then the normal way of doing it.
Q: What are the system requirements?
A: You need to have Windows Vista or Windows 7 in order to run this program.
Also the .NET framework 3.5 (but it's most of the time already installed on your pc)
Nerd stuff/Additional Info
Not only is it really fast, It also can use 2 different compile methods (!)
- Modtools compiler
- TextureCompilerCompiler (TCC)
The modtools compiler is a standalone version of Treyarch's converter.exe optimized for material compiling.
Advantage's: It's made by 3arc, So it always works.
Disadvantage's: It's slow.
The TCC compiler was based on my old BackgroundCompiler project.
When you select it, the program will download the necessary files.
Spoiler (Click to View)
Disadvantage's: Like the warning message says: It's outdated, Probaly really buggy, And also it's a BAT script which isn't very user friendly
Also it's really easy to customize because of the really user friendly code.
You don't even need to have that much skill to create your own preset!
Look at how easy the code is:
PHP Code:
//
// TextureCompiler
// (c) JariZ.nl 2011
//
// TextureCompiler.Presets.Background
// INFO: Background is a preset created for menu backgrounds or loading screens
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TextureCompiler;
namespace TextureCompiler.Presets
{
class Background : Texture
{
public override void PresetLoad()
{
//Preset Specific
this.PresetName = "Background/Loadscreen";
//Resize settings
this.Resize = true;
this.ResizeHeight = 1024;
this.ResizeWidth = 1024;
//Advanced Settings
this.UseCRCFix = true;
this.UseIWIFix = true;
this.InstallToBO = true;
//IWD Conversion
this.IWDDirectory = "images";
this.IWDConvert = true;
}
}
}
The compiler system has a own template just like this.