"Tiles" and "Pattern" tools, based on Kaleidoscope.
This commit is contained in:
parent
28e62c4bde
commit
3f46a4321f
9 changed files with 53 additions and 7 deletions
BIN
magic/icons/kal_pattern.png
Normal file
BIN
magic/icons/kal_pattern.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 580 B |
BIN
magic/icons/kal_tiles.png
Normal file
BIN
magic/icons/kal_tiles.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 921 B |
10
magic/magic-docs/html/kal_pattern.html
Normal file
10
magic/magic-docs/html/kal_pattern.html
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<body><html><head><title>Tux Paint "Magic" Tool: Pattern</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
|
||||
<h1 align="center">Tux Paint "Magic" Tool: Pattern</h1>
|
||||
<h2 align="center">By Pere Pujal i Carabantes <<a href="mailto:pere@fornol.no-ip.org">pere@fornol.no-ip.org</a>></h2>
|
||||
<p>This paint brush draws a repeating tile around the image.</p>
|
||||
<p>See also: <a href="kal_pattern.html">Pattern</a> <a href="kal_pattern.html">Pattern</a></p>
|
||||
</body></html>
|
||||
10
magic/magic-docs/html/kal_tiles.html
Normal file
10
magic/magic-docs/html/kal_tiles.html
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<body><html><head><title>Tux Paint "Magic" Tool: Tiles</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000" alink="#FF00FF">
|
||||
<h1 align="center">Tux Paint "Magic" Tool: Tiles</h1>
|
||||
<h2 align="center">By Pere Pujal i Carabantes <<a href="mailto:pere@fornol.no-ip.org">pere@fornol.no-ip.org</a>></h2>
|
||||
<p>This paint brush draws symmetrically, tiled around the image.</p>
|
||||
<p>See also: <a href="kaleidoscope.html">Kaleidoscope</a> <a href="kal_pattern.html">Pattern</a></p>
|
||||
</body></html>
|
||||
|
|
@ -6,5 +6,5 @@
|
|||
<h1 align="center">Tux Paint "Magic" Tool: Kaleidoscope</h1>
|
||||
<h2 align="center">By Bill Kendrick <<a href="mailto:bill@newbreedsoftware.com">bill@newbreedsoftware.com</a>></h2>
|
||||
<p>This paint brush draws in four places at the same time, mirroring symmetrically, both horizontally and vertically. It uses the currently selected color.</p>
|
||||
<p>See also: <a href="picasso.html">Picasso</a></p>
|
||||
</body></html>
|
||||
<p>See also: <a href="picasso.html">Picasso</a> <a href="kal_pattern.html">Pattern</a> <a href="kal_tiles.html">Tiles</a></p>
|
||||
</body></html>
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@
|
|||
symmetrically, both horizontally and vertically. It uses the currently
|
||||
selected color.
|
||||
|
||||
See also: Picasso
|
||||
See also: Picasso Pattern Tiles
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
static Mix_Chunk * kalidescope_snd;
|
||||
static Uint8 kalidescope_r, kalidescope_g, kalidescope_b;
|
||||
|
||||
static int square_size = 128;
|
||||
|
||||
Uint32 kalidescope_api_version(void) { return(TP_MAGIC_API_VERSION); }
|
||||
|
||||
|
|
@ -45,6 +45,8 @@ enum {
|
|||
KAL_UD,
|
||||
KAL_LR,
|
||||
KAL_BOTH,
|
||||
KAL_PATTERN,
|
||||
KAL_TILES,
|
||||
KAL_COUNT
|
||||
};
|
||||
|
||||
|
|
@ -52,6 +54,8 @@ char * kal_icon_names[KAL_COUNT] = {
|
|||
"symmetric_updown.png",
|
||||
"symmetric_leftright.png",
|
||||
"kalidescope.png",
|
||||
"kal_pattern.png",
|
||||
"kal_tiles.png"
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -90,6 +94,10 @@ char * kalidescope_get_name(magic_api * api, int which)
|
|||
return(strdup(gettext_noop("Symmetric Left/Right")));
|
||||
} else if (which == KAL_UD) {
|
||||
return(strdup(gettext_noop("Symmetric Up/Down")));
|
||||
} else if (which == KAL_PATTERN) {
|
||||
return(strdup(gettext_noop("Pattern")));
|
||||
} else if (which == KAL_TILES) {
|
||||
return(strdup(gettext_noop("Tiles")));
|
||||
} else { /* KAL_BOTH */
|
||||
return(strdup(gettext_noop("Kaleidoscope")));
|
||||
}
|
||||
|
|
@ -102,6 +110,10 @@ char * kalidescope_get_description(magic_api * api, int which, int mode)
|
|||
return(strdup(gettext_noop("Click and drag the mouse to draw with two brushes that are symmetric across the left and right of your picture.")));
|
||||
} else if (which == KAL_UD) {
|
||||
return(strdup(gettext_noop("Click and drag the mouse to draw with two brushes that are symmetric across the top and bottom of your picture.")));
|
||||
} else if (which == KAL_PATTERN) {
|
||||
return(strdup(gettext_noop("Click and drag the mouse to draw a pattern across the picture.")));
|
||||
} else if (which == KAL_TILES) {
|
||||
return(strdup(gettext_noop("Click and drag the mouse to draw a pattern plus its symmetric across the picture.")));
|
||||
} else { /* KAL_BOTH */
|
||||
return(strdup(gettext_noop("Click and drag the mouse to draw with symmetric brushes (a kaleidoscope).")));
|
||||
}
|
||||
|
|
@ -114,6 +126,7 @@ static void do_kalidescope(void * ptr, int which, SDL_Surface * canvas, SDL_Surf
|
|||
{
|
||||
magic_api * api = (magic_api *) ptr;
|
||||
int xx, yy;
|
||||
int i, j;
|
||||
Uint32 colr;
|
||||
|
||||
colr = SDL_MapRGB(canvas->format,
|
||||
|
|
@ -139,6 +152,14 @@ static void do_kalidescope(void * ptr, int which, SDL_Surface * canvas, SDL_Surf
|
|||
if (which == KAL_UD || which == KAL_BOTH) {
|
||||
api->putpixel(canvas, x + xx, canvas->h - 1 - y + yy, colr);
|
||||
}
|
||||
if (which == KAL_PATTERN || which == KAL_TILES) {
|
||||
for (i = 0; i <= canvas->w; i += square_size)
|
||||
for (j = 0; j <= canvas->h; j += square_size){
|
||||
api->putpixel(canvas, i + xx + x % square_size, j + yy + y % square_size, colr);
|
||||
if (which == KAL_TILES)
|
||||
api->putpixel(canvas, i + yy + y % square_size, j + xx + x % square_size, colr);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue