Graphic/Sprite Editor window

Graphic/Sprite Editor window

The Graphic/Sprite Editor window is available from the Tools menu.

The Graphic/Sprite editor.

One of the most laborious and time-consuming tasks when programming in BASIC is the construction of UDGs for your programs. There is space in memory for up to 21 of these, and in the past they had to be designed on squared paper, and the binary values of the character's lines calculated and entered in using either POKEs or DATA statements. This situation was made worse when the user wanted to create a custom character set, as all 96 characters could be redefined, resulting in up to 768 calculated values being needed.

The UDG/Charset editor provides a user-friendly and intuitive graphical interface for creating these characters, and also can produce the DATA statements for you to get them into your program quickly.

Sprites and animations can also be created here, using any data format you need. Sprites however, must follow certain rules: they are measured in bytes - width being 8 pixels per byte. So for a 16x16 sprite, you will use a data format of 2 bytes by 16 bytes. There is more on editing sprites and animations further down this page.

The window comprises the following areas:

Editing grid

The editing grid.

This area represents, in a large form, the 8×8 character grid used to create one character. You can use the mouse in here to set or un-set pixels in the character. You can select the character you want to work on by clicking in the Character Selection Area, and any changes you make will be shown there as you make them.

A preview of your current character is also displayed at the top right of the grid region. This will show multiple characters if you are working with an advanced grid. See the next section for more details on advanced grids.

Advanced grid editing

The grid can be very flexible when editing large numbers of UDGs, especially if they are to be "tiled" (ie, drawn adjacent to one-another on the screen). In this case, you can use the "Grid Setup" option from the Edit Menu's "Grid" submenu. This will bring up the Grid Setup window:

Setting up the editing grid.

Here you can specify how many characters across and how many characters deep the grid should be. When done, the grid will be expanded (or contracted) showing each character that has been assigned to each "region" of the grid.

This image shows the concept rather better than any words can:

An advance editing grid

To assign different characters to the grid, click and drag them with the left mouse button from the Character Selection Area. The character you dragged will be assigned to the region of the grid you chose. If you don't want to change the assignment, and simply copy the character's data to the character assigned to a grid region, then drag with the right mouse button.

It is worth noting that another advanced feature of the editing grid is the ability to assign one graphic character to every cell in the grid. This is very handy for editing graphics that will be tiled on-screen, as the preview and the editing grid will show the graphic tiled to the extent of the grid:

A tiled UDG being edited in a 5x5 grid

Note: If you assign a character to more than one grid region, then grid operations such as rotation and shifting or flipping will produce results that may damage your character data for that character.

The editing grid also has a number of graphic manipulation buttons when it has been expanded beyond a 1x1 editing area. These are similar in operation to the ones found below the Character Selection area, but work slightly differently:

Button

Function

Character operation

Grid operation

New

Clears the character being edited.

Clears all characters assigned to the grid.

Flip

Mirrors the character horizontally or vertically.

Flips the entire grid contents, does not flip grid assignments.

Rotate 90°

Rotates the character left or right. Only available for square graphics.

Rotates the grid. Does not change grid assignments, only available for square graphics.

Invert

Swaps set and unset pixels.

Inverts the entire grid.


Shift

Scrolls the character (with wraparound).

Scrolls the entire grid, wrapping at the outer edges of the grid.

Character selection area

The character selection area.

This area, to the right of the window, contains a "palette" of characters available. When editing UDGs, this contains 21 graphics but can be instructed to hold up to 255 characters when editing a custom character set.

Note: Although the editor allows you to work on up to 255 characters, Sinclair BASIC only allows you to redefine the 96 characters used in the character set. You can use the remaining free slots as a "scratch pad" if you wish. There is, however, no restriction on the number of characters (well, up to 255) you can send to the emulated memory or to BASIC.

You can use the left mouse button in a single "click" to send a character to the editing grid. You can also use a "drag and drop" operation on these characters:

Editing sprites - manipulating the Data Format

The UDG editor can also edit sprites in a format commonly found in spectrum games. UDGs exist in a "1x8" format - that is, they are one byte wide, and 8 bytes high. The Graphic editor can be instructed, when getting data from memory, to read using a different data format. For example, the graphic below exists at address 32768 in memory, and has a data format of "3x21", or 24 pixels wide by 21 pixels high:

Editing a sprite in the Graphic Editor

You can specify the data format when using the "Open..." menu item, or when using the "Grab from Specified Address..." menu item. Each of these operations will produce a small dialog where you can specify the format you want to read, and edit the graphics in:

Specifying the Data Format

The two numeric fields let you specify the width (in bytes, not pixels!) and the height of the graphic. This format will be used to import your graphics.

Note: The editing grid can be used to edit multiple sprites in the same manner as it can for multiple UDGs.

Animation

The editor supports a "filmstrip" which you can use to build animations. These are fairly useful for "previewing" what your animation will look like when rendered on-screen.

The Graphic Editor's filmstrip

As can be seen in the image above, the filmstrip can be populated by your graphics. To add a graphic, simply drag it from the character selection area, and drop it on the filmstrip. The frame which will receive the graphic will be highlighted - though if you attempt to drop past the last frame occupied, the graphic will be appended to the current animation. Graphics can be inserted between frames by dropping when the "bar" between frames is highlighted.

You can remove a frame by clicking on it in the filmstrip.

Onion-skinning

BasinC's Graphic editor further eases the creation of animations by enabling the user to compare two frames of animation in the Editing grid by using Onion-skinning. This renders the currently selected graphic as normal, but also renders another graphic in lighter-grey, superimposed on top of the current graphic.

Two onion-skinned graphics

To enable this feature, simply drag and drop one of the graphics in the character selection area to the lower of the two preview regions to the right of the editing grid. All subsequent graphics will be rendered with this second graphic superimposed. This makes changing pixels in an animation easier, with a visual guide. Left-click on the lower graphic to view just the onion-skinned graphic without the current graphic. To remove the onion-skinning, just right-click on the lower graphic.

The Animation Preview Window

By clicking on the small green "play" button to the left of the filmstrip, you can preview your animation.

The animation preview window

The animation preview window allows you to view your animation.

You can choose to play the animation at various speeds (measured in frames per second), and to scale the image to whatever size is comfortable. Note that this will not alter the size of the animation's frames in the graphic editor - it is meant for preview purposes only. Choosing "Ping-Pong" will play the animation forwards and then backwards repeatedly.

There is also the option to save your animation as an animated .gif file - and this will be saved at the size you specify. This can be handy for web-pages and avatars on web forums.

The Menu strip

The main menu for the UDG/Charset editor allows you to access advanced functions. From left to right, the menu consists of:

The File Menu

Here you can load and save your graphics characters.

The Edit Menu

This menu allows you access to a simple Undo feature, tools for manipulating the grid and individual graphics, and to utilise the clipboard. This clipboard is internal to the UDG editor, and does not give access to the Windows system clipboard.