Post Reply 
Sokoban game for HP Prime
03-14-2014, 11:56 PM (This post was last modified: 03-14-2014 11:58 PM by patrice.)
Post: #29
RE: Sokoban game for HP Prime
Hi Ariel,
After the last review of your code, I have an advice for you.
When programming big pieces of code it is usually easier to put only one functionality in a subroutine, and only the top level routines put together every thing.
Example in loadsubnivel(), it is called only once by the top level routine. Making it only loading the level and nothing else make it easier to remember and to change. drawscreen() have some side effects that complicate changes.
Code:
    IF GAMEOVER == 0 THEN
      loadsubnivel();
      drawscreen();
      RECT_P(G0,20,223,300,238,#000000,#FFFFFF);
      TEXTOUT_P("LEVEL: "+NIVEL+"-"+SUBNIVEL+"  MOVES:           PUSHES:        ",25,224);
      FINAL := 0; MOVI  := 0;PUSH  := 0;
a code like that with a loadsubnivel() only loading the level is considered easier to understand and to change.

Patrice
“Everything should be made as simple as possible, but no simpler.” Albert Einstein
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Sokoban game for HP Prime - ArielPalazzesi - 01-04-2014, 10:58 AM
RE: Sokoban game for HP Prime - Les_Koller - 01-04-2014, 10:39 PM
RE: Sokoban game for HP Prime - patrice - 01-05-2014, 09:11 AM
RE: Sokoban game for HP Prime - patrice - 01-05-2014, 11:01 AM
RE: Sokoban game for HP Prime - patrice - 01-05-2014, 03:29 PM
Sokoban game for HP Prime - Dante - 01-09-2014, 03:36 PM
RE: Sokoban game for HP Prime - Tugdual - 01-10-2014, 09:59 PM
RE: Sokoban game for HP Prime - patrice - 01-14-2014, 11:25 AM
RE: Sokoban game for HP Prime - patrice - 01-14-2014, 05:42 PM
RE: Sokoban game for HP Prime - patrice - 01-15-2014, 08:37 AM
RE: Sokoban game for HP Prime - patrice - 01-27-2014, 11:21 PM
RE: Sokoban game for HP Prime - patrice - 02-24-2014, 04:05 PM
RE: Sokoban game for HP Prime - patrice - 03-10-2014, 05:15 AM
RE: Sokoban game for HP Prime - patrice - 03-10-2014, 11:50 AM
RE: Sokoban game for HP Prime - patrice - 03-10-2014, 06:24 PM
RE: Sokoban game for HP Prime - patrice - 03-14-2014 11:56 PM
RE: Sokoban game for HP Prime - patrice - 05-30-2014, 09:28 PM
RE: Sokoban game for HP Prime - jonakeys - 03-04-2024, 06:52 PM
RE: Sokoban game for HP Prime - rprosperi - 03-04-2024, 11:01 PM
RE: Sokoban game for HP Prime - jonakeys - 03-05-2024, 06:17 PM



User(s) browsing this thread: 1 Guest(s)