[Super-tux-commit] supertux/src collision.cpp,1.19,1.20 level.cpp,1.56,1.57 level.h,1.39,1.40 player
Brought to you by:
wkendrick
From: Matze B. <mat...@us...> - 2004-04-29 13:45:08
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29609/src Modified Files: collision.cpp level.cpp level.h player.cpp Log Message: -optimized and cleaned up collision_object_map -fixed collision detection moving tux far away from his last position -fixed fuck code not resetting old_base. All in all ducking and sliding in small areas should work like expected now. Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.73 retrieving revision 1.74 diff -u -d -r1.73 -r1.74 --- player.cpp 29 Apr 2004 00:43:06 -0000 1.73 +++ player.cpp 29 Apr 2004 13:44:58 -0000 1.74 @@ -456,6 +456,8 @@ duck = false; base.y -= 32; base.height = 64; + // changing base size confuses collision otherwise + old_base = previous_base = base; } } @@ -468,13 +470,6 @@ size = BIG; base.height = 64; base.y -= 32; - // eventually go in duck mode if there's no space - if(collision_object_map(base)) - { - base.height = 32; - base.y += 32; - duck = true; - } old_base = previous_base = base; } Index: level.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level.cpp,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- level.cpp 28 Apr 2004 18:45:24 -0000 1.56 +++ level.cpp 29 Apr 2004 13:44:58 -0000 1.57 @@ -733,7 +733,7 @@ } unsigned int -Level::gettileid(float x, float y) +Level::gettileid(float x, float y) const { int xx, yy; unsigned int c; @@ -749,4 +749,13 @@ return c; } +unsigned int +Level::get_tile_at(int x, int y) const +{ + if(x < 0 || x > width || y < 0 || y > 14) + return 0; + + return ia_tiles[y][x]; +} + /* EOF */ Index: collision.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/collision.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- collision.cpp 26 Apr 2004 21:10:59 -0000 1.19 +++ collision.cpp 29 Apr 2004 13:44:58 -0000 1.20 @@ -42,48 +42,41 @@ one.y <= two.y + two.height + off_y - 1); } -bool collision_object_map(const base_type& pbase) +bool collision_object_map(const base_type& base) { - int v = (int)pbase.height / 16; - int h = (int)pbase.width / 16; - - if(issolid(pbase.x + 1, pbase.y + 1) || - issolid(pbase.x + pbase.width -1, pbase.y + 1) || - issolid(pbase.x +1, pbase.y + pbase.height -1) || - issolid(pbase.x + pbase.width -1, pbase.y + pbase.height - 1)) - return true; - - for(int i = 1; i < h; ++i) - { - if(issolid(pbase.x + i*16,pbase.y + 1)) - return true; - } + const Level& level = *World::current()->get_level(); + TileManager& tilemanager = *TileManager::instance(); - for(int i = 1; i < h; ++i) - { - if( issolid(pbase.x + i*16,pbase.y + pbase.height - 1)) - return true; - } + // we make the collision rectangle 1 pixel smaller + int starttilex = int(base.x+1) / 32; + int starttiley = int(base.y+1) / 32; + int max_x = int(base.x + base.width); + int max_y = int(base.y + base.height); - for(int i = 1; i < v; ++i) - { - if( issolid(pbase.x + 1, pbase.y + i*16)) - return true; - } - for(int i = 1; i < v; ++i) - { - if( issolid(pbase.x + pbase.width - 1, pbase.y + i*16)) + for(int x = starttilex; x*32 < max_x; ++x) { + for(int y = starttiley; y*32 < max_y; ++y) { + Tile* tile = tilemanager.get(level.get_tile_at(x, y)); + if(tile->solid) return true; } + } return false; } void* collision_func(const base_type& base, tiletestfunction function) { - for(float x = base.x; x < base.x + base.width; x += 32) { - for(float y = base.y; y < base.y + base.height; y += 32) { - Tile* tile = gettile(x, y); + const Level& level = *World::current()->get_level(); + TileManager& tilemanager = *TileManager::instance(); + + int starttilex = int(base.x) / 32; + int starttiley = int(base.y) / 32; + int max_x = int(base.x + base.width); + int max_y = int(base.y + base.height); + + for(int x = starttilex; x*32 < max_x; ++x) { + for(int y = starttiley; y*32 < max_y; ++y) { + Tile* tile = tilemanager.get(level.get_tile_at(x, y)); void* result = function(tile); if(result != 0) return result; @@ -168,6 +161,8 @@ steps = (int)(lpath / (float)16); + float orig_x = old->x; + float orig_y = old->y; old->x += xd; old->y += yd; @@ -234,10 +229,14 @@ } } + if((xd > 0 && current->x < orig_x) || (xd < 0 && current->x > orig_x)) + current->x = orig_x; + if((yd > 0 && current->y < orig_y) || (yd < 0 && current->y > orig_y)) + current->y = orig_y; + *old = *current; } - Tile* gettile(float x, float y) { return TileManager::instance()->get(World::current()->get_level()->gettileid(x, y)); Index: level.h =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level.h,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- level.h 28 Apr 2004 18:45:24 -0000 1.39 +++ level.h 29 Apr 2004 13:44:58 -0000 1.40 @@ -131,7 +131,11 @@ void change_size (int new_width); /** Return the id of the tile at position x/y */ - unsigned int gettileid(float x, float y); + unsigned int gettileid(float x, float y) const; + /** returns the id of the tile at position x,y + * (these are logical and not pixel coordinates) + */ + unsigned int get_tile_at(int x, int y) const; void load_image(Surface** ptexture, std::string theme, const char * file, int use_alpha); }; |