-2

I'm new in smalltalk language and my teacher asked me to make a minesweeper game to exhibit later at my college class, so I need any kind of help here. All material that I found is from before 2011 and does not match with squeak 5.0(current version).But I recently found a minesweepers project in smalltalk language, but does not works in newer versions of squeak( and I don't even know how to run in the old ones), if someone can explain how it works would be great.

http://www.mjfleming.net/Resume/Smalltalk/Minesweeper/minesweeper.html

Preshan Pradeepa
  • 698
  • 14
  • 31
Pedro Soares
  • 303
  • 2
  • 8
  • http://squeak.org/documentation/ has a lot of documentation; when you work through these, you'll find that most still apply. The Link you gave is an MVC based game; you need to open an MVC Project (Projects menu) to use it. It works somehow, but you might want to start from scratch. – Tobias Nov 19 '15 at 07:48

2 Answers2

1

You might want to take a look at the Laser Game tutorial, that explains how to make a game model and the GUI for it using Morphic

Stephan Eggermont
  • 15,847
  • 1
  • 38
  • 65
1

Squeak by Example (link) and Pharo by Example (link) both have a worked example of a cell-clicking game, that could be readily adapted to use for MineSweeper.

Euan M
  • 1,126
  • 11
  • 20