Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15008/src
Modified Files:
level.cpp
Log Message:
Y background scrolling. It should start be drawing from the bottom of the level to the up.
Dunno if it is working well.
Index: level.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/level.cpp,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- level.cpp 16 May 2004 02:07:26 -0000 1.74
+++ level.cpp 16 May 2004 12:18:05 -0000 1.75
@@ -764,10 +764,12 @@
{
// Tile background horizontally
int sx = (int)((float)scroll_x * ((float)bkgd_speed/100.0f)) % img_bkgd->w;
- for (int i = 0; (i-1)*img_bkgd->w <= screen->w; i++)
- img_bkgd->draw_part(i == 0 ? sx : 0, 0,
- i == 0 ? 0 : (img_bkgd->w * i) - sx, 0,
- i == 0 ? img_bkgd->w - sx : img_bkgd->w, img_bkgd->h);
+ int sy = (int)((float)scroll_y * ((float)bkgd_speed/100.0f)) % img_bkgd->h;
+ for (int x = 0; (x-1)*img_bkgd->w <= screen->w; x++)
+ for (int y = 0; (y-1)*img_bkgd->h <= screen->h; y++)
+ img_bkgd->draw_part(x == 0 ? sx : 0, y == 0 ? sy : 0,
+ x == 0 ? 0 : (img_bkgd->w * x) - sx, y == 0 ? 0 : (img_bkgd->h * y) - sy + (height*32 - screen->h),
+ x == 0 ? img_bkgd->w - sx : img_bkgd->w, y == 0 ? img_bkgd->h - sy : img_bkgd->h);
}
void
|