From 33df7a5ca87e883c2b718171fd7d05c22fc0353f Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Wed, 12 Aug 1998 23:19:20 +0200 Subject: [PATCH] rnd-19980812 --- src/cartoons.c | 4 +- src/events.c | 54 ++++++--- src/game.c | 109 ++++++++++++++--- src/init.c | 15 +-- src/main.c | 6 +- src/main.h | 14 ++- src/tools.c | 312 ++++++++++++++++++++++++++++++++++--------------- src/tools.h | 6 + 8 files changed, 380 insertions(+), 140 deletions(-) diff --git a/src/cartoons.c b/src/cartoons.c index a295844f..7cc59d1a 100644 --- a/src/cartoons.c +++ b/src/cartoons.c @@ -129,14 +129,14 @@ void HandleAnimation(int mode) { int xx,yy; - drawto_field = backbuffer; + SetDrawtoField(DRAW_BACKBUFFER); for(xx=0;xx 2 ? 4-phase : phase)*TILEY; - dest_x = SX+SCROLLX(x)*TILEX; - dest_y = SY+SCROLLY(y)*TILEY; + dest_x = FX+SCROLLX(x)*TILEX; + dest_y = FY+SCROLLY(y)*TILEY; XSetClipOrigin(display,clip_gc[PIX_BACK],dest_x-src_x,dest_y-src_y); XCopyArea(display,pix[PIX_BACK],drawto_field,clip_gc[PIX_BACK], @@ -2406,9 +2407,9 @@ void EdelsteinFunkeln(int x, int y) if (direct_draw_on) { - XCopyArea(display,backbuffer,window,gc, + XCopyArea(display,drawto_field,window,gc, dest_x,dest_y, TILEX,TILEY, dest_x,dest_y); - drawto_field = window; + SetDrawtoField(DRAW_DIRECT); } } } @@ -2564,7 +2565,23 @@ void GameActions() action_delay_value = (tape.playing && tape.fast_forward ? FFWD_FRAME_DELAY : Gamespeed); + /* if (DelayReached(&action_delay, action_delay_value)) + */ + + + + if (PlayerMovPos) + ScrollFigure(0); + + DrawPlayerField(); + + + + + if (!DelayReached(&action_delay, action_delay_value)) + return; + { int x,y,element; int sieb_x = 0, sieb_y = 0; @@ -2696,6 +2713,14 @@ void GameActions() } } } + + /* + if (PlayerMovPos) + ScrollFigure(0); + + DrawPlayerField(); + */ + } if (TimeLeft>0 && TimeFrames>=25 && !tape.pausing) @@ -2715,32 +2740,53 @@ void GameActions() KillHero(); } + /* + if (PlayerMovPos) + ScrollFigure(0); + */ + + + /* + DrawPlayerField(); + */ + + BackToFront(); } void ScrollLevel(int dx, int dy) { int x,y; + int softscroll_offset = (FX == TILEX ? TILEX : 0); + + if (soft_scrolling_on) + { + ScreenMovPos = PlayerMovPos; + redraw_mask |= REDRAW_FIELD; + } XCopyArea(display,drawto_field,drawto_field,gc, - SX+TILEX*(dx==-1),SY+TILEY*(dy==-1), - SXSIZE-TILEX*(dx!=0),SYSIZE-TILEY*(dy!=0), - SX+TILEX*(dx==1),SY+TILEY*(dy==1)); + FX + TILEX*(dx==-1) - softscroll_offset, + FY + TILEY*(dy==-1) - softscroll_offset, + SXSIZE - TILEX*(dx!=0) + 2*softscroll_offset, + SYSIZE - TILEY*(dy!=0) + 2*softscroll_offset, + FX + TILEX*(dx==1) - softscroll_offset, + FY + TILEY*(dy==1) - softscroll_offset); if (dx) { - x = (dx==1 ? 0 : SCR_FIELDX-1); - for(y=0;y 0 || dy > 0 ? -1 : 1) * 3*TILEX/4; ScrollFigure(-1); @@ -2897,7 +2942,9 @@ BOOL MoveFigure(int dx, int dy) TestIfHeroHitsBadThing(); + /* BackToFront(); + */ if (PlayerGone) RemoveHero(); @@ -2908,10 +2955,29 @@ BOOL MoveFigure(int dx, int dy) void ScrollFigure(int init) { static long actual_frame_counter; + static int oldX = -1, oldY = -1; if (init) { + if (PlayerMovPos && oldX != -1 && oldY != -1) + { + DrawLevelElement(oldX,oldY, Feld[oldX][oldY]); + DrawPlayerField(); + } + + oldX = JX2; + oldY = JY2; actual_frame_counter = FrameCounter; + + redraw[redraw_x1 + oldX][redraw_y1 + oldY] = 1; + redraw_tiles++; + + /* + DrawLevelElement(oldX,oldY, Feld[oldX][oldY]); + */ + + DrawPlayerField(); + return; } else if (!FrameReached(&actual_frame_counter,1)) @@ -2919,8 +2985,20 @@ void ScrollFigure(int init) PlayerMovPos += (PlayerMovPos > 0 ? -1 : 1) * TILEX/4; - DrawLevelElement(JX2,JY2, Feld[JX2][JY2]); + if (ScreenMovPos) + { + ScreenMovPos = PlayerMovPos; + redraw_mask |= REDRAW_FIELD; + } + + DrawLevelElement(oldX,oldY, Feld[oldX][oldY]); DrawPlayerField(); + + if (!PlayerMovPos) + { + JX2 = JX; + JY2 = JY; + } } void TestIfGoodThingHitsBadThing(int goodx, int goody) @@ -3493,7 +3571,6 @@ void RaiseScore(int value) { Score += value; DrawText(DX_SCORE,DY_SCORE,int2str(Score,5),FS_SMALL,FC_YELLOW); - BackToFront(); } void RaiseScoreElement(int element) diff --git a/src/init.c b/src/init.c index 0f0bd652..134cf74a 100644 --- a/src/init.c +++ b/src/init.c @@ -362,7 +362,7 @@ void InitGfx() 3*DXSIZE,DYSIZE+VYSIZE, XDefaultDepth(display,screen)); pix[PIX_DB_FIELD] = XCreatePixmap(display, window, - SXSIZE+2*TILEX,SYSIZE+2*TILEY, + FXSIZE,FYSIZE, XDefaultDepth(display,screen)); if (!pix[PIX_DB_BACK] || !pix[PIX_DB_DOOR]) @@ -386,8 +386,9 @@ void InitGfx() } } - drawto = drawto_field = backbuffer = pix[PIX_DB_BACK]; + drawto = backbuffer = pix[PIX_DB_BACK]; fieldbuffer = pix[PIX_DB_FIELD]; + SetDrawtoField(DRAW_BACKBUFFER); XCopyArea(display,pix[PIX_BACK],backbuffer,gc, 0,0, WIN_XSIZE,WIN_YSIZE, 0,0); @@ -396,11 +397,11 @@ void InitGfx() XFillRectangle(display,pix[PIX_DB_DOOR],gc, 0,0, 3*DXSIZE,DYSIZE+VYSIZE); - for(i=0;i=0 && (x)=0 &&(y)=BX1 && (x)<=BX2 && (y)>=BY1 &&(y)<=BY2) #define IN_LEV_FIELD(x,y) ((x)>=0 && (x)=0 &&(y) +void SetDrawtoField(int mode) +{ + if (mode == DRAW_BUFFERED && soft_scrolling_on) + { + FX = TILEX; + FY = TILEY; + BX1 = -1; + BY1 = -1; + BX2 = SCR_FIELDX; + BY2 = SCR_FIELDY; + redraw_x1 = 1; + redraw_y1 = 1; + + drawto_field = fieldbuffer; + } + else /* DRAW_DIRECT, DRAW_BACKBUFFER */ + { + FX = SX; + FY = SY; + BX1 = 0; + BY1 = 0; + BX2 = SCR_FIELDX - 1; + BY2 = SCR_FIELDY - 1; + redraw_x1 = 0; + redraw_y1 = 0; + + drawto_field = (mode == DRAW_DIRECT ? window : backbuffer); + } +} + void BackToFront() { int x,y; + Drawable buffer = (drawto_field != window ? drawto_field : backbuffer); - if (direct_draw_on && game_status==PLAYING) + if (direct_draw_on && game_status == PLAYING) redraw_mask &= ~REDRAW_MAIN; + + + /* + if (ScreenMovPos && redraw_mask & REDRAW_FIELD) + { + redraw_mask |= REDRAW_FIELD; + + printf("FULL SCREEN REDRAW FORCED by ScreenMovPos == %d\n", ScreenMovPos); + } + */ + + + + /* + if (ScreenMovPos && redraw_mask & REDRAW_TILES) + { + redraw_mask |= REDRAW_FIELD; + + printf("FULL SCREEN REDRAW FORCED by ScreenMovPos == %d\n", ScreenMovPos); + } + */ + + + /* + if (ScreenMovPos && !(redraw_mask & REDRAW_FIELD)) + { + printf("OOPS!\n"); + + *((int *)NULL) = 0; + } + */ + + /* + if (IN_SCR_FIELD(JX2,JY2)) + redraw[redraw_x1 + JX2][redraw_y1 + JY2] = 0; + */ + + + if (redraw_mask & REDRAW_TILES && redraw_tiles > REDRAWTILES_THRESHOLD) + redraw_mask |= REDRAW_FIELD; + + if (redraw_mask & REDRAW_FIELD) + redraw_mask &= ~REDRAW_TILES; + + /* + { + static int lastFrame = 0; + + printf("FrameCounter: %d\n", FrameCounter); + + if (FrameCounter != lastFrame + 1) + { + printf("SYNC LOST! <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n"); + + if (FrameCounter > 100) + *((int *)NULL) = 0; + } + + lastFrame = FrameCounter; + } + */ + if (!redraw_mask) return; - if (redraw_mask & REDRAW_ALL || - (redraw_mask & REDRAW_FIELD && redraw_mask & REDRAW_DOORS)) + if (redraw_mask & REDRAW_ALL) { XCopyArea(display,backbuffer,window,gc, 0,0, WIN_XSIZE,WIN_YSIZE, 0,0); redraw_mask = 0; } - else if (redraw_mask & REDRAW_FIELD) + + if (redraw_mask & REDRAW_FIELD) { - XCopyArea(display,backbuffer,window,gc, - REAL_SX,REAL_SY, FULL_SXSIZE,FULL_SYSIZE, - REAL_SX,REAL_SY); + int fx = FX + (PlayerMovDir & (MV_LEFT|MV_RIGHT) ? ScreenMovPos : 0); + int fy = FY + (PlayerMovDir & (MV_UP|MV_DOWN) ? ScreenMovPos : 0); + + if (game_status == PLAYING) + { + XCopyArea(display,buffer,window,gc, + fx,fy, SXSIZE,SYSIZE, + SX,SY); + + /* + printf("FULL SCREEN REDRAW / ScreenMovPos == %d\n", ScreenMovPos); + */ + + } + else + XCopyArea(display,backbuffer,window,gc, + REAL_SX,REAL_SY, FULL_SXSIZE,FULL_SYSIZE, + REAL_SX,REAL_SY); redraw_mask &= ~REDRAW_MAIN; } - else if (redraw_mask & REDRAW_DOORS) + + if (redraw_mask & REDRAW_DOORS) { if (redraw_mask & REDRAW_DOOR_1) XCopyArea(display,backbuffer,window,gc, - DX,DY, DXSIZE,DYSIZE, DX,DY); + DX,DY, DXSIZE,DYSIZE, + DX,DY); if (redraw_mask & REDRAW_DOOR_2) { if ((redraw_mask & REDRAW_DOOR_2) == REDRAW_DOOR_2) XCopyArea(display,backbuffer,window,gc, - VX,VY, VXSIZE,VYSIZE, VX,VY); + VX,VY, VXSIZE,VYSIZE, + VX,VY); else { if (redraw_mask & REDRAW_VIDEO_1) @@ -97,23 +208,21 @@ void BackToFront() if (redraw_mask & REDRAW_TILES) { - if (redraw_tiles>REDRAWTILES_TH) - XCopyArea(display,backbuffer,window,gc,SX,SY,SXSIZE,SYSIZE,SX,SY); - else - for(x=0;x BX2) /* Element kommt von rechts ins Bild */ { - x=SCR_FIELDX-1; - width=-dx; - dx=TILEX+dx; + x = BX2; + width = -dx; + dx = TILEX + dx; } - else if (x==0 && dx<0) /* Element verläßt links das Bild */ + else if (x==BX1 && dx<0) /* Element verläßt links das Bild */ { - width+=dx; - cx=-dx; - dx=0; + width += dx; + cx = -dx; + dx = 0; } - else if (x==SCR_FIELDX-1 && dx>0) /* El. verläßt rechts das Bild */ - width-=dx; + else if (x==BX2 && dx>0) /* Element verläßt rechts das Bild */ + width -= dx; else if (dx) /* allg. Bewegung in x-Richtung */ - redraw[x+SIGN(dx)][y]=TRUE; + redraw[redraw_x1 + x + SIGN(dx)][redraw_y1 + y] = TRUE; - if (y<0) /* Element kommt von oben ins Bild */ + if (y < BY1) /* Element kommt von oben ins Bild */ { if (cut_mode==CUT_BELOW) /* Element oberhalb des Bildes */ return; - y=0; - height=dy; - cy=TILEY-dy; - dy=0; + y = BY1; + height = dy; + cy = TILEY - dy; + dy = 0; } - else if (y==SCR_FIELDY) /* Element kommt von unten ins Bild */ + else if (y > BY2) /* Element kommt von unten ins Bild */ { - y=SCR_FIELDY-1; - height=-dy; - dy=TILEY+dy; + y = BY2; + height = -dy; + dy = TILEY + dy; } - else if (y==0 && dy<0) /* Element verläßt oben das Bild */ + else if (y==BY1 && dy<0) /* Element verläßt oben das Bild */ { - height+=dy; - cy=-dy; - dy=0; + height += dy; + cy = -dy; + dy = 0; } - else if (dy>0 && cut_mode==CUT_ABOVE) + else if (dy > 0 && cut_mode==CUT_ABOVE) { - if (y==SCR_FIELDY-1) /* Element unterhalb des Bildes */ + if (y == BY2) /* Element unterhalb des Bildes */ return; - height=dy; - cy=TILEY-dy; - dy=TILEY; - redraw[x][y+1]=TRUE; + height = dy; + cy = TILEY-dy; + dy = TILEY; + redraw[redraw_x1 + x][redraw_y1 + y + 1] = TRUE; } /* Element verläßt unten das Bild */ - else if (dy>0 && (y==SCR_FIELDY-1 || cut_mode==CUT_BELOW)) - height-=dy; + else if (dy > 0 && (y == BY2 || cut_mode==CUT_BELOW)) + height -= dy; else if (dy) /* allg. Bewegung in y-Richtung */ - redraw[x][y+SIGN(dy)]=TRUE; + redraw[redraw_x1 + x][redraw_y1 + y + SIGN(dy)] = TRUE; } if (graphic >= GFX_START_ROCKSSCREEN && graphic <= GFX_END_ROCKSSCREEN) @@ -621,7 +739,7 @@ void DrawGraphicShifted(int x,int y, int dx,int dy, int graphic, int cut_mode) XCopyArea(display,pix[PIX_BACK],drawto_field,gc, SX+(graphic % GFX_PER_LINE)*TILEX+cx, SY+(graphic / GFX_PER_LINE)*TILEY+cy, - width,height, SX+x*TILEX+dx,SY+y*TILEY+dy); + width,height, FX+x*TILEX+dx,FY+y*TILEY+dy); } else if (graphic >= GFX_START_ROCKSHEROES && graphic <= GFX_END_ROCKSHEROES) { @@ -629,7 +747,7 @@ void DrawGraphicShifted(int x,int y, int dx,int dy, int graphic, int cut_mode) XCopyArea(display,pix[PIX_HEROES],drawto_field,gc, (graphic % HEROES_PER_LINE)*TILEX+cx, (graphic / HEROES_PER_LINE)*TILEY+cy, - width,height, SX+x*TILEX+dx,SY+y*TILEY+dy); + width,height, FX+x*TILEX+dx,FY+y*TILEY+dy); } #if DEBUG @@ -642,8 +760,8 @@ void DrawGraphicShifted(int x,int y, int dx,int dy, int graphic, int cut_mode) #endif redraw_tiles++; - redraw[x][y]=TRUE; - redraw_mask|=REDRAW_TILES; + redraw[redraw_x1 + x][redraw_y1 + y] = TRUE; + redraw_mask |= REDRAW_TILES; } void DrawElementShifted(int x, int y, int dx, int dy, int element,int cut_mode) @@ -658,11 +776,11 @@ void DrawElementShifted(int x, int y, int dx, int dy, int element,int cut_mode) { graphic += 4*!phase; - if (dir==MV_UP) + if (dir == MV_UP) graphic += 1; - else if (dir==MV_LEFT) + else if (dir == MV_LEFT) graphic += 2; - else if (dir==MV_DOWN) + else if (dir == MV_DOWN) graphic += 3; } else if (element==EL_MAULWURF || element==EL_PINGUIN || @@ -794,11 +912,11 @@ void ErdreichAnbroeckeln(int x, int y) XCopyArea(display,pix[PIX_BACK],drawto_field,gc, SX+(graphic % GFX_PER_LINE)*TILEX+cx, SY+(graphic / GFX_PER_LINE)*TILEY+cy, - width,height, SX+x*TILEX+cx,SY+y*TILEY+cy); + width,height, FX+x*TILEX+cx,FY+y*TILEY+cy); } redraw_tiles++; - redraw[x][y]=TRUE; + redraw[redraw_x1 + x][redraw_y1 + y] = TRUE; } else { @@ -840,10 +958,10 @@ void ErdreichAnbroeckeln(int x, int y) XCopyArea(display,pix[PIX_BACK],drawto_field,gc, SX+(graphic % GFX_PER_LINE)*TILEX+cx, SY+(graphic / GFX_PER_LINE)*TILEY+cy, - width,height, SX+xx*TILEX+cx,SY+yy*TILEY+cy); + width,height, FX+xx*TILEX+cx,FY+yy*TILEY+cy); redraw_tiles++; - redraw[xx][yy]=TRUE; + redraw[redraw_x1 + xx][redraw_y1 + yy] = TRUE; } } } @@ -1004,8 +1122,8 @@ void DrawLevel() ClearWindow(); - for(x=0;x +/* für SetDrawtoField */ +#define DRAW_DIRECT 0 +#define DRAW_BUFFERED 1 +#define DRAW_BACKBUFFER 2 + /* für DrawElementShifted */ #define CUT_NO_CUTTING 0 #define CUT_ABOVE 1 @@ -48,6 +53,7 @@ #define AYS_STAY_CLOSED 16 #define AYS_STAY_OPEN 32 +void SetDrawtoField(int); void BackToFront(); void FadeToFront(); void ClearWindow(); -- 2.34.1