![]() |
![]() |
#1 (permalink) |
Too hot in the hot tub!
|
shell script game
Hi all,
As one of our last projects in my C & UNIX class, we are making a simple game. Our group decided to do a minesweeper clone. As I am writing out the pre-code, I realize that if I was doing this in C++ or Java, I would use a class to define each "mine hole". That way it can keep track of it's status as flagged, unflagged, bombed etc. We haven't really gone over structs and classes for shell scripts. Does anyone know if this is possible?
__________________
But I don't want ANY Spam! |
![]() |
![]() |
#2 (permalink) |
Adequate
Location: In my angry-dome.
|
Pixel,
Which shell? Does it need to be pure shell scripting or can you make use of binaries within the script? Any restrictions? I'd probably cheat and put the game in mysql, wrapped by shell IO. Takes care of network & multiuser issues. ![]() I'm offline for the day. Should be plenty of scripting guys here though. Lay out your restrictions.
__________________
There are a vast number of people who are uninformed and heavily propagandized, but fundamentally decent. The propaganda that inundates them is effective when unchallenged, but much of it goes only skin deep. If they can be brought to raise questions and apply their decent instincts and basic intelligence, many people quickly escape the confines of the doctrinal system and are willing to do something to help others who are really suffering and oppressed." -Manufacturing Consent: Noam Chomsky and the Media, p. 195 |
![]() |
![]() |
#3 (permalink) |
Too hot in the hot tub!
|
Our prof was kind of vauge on the "all script" portion of it. I don't think he would mind if some of it was in C binanry, but if I can, I'd like to do the whole thing in script.
It can be in any shell we have available (csh, bsh, bash, ksh).
__________________
But I don't want ANY Spam! |
![]() |
![]() |
#7 (permalink) |
Adequate
Location: In my angry-dome.
|
Yikes, sorry PB. I completely bailed.
A 2D char array is simple, no? Use the bits for contents and status. Creative bit choices mean no translation to display the board as text. This is for a single session? No networking issues?
__________________
There are a vast number of people who are uninformed and heavily propagandized, but fundamentally decent. The propaganda that inundates them is effective when unchallenged, but much of it goes only skin deep. If they can be brought to raise questions and apply their decent instincts and basic intelligence, many people quickly escape the confines of the doctrinal system and are willing to do something to help others who are really suffering and oppressed." -Manufacturing Consent: Noam Chomsky and the Media, p. 195 |
![]() |
![]() |
#8 (permalink) |
Too hot in the hot tub!
|
That is true. I could even use a 2D int array and translate with a case statement. I'll probably want to add color and such on the output, so I might do that.
Yeah, this will be a single session and no networking. Although, one of the other groups is tackling network battleship. I'm interested to see how that will work.
__________________
But I don't want ANY Spam! |
![]() |
Tags |
game, script, shell |
|
|