Tetris Game -- based on a shell script (new algorithm)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Tetris Game -- based on a shell script (new algorithm)
# 36  
Old 03-08-2012
Updated 6.0 Beta1
# 37  
Old 03-11-2012
tetris.txt contains 5 version
is it possible to make usual figures?
tip78
# 38  
Old 03-11-2012
Quote:
Originally Posted by tip78
tetris.txt contains 5 version
is it possible to make usual figures?
what do you mean?
# 39  
Old 03-12-2012
Quote:
Originally Posted by huaihaizi3
what do you mean?
i mean
Code:
xx
xx

xx
x
x

x
xx
 x

xxxx

 x
xxx

etc
tip78
# 40  
Old 03-12-2012
Quote:
Originally Posted by tip78
i mean
Code:
xx
xx

xx
x
x

x
xx
 x

xxxx

 x
xxx

etc
The variable mrx defines the unit of the pieces, the current value of mrx is [];
if you replace [] with xx (double x) ; then the []will become xx, [][][][] will become xxxxxxxx etc, this way, you needn't to change anything else to the code, but if you want to change the code just as you have said that get
Code:
[]
[][]
[]

to
Code:
x
xx
x

(replace the [] with single x), you must to change a lot of the source code(the value of the elements of the box arrays and some coordinates transformation functions),
as you can see that, the current subtraction between arbitrary vertical coordinates of the pieces is 2n, in your way ,the value of subtraction is n!

Last edited by rbatte1; 03-06-2017 at 10:47 AM.. Reason: Added CODE & ICODE tags for clarity.
# 41  
Old 03-12-2012
Cool script. As others have noted echo varies to much across implementations (even within bash), use the sure-fire portable printf instead to make your script more reliable.
If you run this on your code:
Code:
sed 's/echo -e \("[^"]*\)/printf \1\\n/g;s/echo -ne\{0,1\}/printf/g' tetris_script > new_tetris_script

Then it should replace problematic echo -e with printf and then it gives visible output on OSX too. But one problem remaining is that not all signal traps are supported on every OS (for example signal 34):
On OSX from bash:

Code:
$ kill -l
 1) SIGHUP	 2) SIGINT	 3) SIGQUIT	 4) SIGILL
 5) SIGTRAP	 6) SIGABRT	 7) SIGEMT	 8) SIGFPE
 9) SIGKILL	10) SIGBUS	11) SIGSEGV	12) SIGSYS
13) SIGPIPE	14) SIGALRM	15) SIGTERM	16) SIGURG
17) SIGSTOP	18) SIGTSTP	19) SIGCONT	20) SIGCHLD
21) SIGTTIN	22) SIGTTOU	23) SIGIO	24) SIGXCPU
25) SIGXFSZ	26) SIGVTALRM	27) SIGPROF	28) SIGWINCH
29) SIGINFO	30) SIGUSR1	31) SIGUSR2

On Linux from bash:
Code:
$ kill -l
 1) SIGHUP	 2) SIGINT	 3) SIGQUIT	 4) SIGILL	 5) SIGTRAP
 6) SIGABRT	 7) SIGBUS	 8) SIGFPE	 9) SIGKILL	10) SIGUSR1
11) SIGSEGV	12) SIGUSR2	13) SIGPIPE	14) SIGALRM	15) SIGTERM
16) SIGSTKFLT	17) SIGCHLD	18) SIGCONT	19) SIGSTOP	20) SIGTSTP
21) SIGTTIN	22) SIGTTOU	23) SIGURG	24) SIGXCPU	25) SIGXFSZ
26) SIGVTALRM	27) SIGPROF	28) SIGWINCH	29) SIGIO	30) SIGPWR
31) SIGSYS	34) SIGRTMIN	35) SIGRTMIN+1	36) SIGRTMIN+2	37) SIGRTMIN+3
38) SIGRTMIN+4	39) SIGRTMIN+5	40) SIGRTMIN+6	41) SIGRTMIN+7	42) SIGRTMIN+8
43) SIGRTMIN+9	44) SIGRTMIN+10	45) SIGRTMIN+11	46) SIGRTMIN+12	47) SIGRTMIN+13
48) SIGRTMIN+14	49) SIGRTMIN+15	50) SIGRTMAX-14	51) SIGRTMAX-13	52) SIGRTMAX-12
53) SIGRTMAX-11	54) SIGRTMAX-10	55) SIGRTMAX-9	56) SIGRTMAX-8	57) SIGRTMAX-7
58) SIGRTMAX-6	59) SIGRTMAX-5	60) SIGRTMAX-4	61) SIGRTMAX-3	62) SIGRTMAX-2
63) SIGRTMAX-1	64) SIGRTMAX


