home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 309.lha / PBM_PLUS / pbm / pbmlife.c < prev    next >
C/C++ Source or Header  |  1980-12-04  |  2KB  |  94 lines

  1. /* pbmlife.c - read a portable bitmap and apply Conway's rules of Life to it
  2. **
  3. ** Copyright (C) 1988 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include <stdio.h>
  14. #include "pbm.h"
  15.  
  16. main( argc, argv )
  17. int argc;
  18. char *argv[];
  19.     {
  20.     FILE *ifd;
  21.     register bit **bits, *bitrow;
  22.     int rows, cols, row, col, count;
  23.  
  24.     pm_progname = argv[0];
  25.  
  26.     if ( argc > 2 )
  27.     pm_usage( "[pbmfile]" );
  28.  
  29.     if ( argc == 2 )
  30.     ifd = pm_openr( argv[1] );
  31.     else
  32.     ifd = stdin;
  33.  
  34.     bits = pbm_readpbm( ifd, &cols, &rows );
  35.     pbm_writepbminit( stdout, cols, rows );
  36.     bitrow = pbm_allocrow( cols );
  37.  
  38.     pm_close( ifd );
  39.  
  40.     for ( row = 0; row < rows; row++ )
  41.     {
  42.         for ( col = 0; col < cols; col++ )
  43.         {
  44.         /* Check the neighborhood, with an unrolled double loop. */
  45.         count = 0;
  46.         if ( row - 1 >= 0 )
  47.         {
  48.         /* upper left */
  49.         if ( col - 1 >= 0 && bits[row - 1][col - 1] )
  50.             count++;
  51.         /* upper center */
  52.         if ( bits[row - 1][col] )
  53.             count++;
  54.         /* upper right */
  55.         if ( col + 1 < cols && bits[row - 1][col + 1] )
  56.             count++;
  57.         }
  58.         /* left */
  59.         if ( col - 1 >= 0 && bits[row][col - 1] )
  60.         count++;
  61.         /* right */
  62.         if ( col + 1 < cols && bits[row][col + 1] )
  63.         count++;
  64.         if ( row + 1 < rows )
  65.         {
  66.         /* lower left */
  67.         if ( col - 1 >= 0 && bits[row + 1][col - 1] )
  68.             count++;
  69.         /* lower center */
  70.         if ( bits[row + 1][col] )
  71.             count++;
  72.         /* lower right */
  73.         if ( col + 1 < cols && bits[row + 1][col + 1] )
  74.             count++;
  75.         }
  76.  
  77.         /* And compute the new value. */
  78.         if ( bits[row][col] )
  79.         if ( count == 2 || count == 3 )
  80.             bitrow[col] = 1;
  81.         else
  82.             bitrow[col] = 0;
  83.         else
  84.         if ( count == 3 )
  85.             bitrow[col] = 1;
  86.         else
  87.             bitrow[col] = 0;
  88.         }
  89.     pbm_writepbmrow( stdout, bitrow, cols );
  90.     }
  91.  
  92.     exit( 0 );
  93.     }
  94.