Difference for random_maps/exit.c from version 1.17 to 1.18


version 1.17 version 1.18
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_exit_c =   * static char *rcsid_exit_c =
  *   "$Id: exit.c,v 1.17 2004/08/07 23:24:13 temitchell Exp $";   *   "$Id: exit.c,v 1.18 2005/11/16 08:16:08 mwedel Exp $";
  */   */
   
 /*  /*
Line 218
 
Line 218
       }        }
     }      }
     /* Block the exit so things don't get dumped on top of it. */      /* Block the exit so things don't get dumped on top of it. */
     SET_FLAG(the_exit_up,FLAG_NO_PASS);      the_exit_up->move_block = MOVE_ALL;
   
     insert_ob_in_map(the_exit_up,map,NULL,0);      insert_ob_in_map(the_exit_up,map,NULL,0);
     maze[the_exit_up->x][the_exit_up->y]='<';      maze[the_exit_up->x][the_exit_up->y]='<';
   
Line 252
 
Line 253
     if(downx==-1) find_in_layout(0,0,&downx,&downy,maze,RP);      if(downx==-1) find_in_layout(0,0,&downx,&downy,maze,RP);
     if(the_exit_down) {      if(the_exit_down) {
       char buf[2048];        char buf[2048];
       i = find_first_free_spot(the_exit_down->arch,map,downx,downy);        i = find_first_free_spot(the_exit_down, map, downx, downy);
       the_exit_down->x = downx + freearr_x[i];        the_exit_down->x = downx + freearr_x[i];
       the_exit_down->y = downy + freearr_y[i];        the_exit_down->y = downy + freearr_y[i];
       RP->origin_x = the_exit_down->x;        RP->origin_x = the_exit_down->x;
Line 311
 
Line 312
       else         else
         the_exit_down->slaying = add_string("/!");          the_exit_down->slaying = add_string("/!");
       /* Block the exit so things don't get dumped on top of it. */        /* Block the exit so things don't get dumped on top of it. */
       SET_FLAG(the_exit_down,FLAG_NO_PASS);        the_exit_down->move_block = MOVE_ALL;
       insert_ob_in_map(the_exit_down,map,NULL,0);        insert_ob_in_map(the_exit_down,map,NULL,0);
       maze[the_exit_down->x][the_exit_down->y]='>';        maze[the_exit_down->x][the_exit_down->y]='>';
     }      }
Line 332
 
Line 333
     for(j=0;j<RP->Ysize;j++)      for(j=0;j<RP->Ysize;j++)
       if(maze[i][j]=='>' || maze[i][j]=='<') {        if(maze[i][j]=='>' || maze[i][j]=='<') {
         for(walk=get_map_ob(map,i,j);walk!=NULL;walk=walk->above) {          for(walk=get_map_ob(map,i,j);walk!=NULL;walk=walk->above) {
           if(QUERY_FLAG(walk,FLAG_NO_PASS) && walk->type != LOCKED_DOOR) {            if(walk->move_type == MOVE_ALL && walk->type != LOCKED_DOOR) {
             CLEAR_FLAG(walk,FLAG_NO_PASS);       walk->move_type = MOVE_BLOCK_DEFAULT;
             update_object(walk,UP_OBJ_CHANGE);              update_object(walk,UP_OBJ_CHANGE);
           }            }
         }          }


Legend:
line(s) removed in v.1.17 
line(s) changed
 line(s) added in v.1.18

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:54