Last edited by Scrutinizer; 03-12-2012 at 06:20 AM..
This User Gave Thanks to Scrutinizer For This Post:
# 42  
Old 03-12-2012
Quote:
Originally Posted by Scrutinizer
Cool script. As others have noted echo varies to much across implementations (even within bash), use the sure-fire portable printf instead to make your script more reliable


Will apply your good advices to the next version!
Thanks!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Creating a text based game using shell script.

Hello guys I'm new to shell scripting and I need to make a game using shell script. I want to know if it is possible for me a total noob to shell scripting to make this game. The game concept is simple: First thing when you launch the script you get a menu in which you select if you want to... (3 Replies)
Discussion started by: Othmane
3 Replies

2. Shell Programming and Scripting

Proper distribution of cards in terminal based crazy8's game in bash script

When I run the following script at the bottom it say cards remaining=44...It should be=35. Can anyone tell me what I'm doing wrong. I've spent hours trying to get this to work and I can't go any further until this part works. thank you in advance Cogiz #!/bin/bash # Date="November, 2016" #... (2 Replies)
Discussion started by: cogiz
2 Replies

3. Shell Programming and Scripting

Understanding Tetris-game code. newbie

Hi All, Been trying to understand the code in tetris game (in the sticky threads) & i know i have a alot reading /practice to do. it's using advanced methods with arrays and arithmetic and would much appreciate if some one can guide me to good books that's not outdated that would help me take... (0 Replies)
Discussion started by: xcod3r
0 Replies

4. UNIX for Dummies Questions & Answers

[Solved] Making a text based game

Hello, I am looking to make a text based game, that runs in the command window, or a window similar. I will only need to use 1 window. I read somewhere that there is libraries for this kind of thing? But I can't remember the name of them.. Can anyone point me in a direction? I will be... (2 Replies)
Discussion started by: murphy
2 Replies

5. Programming

Tetris Game in C++

Open Source Project: https://github.com/yongye/cpp Ported from the shell: Shell (0 Replies)
Discussion started by: complex.invoke
0 Replies

6. Shell Programming and Scripting

Shell Text Based Game, This Error Makes NO sense. Please help

Okay so I'm making a simple text based game that branches into different scenarios. By branching I mean branching off into whole different files with that part of the game in it. I got tired of working on scenario 1 so I'm working on scenario 2. As I get started and try to test it, I get an... (3 Replies)
Discussion started by: lemonoid
3 Replies

7. Shell Programming and Scripting

Making a Text based game. Need help.

Okay so Zork sparked my interest in this. I have been learning to program for the last year and a half. I've dabbled in everything from Java to Ruby to PHP & XHTML & SQL, and now I'm on bash. I really like bash scripting. Its easy and fun. I just started two days ago. Pretty much I've been writing... (1 Reply)
Discussion started by: lemonoid
1 Replies

8. UNIX for Dummies Questions & Answers

Is there picture based game under linux terminal?

Is there picture based game under linux terminal? Just like Supermario under DOS. (18 Replies)
Discussion started by: vistastar
18 Replies

9. UNIX for Dummies Questions & Answers

text based football game?

Is there a textbased football game (American) that I can download through ubuntu server edition? (1 Reply)
Discussion started by: dadoprso
1 Replies

10. Shell Programming and Scripting

Shell Script Poker Game

Original Code Taken from here: http://www.tldp.org/LDP/abs/html/bashver2.html#EX79 The code in the above link displays 4 unique 13 cards hands. I've modified it to deal a hand unique 2 card hand to 2 different players, then deal 5 unique community cards as in Texas Holdem (3 cards, then 1... (8 Replies)
Discussion started by: earnstaf
8 Replies
Login or Register to Ask a Question