removed some old images

This commit is contained in:
Magnus Auvinen 2007-11-08 20:07:24 +00:00
parent f46efb288f
commit adb9240bc3
8 changed files with 8 additions and 26 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View file

@ -191,26 +191,10 @@ images {
filename "data/sun.png"
}
char_default {
filename "data/char_teefault.png"
}
backdrop {
filename "data/mountain_paralax.png"
}
gui_widgets {
filename "data/gui_widgets.png"
}
menu_background {
filename "data/menu_background.png"
}
menu_butterfly {
filename "data/menu_butterfly.png"
}
cursor {
filename "data/gui_cursor.png"
}
@ -223,10 +207,6 @@ images {
filename "data/cloudmap.png"
}
chat_bubbles {
filename "data/chatbubbles.png"
}
emoticons {
filename "data/emoticons.png"
}
@ -619,10 +599,6 @@ sprites {
tee_eye_surprise 7 3 1 1
}
chatbubbles images.chat_bubbles 4 4 {
chat_dotdot 0 1 1 1
}
emoticons images.emoticons 4 4 {
oop 0 0 1 1
exclamation 1 0 1 1

View file

@ -1539,9 +1539,9 @@ static void render_player(
if(player.state == STATE_CHATTING)
{
gfx_texture_set(data->images[IMAGE_CHAT_BUBBLES].id);
gfx_texture_set(data->images[IMAGE_EMOTICONS].id);
gfx_quads_begin();
select_sprite(SPRITE_CHAT_DOTDOT);
select_sprite(SPRITE_DOTDOT);
gfx_quads_draw(position.x + 24, position.y - 40, 64,64);
gfx_quads_end();
}

View file

@ -37,6 +37,7 @@ enum gui_tileset_enum
void draw_area(gui_tileset_enum tileset, int areax, int areay, int areaw, int areah, float x, float y, float w, float h)
{
/*
const float tex_w = 512.0, tex_h = 512.0;
switch (tileset)
@ -69,6 +70,7 @@ void draw_area(gui_tileset_enum tileset, int areax, int areay, int areaw, int ar
te_y); // endy
gfx_quads_drawTL(x,y,w,h);
gfx_quads_end();
*/
}
void draw_part(int part_type, gui_tileset_enum tileset, float x, float y, float w, float h)
@ -163,11 +165,14 @@ void draw_background(float t)
draw_sprite(4000 - fmod(t * 60 + 500, 4512), 300+130, 256);
gfx_quads_end();
/*
gfx_texture_set(data->images[IMAGE_MENU_BACKGROUND].id);
gfx_quads_begin();
gfx_quads_drawTL(0, 430, 1600, 1600/2);
gfx_quads_end();
*/
/*
int frame = int(t * 10) % 3;
//float x_path = -t
@ -193,6 +198,7 @@ void draw_background(float t)
0.5f); // endy
gfx_quads_drawTL(1250 + x_nudge, 480 + y_nudge, 64, 64);
gfx_quads_end();
*/
}
void draw_image_button(const void *id, const char *text, int checked, float x, float y, float w, float h, void *extra)