Tutorial: Making sprites with SpriteMaker Last edited 2 days ago2024-10-13 14:41:01 UTC

Using SpriteMaker to make Half-Life and Counter-Strike sprites

SpriteMaker is a new tool for making Half-Life and Counter-Strike sprites. It comes bundled with WadMaker. It's designed to make creating and updating sprites easier and faster than with existing tools. It can convert both individual images and directories full of images to sprites with just a single action. Let's take a look:

1. Installing SpriteMaker

Start by downloading the latest version of SpriteMaker from here: WadMaker_1.2.1_win64.zip (or go to the latest release page if you're using Linux or a 32-bit Windows). Then extract the zip file somewhere on your computer, for example to C:\HL\Tools, so you'll end up with a C:\HL\Tools\WadMaker_SpriteMaker_1.2.1 directory. The directory name and contents may vary depending on which version you downloaded:
User posted image

2. Creating a single sprite

To create a single sprite, drag an image on top of SpriteMaker.exe. SpriteMaker supports png, jpg, gif, bmp and tga, but also Photoshop and Krita files. If you're using Gimp, Aseprite or another program then you'll need to configure a conversion tool first (see the documentation).
User posted image
If you see a blue 'Windows protected your PC' window pop up, click 'More info' and then click the 'Run anyway' button. You'll briefly see a console window pop up, and then a green_flare.spr file will appear next to the input image:
User posted image
You can open the log file with Notepad to see if it contains any errors:
User posted image

3. Creating multiple sprites

To create multiple sprites at the same time, drag a directory with images onto `SpriteMaker.exe:
User posted image
Each image in the input directory will be converted to a sprite. The resulting sprites will be placed in a directoryname_sprites directory next to the input directory:
User posted image

4. Putting sprite files in the right location

To use a sprite, copy it to your Half-Life\valve\sprites or Half-Life\cstrike\sprites directory.

It's also possible to let SpriteMaker do this for you. Create a batch file (or copy example batch file - SpriteMaker.bat), change its name to update my sprites.bat, open it with a basic text editor like Notepad, and add the following lines:
"C:\HL\Tools\WadMaker_SpriteMaker_1.2.1\SpriteMaker.exe" "C:\HL\Sprites\my_sprites" "C:\Program Files (x86)\Steam\steamapps\common\Half-Life\valve\sprites\my_sprites"

PAUSE
The PAUSE line causes the console window to stay open until you press a key, so you don't need to open the log file to see if anything went wrong.

Now, instead of dragging the images directory on top of SpriteMaker.exe and then copying the sprites directory manually, you can double-click this batch file, and it will automatically create or update the sprites in your Half-Life\valve\sprites directory. If some sprites already existed then SpriteMaker is smart enough to only process added, modified or deleted images, so updating usually only takes a few seconds.

5. Creating sprites with different texture formats

Half-Life uses an 8-bit indexed format for its sprites, so each sprite has a limit of 256 colors. With other tools it's often necessary to manually create or adjust palettes, but SpriteMaker knows how to create palettes for all sprite types that Half-Life supports. It also accepts images with transparency, so you don't need to mark transparent areas with a blue color either.

Sprites can have different texture formats, so let's take a look at each format:

5.1. Additive sprites

The most common format. Additive sprites are mostly used for light-based effects, because the value of each pixel is 'added' to whatever is behind it, making it brighter. Black pixels won't add anything, so they're invisible, but the brighter a pixel is, the more 'brightness' it will add. Note that this format only works as intended if the render mode of an env_sprite is set to Additive or Glow.

This is the default output format for SpriteMaker, but it can also be chosen explicitly by adding .additive or .a to the input image filename. For example, the following files will all produce an additive sprite named green_flare.spr:
User posted image

5.2. Normal sprites

Despite its name, this format behaves almost exactly the same as the additive format. But as the name implies, it's not intended for additive light effects but for 'normal' pictures. This type can be used to create animated TV-screens, among other things.

To create normal sprites, add .normal or .n to the input image filename. For example, the following files will all produce a normal sprite named security_cam.spr:
User posted image

5.3. Index-alpha sprites

Sprites with this format will have a single color, but 256 levels of transparency, just like decals. SpriteMaker expects images with an alpha channel, and will use the average color of the input image to set the sprite color. Index-alpha sprites do not work well with the Additive and Glow render modes.

To create index-alpha sprites, add .index-alpha or .ia to the input image filename. For example, the following files will all produce an index-alpha sprite named blue_arrow.spr:
User posted image

5.4. Alpha-test sprites

Alpha-test sprites can contain transparent areas - the final color in the palette is reserved for transparent pixels. This format can be used for things like grass tufts or rock particles.

Most tools require transparent parts to be marked with a specific blue color (RGB: 0 0 255), but SpriteMaker expects images with an alpha channel. By default, any pixel with an alpha value below 127 (any pixel that's more than 50% transparent) will become transparent.

To create alpha-test sprites, add .alpha-test or .at to the input image filename. For example, the following files will all produce an alpha-test sprite named grass_tuft.spr:
User posted image

6. Creating sprites with different orientations

Sprites can also have different orientations:

6.1. Parallel

The most common orientation, parallel sprites always face the camera. They will look the same regardless of the angle from which they are seen. This is the default orientation, but it can also be chosen explicitly by adding .parallel or .p to the input image filename. For example, the following files will all produce a parallel sprite named green_flare.spr:
NOTE: The order of the texture format and orientation in a filename doesn't matter, so both green_flare.additive.parallel.png and green_flare.parallel.additive.png (and their shorthands) will produce an additive parallel sprite named green_flare.spr.
User posted image

6.2. Parallel-upright

Just like parallel sprites, parallel-upright sprites always face the camera, but they're locked along the z-axis. This is useful for things that should always point upwards, such as fire or grass.

To create parallel-upright sprites, add .parallel-upright or .pu to the input image filename. For example, the following files will all produce a parallel-upright sprite named grass_tuft.spr:
User posted image

6.3. Oriented

Oriented sprites will have a fixed orientation, which can be set with the angles property of a sprite entity. This can be used to create animated TV-screens or decals, among other things.

NOTE: Be aware that Half-Life will swap yaw and roll if roll is set to 0! For example, an env_sprite with angles set to 10 20 0 is treated as 10 0 20.
An easy way to avoid this issue is to set roll to 360. There is also a map processing tool that can do that automatically as part of the map compilation process: MESS.

To create oriented sprites, add .oriented or .o to the input image filename. For example, the following files will all produce an oriented sprite named security_cam.spr:
User posted image

6.4. Parallel-oriented

This orientation is similar to parallel, but the sprite can also be rotated around its center (roll).

To create parallel-oriented sprites, add .parallel-oriented or .po to the input image filename. For example, the following files will all produce a parallel-oriented sprite named up_arrow.spr:
User posted image

6.5. Upright

This orientation is pretty much broken and (almost) never used. It's locked along the Z-axis like parallel-upright, but it doesn't always face the camera - sometimes it will even turn away from the camera.

To create upright sprites, add .upright or .u to the input image filename. For example, the following files will all produce an upright sprite named broken.spr:

7. Creating animated sprites

Animated sprites are sprites that contain multiple frames. SpriteMaker supports multiple ways to create animated sprites: It's also good to know about the following:

7.1. With multiple images

To create an animated sprite from multiple images, give them all the same 'base' filename, followed by a dot and a frame number. The texture format and orientation only need to be specified in the first filename: Then either drag one of the images (not multiple!) onto SpriteMaker.exe, or drag their parent directory onto SpriteMaker.exe. This will produce a single animated sprite named countdown.spr.
User posted image

7.2. With spritesheets

If multiple frames have the same size, then they can be put in a single spritesheet image. Add the frame size to the filename to mark it as a spritesheet: bubble.64x64.png. This will produce a sprite named bubble.spr, where each 64x64 block becomes a separate frame.
User posted image
An animation can also be split across multiple spritesheets, by adding frame numbers to each spritesheet filename. It's also possible to combine single images, spritesheets and .gif files into a single animation.

7.3. With gif files

If the input is a .gif file, all of its frames are converted to sprite frames. The frame times are ignored.

8. Conclusion

8.1. Summary

To summary the process:
  1. Create or modify images with your favorite image editor
  2. Drag an image, or a directory full of images, onto SpriteMaker.exe
  3. Copy the resulting sprite or sprites directory to your game's sprites directory (or use a batch file to automate this)

8.2. Credits

Thanks to:

Comments

You must log in to post a comment. You can login or register a new account.