Omnimaga
Calculator Community => Other Calc-Related Projects and Ideas => TI Z80 => Topic started by: Potato on September 27, 2011, 05:06:59 pm
-
[Edit: Also had another problem. I wanted to have a banner on the side so that when a piece is selected it showed the name plus a more detailed drawing. Is there anyway that I can clear just that section of the screen with ease? I might be able to do clrdraw with what hot_dog suggested since with that I can just remake the board, haven't tried it out, but I want to have a back up plan]
Currently working on Chess in Basic and could use a little bit of help. So far I've only coded very basic parts of it but I've noticed during testing that it's already a little slow. In a nutshell what my program does is:
-Display the picture of the chess board (including the pieces already on it. I chose this method so that I could archive and unarchive pics within the program and also save games)
-Draw the cursor.
-Get key so that the cursor can move left, right, up and down while also allowing the player to select a piece (by pressing 2nd).
-When 2nd is press the prgm checks the pixels in that square. It can determine the difference between a black square, white square, and every single piece. (it sees rooks and bishops as the same but this shouldn't be a -problem)
-If a piece is selected it determines what piece it is (it determines if it's a piece at all first) and then what moves are available to it (and if it's a pawn if it's able to "jump" two squares) [at the moment I only have it programmed for pawns). All available moves are shown with a x through the square and all remaining pixels are darkened (a black square is actually a checkered square). If 2nd is pressed again on the pawn it reverts the available moves back to their original square type.
But even though I've only programmed white pawns (not even the black pawns yet) it takes about a half second for the cursor to move, and even longer to display the available moves. Before I continue I want to try and speed up this program so that it runs faster and not take 10 seconds per cursor move, (let alone moving to the piece you want)
Other non important stuff:
Each piece is not saved as a pic. I also plan to have the original pic drawn in using pic on and pic off but only at the end when I'm sure this works.
Each piece is not a variable. The program checks the pixels to determine what each square is, not what variable is where.
I actually can't move a piece yet. I simply haven't programmed it to but I'm fairly confident I could if I decided to put it in.
It will be a person vs person game. Not a person vs computer game. I'd rather it have AI but I'm not sure how to make this, if you know how that'd also be helpful. (Keep in mind this is in BASIC).
-
I would suggest that you save your chessboard into an 8x8 array if you haven't done so already. Whatever needs to be done/calculated should be tested in the array. Any work done with the graphics should simply be drawing them. (In essence, what you see on the screen is a visual representation of your real chessboard, which is stored in the array) This will speed up your program.
Here's an example, Matrix [A]:
0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0
1,1,1,1,1,1,1,1
0,0,0,0,0,0,0,0
You move your cursor to, say, the 7th row and the 1st column of the gameboard, so the calculator checks the 7th row and the 1st column of the array. Cursor X = 6 and Cursor Y = 1.
If [A](X,Y)= 1
Goto PN
"What, ho? The value is 1! So the piece is a pawn." Then the calculator checks to see if the square above is a zero.
If [A](X, Y-1) = 0
Goto CM
"It's 0! So the player can move a piece there."
I haven't been programming in Basic for very long, but that's about the big picture. If you use the array as your chessboard, you should gain some speed.
-
Oh wow never thought to do it that way. That's probably a lot faster than what I was doing. I had it test each a pixel and based off that it would branch off into different things to determine what piece.
-
I suggest using text on the homescreen, like this demo:
[I]=matrix
For(Y,1,8)
For(X,1,8)
Output(X,Y,Sub(" PNKBRQ"[I](Y,X)-1,1)
End
End
I have suddenly become really efficient at programming somehow! I don't know. But anyway that should display the entire board in about a second. As long as:
0 = blank space
1 = Pawn
2 = Knight (Night)
3 = King
4 = Bishop
5 = Rook
6 = Queen
However, I don't know about for the black peices...
Although there are asm( things you can put in that make the output text inverted temporarily, so you could figure something out with that...
-
By text do you mean as in clrhome gets rid of it all text? Because I already have graphics drawn out for each piece...
-
yeah, homescreen text. I don't know though. Maybe you should use text sprites on the graph screen.
-
I absolutely love chess, so I'm waiting for it :D
-
You might enjoy doing the sprites as you've been doing. If you do most of your work on the matrix, then once the game board and everything has been drawn, there's not too much of a speed difference between drawing text and drawing sprites.
-
Is this being done with TI-BASIC on a TI-83+/84+(SE)?
-
Hey, I did some 7x7 chess sprites, and you can use them if you want them.
http://ourl.ca/10180
Should I make them 6x6 so they can be text sprites? Also, they would have some more vertical space.
-
Text sprites are only five pixels high, not six.
-
Oh. That would be very hard. VERY hard.
-
Actually, 5x5 isn't so bad, you'd just have to you pxl-change or pt-change to draw them.
-
Text sprites are only five pixels high, not six.
My Chess text sprites were 6 pixels high, but it only worked for the black pieces. I used Line()s for the white only but in hindsight it would be easier to just use Line(x,y,x,y,variable) to control if it's black or white. ;)
(I was working on Chess about 2 years ago but gave up because I couldn't figure out how to program the AI).
Here's the program I was displaying with:
-
Ya, but you used to characters that aren't traditionally used for doing text sprites. Normal ones are only five since you can't have every combo for the sixth row. But ya, I it is possible as you showed.
-
ztrumpet that looks great. I love the checkerboard gray on the checkerboard :D
And Potato good luck on your project! Chess in BASIC would be something awesome. As other people have said already, I'd suggest using 5x5 horizontal text sprites (http://tibasicdev.wikidot.com/textsprites). They're pretty versatile.
-
I know a guy, with only a year of BASIC experience, created chess out of BASIC. I don't think he's done with it, but if you'd like, I could ask him for advice to give you. ;)
-
This topic got me fooling around with writing a little chess program of my own. Not sure if I'll ever finish it. The AI would probably be horrible as I have only played casually years ago. I'll post it in a topic if I manage to make significant progress with it. :)