The Penguin Machine
The Penguin Machine is a remake of The Incredible Machine, written by Sierra a few years ago on Atari ST and Amiga. A level editor is included in the package.
Sébastien Migniot
(smigniot)
Changes
Links
Releases
The Penguin Machine 1.0 — 7 Oct, 2005
Pygame.org account Comments
- 
          
  
    
    Zoran Popovic 2012-04-15 15:32twimc, thing runs on Python 2.7 (fedora 16) with additional modifications (beside those by David O' Shea), concerning errors like "TypeError: integer argument expected, got float" and "TypeError: range() integer end argument expected, got float." - I had to add min and max functions in surfutils.c (e.g. static double min(double x, double y) {return (x < y ? x : y);} static double max(double x, double y) {return (x > y ? x : y);}), and corrected Objects.py: 
 line 45:
 pilsource.resize((math.trunc(pilsource.size[0]/coeff), math.trunc(pilsource.size[1]/coeff))).save(filename)
 lines 367 and 393:
 for i in range(math.trunc(step)+1):
 ...
 Mind I wasn't coding for ages, and I have played just one level ... a great game, wish I could do more for it ..
 
        
       
       
       
       
       
       
       
       
      