Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 11-07-2005, 11:32 AM   #1 (permalink)
Too hot in the hot tub!
 
pixelbend's Avatar
 
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!
pixelbend is offline  
Old 11-07-2005, 12:21 PM   #2 (permalink)
Adequate
 
cyrnel's Avatar
 
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
cyrnel is offline  
Old 11-07-2005, 12:43 PM   #3 (permalink)
Too hot in the hot tub!
 
pixelbend's Avatar
 
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!
pixelbend is offline  
Old 11-08-2005, 08:55 AM   #4 (permalink)
Crazy
 
The easiest shell game would be hangman, because shells tend to have good pattern, search, and replacement code for strings.
BAMF is offline  
Old 11-08-2005, 06:21 PM   #5 (permalink)
Junkie
 
Location: Melbourne, Australia
A class.. that seems overkill.

All you need is an array surely.
Nimetic is offline  
Old 11-09-2005, 05:50 AM   #6 (permalink)
Too hot in the hot tub!
 
pixelbend's Avatar
 
As I see it, each space is going to need to be tagged as holding a mine or not and tagged as it's status (open, closed or flagged). A class or struct seems like the best choice to me.
__________________
But I don't want ANY Spam!
pixelbend is offline  
Old 11-09-2005, 06:17 AM   #7 (permalink)
Adequate
 
cyrnel's Avatar
 
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
cyrnel is offline  
Old 11-09-2005, 06:45 AM   #8 (permalink)
Too hot in the hot tub!
 
pixelbend's Avatar
 
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!
pixelbend is offline  
 

Tags
game, script, shell


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 08:40 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73