Skip to content

Commit

Permalink
Fix full crack texture being shown when releasing dig button
Browse files Browse the repository at this point in the history
  • Loading branch information
kahrl committed Aug 6, 2013
1 parent 7b13d11 commit 7fbc815
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/tile.cpp
Expand Up @@ -555,7 +555,7 @@ static void blit_with_alpha_overlay(video::IImage *src, video::IImage *dst,

// Draw or overlay a crack
static void draw_crack(video::IImage *crack, video::IImage *dst,
bool use_overlay, u32 frame_count, u32 progression,
bool use_overlay, s32 frame_count, s32 progression,
video::IVideoDriver *driver);

// Brighten image
Expand Down Expand Up @@ -1058,8 +1058,8 @@ bool TextureSource::generateImage(std::string part_of_name, video::IImage *& bas
bool use_overlay = (part_of_name[6] == 'o');
Strfnd sf(part_of_name);
sf.next(":");
u32 frame_count = stoi(sf.next(":"));
u32 progression = stoi(sf.next(":"));
s32 frame_count = stoi(sf.next(":"));
s32 progression = stoi(sf.next(":"));

/*
Load crack image.
Expand Down Expand Up @@ -1499,19 +1499,19 @@ static void blit_with_alpha_overlay(video::IImage *src, video::IImage *dst,
}

static void draw_crack(video::IImage *crack, video::IImage *dst,
bool use_overlay, u32 frame_count, u32 progression,
bool use_overlay, s32 frame_count, s32 progression,
video::IVideoDriver *driver)
{
// Dimension of destination image
core::dimension2d<u32> dim_dst = dst->getDimension();
// Dimension of original image
core::dimension2d<u32> dim_crack = crack->getDimension();
// Count of crack stages
u32 crack_count = dim_crack.Height / dim_crack.Width;
s32 crack_count = dim_crack.Height / dim_crack.Width;
// Limit frame_count
if(frame_count > dim_dst.Height)
if(frame_count > (s32) dim_dst.Height)
frame_count = dim_dst.Height;
if(frame_count == 0)
if(frame_count < 1)
frame_count = 1;
// Limit progression
if(progression > crack_count-1)
Expand Down Expand Up @@ -1543,7 +1543,7 @@ static void draw_crack(video::IImage *crack, video::IImage *dst,
// Scale crack image by copying
crack_cropped->copyToScaling(crack_scaled);
// Copy or overlay crack image onto each frame
for(u32 i = 0; i < frame_count; ++i)
for(s32 i = 0; i < frame_count; ++i)
{
v2s32 dst_pos(0, dim_crack_scaled.Height * i);
if(use_overlay)
Expand Down

0 comments on commit 7fbc815

Please sign in to comment.