Author Topic: Pig  (Read 23488 times)

0 Members and 1 Guest are viewing this topic.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Pig
« on: October 16, 2018, 11:49:36 pm »
Yeah, Pig, I found it at Rosetta, I was curious if it was an interesting game.
You get to keep rolling a die and accumulating a score unless you roll a 1 then the accumulated score is lost.
If you don't roll a 1 you have option of holding or rolling again. First to 100 wins.

I have AI programmed to roll 4 times here:
Code: QB64: [Select]
  1. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  2.     turn = (turn + 1) MOD 2
  3.     di = INT(RND * 6) + 1
  4.     PRINT: PRINT "Player:"; player; "  AI:"; AI
  5.     accum = 0 '<<<<<<<<<<<<<<<<< EDIT  one line instead of two
  6.     IF turn THEN 'player
  7.         DO
  8.             IF di = 1 THEN
  9.                 INPUT "Player you rolled a 1, your turn is over, press enter..."; wate$
  10.                 EXIT DO
  11.             ELSE
  12.                 accum = accum + di
  13.                 PRINT "Player you rolled a "; di; "your accumulated total is now "; accum
  14.                 INPUT "Do you want to (r)oll again or (h)old, Enter r or h > "; choice$
  15.                 IF choice$ = "r" THEN
  16.                     di = INT(RND * 6) + 1
  17.                 ELSE
  18.                     player = player + accum
  19.                     EXIT DO
  20.                 END IF
  21.             END IF
  22.         LOOP
  23.     ELSE
  24.         FOR i = 1 TO 5
  25.             IF di = 1 THEN
  26.                 INPUT "AI rolled a 1, it's turn is over, press enter..."; wate$
  27.                 EXIT FOR
  28.             ELSE
  29.                 accum = accum + di
  30.                 PRINT "AI rolled a "; di; "it's total accumulated now is"; accum
  31.                 IF i < 4 AND accum + AI < 100 THEN  '<<<<<<<<<<<<<<<<<<<<<<<<<EDIT
  32.                     PRINT "AI is rolling again."
  33.                     INPUT "press enter..."; wate$
  34.                     di = INT(RND * 6) + 1
  35.                 ELSE
  36.                     PRINT "AI is holding with"; accum; "added to it's score."
  37.                     INPUT "press enter..."; wate$
  38.                     AI = AI + accum
  39.                     EXIT FOR
  40.                 END IF
  41.             END IF
  42.         NEXT
  43.     END IF
  44. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"
  45.  

Oh, I see I should tell the AI not to roll again if it's got 100 points with accum.

I've only played with this for about 45 mins. anyone have ideas for improvements?
« Last Edit: October 17, 2018, 12:06:38 am by bplus »

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #1 on: October 17, 2018, 08:11:58 pm »
38 lines now (fits completely in IDE window), not a single :
Code: QB64: [Select]
  1. _TITLE "Pig 1 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     turn = (turn + 1) MOD 2
  4.     IF turn THEN Who$ = "Player" ELSE Who$ = "AI"
  5.     PRINT "Player =" + STR$(player) + "  AI =" + STR$(AI) + CHR$(10)
  6.     accum = 0
  7.     FOR i = 1 TO 100
  8.         di = INT(RND * 6) + 1
  9.         IF di = 1 THEN
  10.             PRINT Who$ + " rolled a 1, the turn is over, press enter...";
  11.             INPUT "", wate$
  12.             EXIT FOR
  13.         ELSE
  14.             accum = accum + di
  15.             PRINT Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum)
  16.             IF turn THEN
  17.                 INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  18.                 IF choice$ <> "r" THEN player = player + accum
  19.                 IF choice$ <> "r" THEN EXIT FOR
  20.             ELSE
  21.                 IF i < 3 AND accum + AI < 100 THEN
  22.                     PRINT "AI is rolling again,";
  23.                     INPUT " press enter...", wate$
  24.                 ELSE
  25.                     PRINT "AI is holding with"; accum; "added to it's score,";
  26.                     INPUT " press enter...", wate$
  27.                     AI = AI + accum
  28.                     EXIT FOR
  29.                 END IF
  30.             END IF
  31.         END IF
  32.         PRINT
  33.     NEXT
  34.     PRINT
  35. PRINT "Player =" + STR$(player) + "  AI =" + STR$(AI)
  36. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"
  37.  

;-)) Yes, I used a FOR loop to save from having to use an i = i+1 line!

EDIT 2x's found 2 more lines to cut.
« Last Edit: October 17, 2018, 08:29:12 pm by bplus »

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #2 on: October 18, 2018, 08:23:18 pm »
Update 35 lines now.

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Pig
« Reply #3 on: October 18, 2018, 08:33:04 pm »
Update 35 lines now.

Line Count reduction -- from:

PRINT "AI is rolling again,";
                    INPUT " press enter...", wate$

to:

INPUT "AI is rolling again, press enter...", wate$



https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #4 on: October 18, 2018, 08:48:29 pm »
Hi Steve,

I think you are looking at the code in OP, with your suggestion.

I removed duplicate code sections with who$ variable.

I wish I could use INPUT like PRINT with variable(s) in prompt. I could cut more lines.

Here is update at 35 lines to check ideas out.
Code: QB64: [Select]
  1. _TITLE "Pig 2 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     turn = (turn + 1) MOD 2
  4.     IF turn THEN Who$ = "Player" ELSE Who$ = "AI"
  5.     accum = 0
  6.     FOR i = 1 TO 100
  7.         di = INT(RND * 6) + 1
  8.         IF di = 1 THEN
  9.             PRINT CHR$(10) + Who$ + " rolled a 1, the turn is over, press enter...";
  10.             INPUT "", wate$
  11.             EXIT FOR
  12.         ELSE
  13.             accum = accum + di
  14.             PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum)
  15.             IF turn THEN
  16.                 INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  17.                 IF choice$ <> "r" THEN player = player + accum
  18.                 IF choice$ <> "r" THEN EXIT FOR
  19.             ELSE
  20.                 IF i < 3 AND accum + AI < 100 THEN
  21.                     PRINT "AI is rolling again,";
  22.                     INPUT " press enter... ", wate$
  23.                 ELSE
  24.                     AI = AI + accum
  25.                     PRINT "AI is holding with"; accum; "added to it's score,";
  26.                     INPUT " press enter...", wate$
  27.                     EXIT FOR
  28.                 END IF
  29.             END IF
  30.         END IF
  31.     NEXT
  32.     PRINT CHR$(10) + "Player =" + STR$(player) + "  AI =" + STR$(AI)
  33. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"
  34.  

I am eyeing _Title and Randomize, nah... not desparate yet, maybe if I get to 20's.

It is not a bad game, I am liking it better than 21!

Oh hey just got an idea!
« Last Edit: October 18, 2018, 08:54:40 pm by bplus »

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #5 on: October 18, 2018, 09:01:54 pm »
34 lines:
Code: QB64: [Select]
  1. _TITLE "Pig 3 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     IF Who$ <> "Player" THEN Who$ = "Player" ELSE Who$ = "AI"
  4.     accum = 0
  5.     FOR i = 1 TO 100
  6.         di = INT(RND * 6) + 1
  7.         IF di = 1 THEN
  8.             PRINT CHR$(10) + Who$ + " rolled a 1, the turn is over, press enter...";
  9.             INPUT "", wate$
  10.             EXIT FOR
  11.         ELSE
  12.             accum = accum + di
  13.             PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum)
  14.             IF Who$ = "Player" THEN
  15.                 INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  16.                 IF choice$ <> "r" THEN player = player + accum
  17.                 IF choice$ <> "r" THEN EXIT FOR
  18.             ELSE
  19.                 IF i < 3 AND accum + AI < 100 THEN
  20.                     PRINT "AI is rolling again,";
  21.                     INPUT " press enter... ", wate$
  22.                 ELSE
  23.                     AI = AI + accum
  24.                     PRINT "AI is holding with"; accum; "added to it's score,";
  25.                     INPUT " press enter...", wate$
  26.                     EXIT FOR
  27.                 END IF
  28.             END IF
  29.         END IF
  30.     NEXT
  31.     PRINT CHR$(10) + "Player =" + STR$(player) + "  AI =" + STR$(AI)
  32. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #6 on: October 18, 2018, 09:05:30 pm »
Oh I see it now! Sorry Steve you are right!
33 lines:
Code: QB64: [Select]
  1. _TITLE "Pig 3 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     IF Who$ <> "Player" THEN Who$ = "Player" ELSE Who$ = "AI"
  4.     accum = 0
  5.     FOR i = 1 TO 100
  6.         di = INT(RND * 6) + 1
  7.         IF di = 1 THEN
  8.             PRINT CHR$(10) + Who$ + " rolled a 1, the turn is over, press enter...";
  9.             INPUT "", wate$
  10.             EXIT FOR
  11.         ELSE
  12.             accum = accum + di
  13.             PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum)
  14.             IF Who$ = "Player" THEN
  15.                 INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  16.                 IF choice$ <> "r" THEN player = player + accum
  17.                 IF choice$ <> "r" THEN EXIT FOR
  18.             ELSE
  19.                 IF i < 3 AND accum + AI < 100 THEN
  20.                     INPUT "AI is rolling again, press enter... ", wate$
  21.                 ELSE
  22.                     AI = AI + accum
  23.                     PRINT "AI is holding with"; accum; "added to it's score,";
  24.                     INPUT " press enter...", wate$
  25.                     EXIT FOR
  26.                 END IF
  27.             END IF
  28.         END IF
  29.     NEXT
  30.     PRINT CHR$(10) + "Player =" + STR$(player) + "  AI =" + STR$(AI)
  31. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"
  32.  
EDIT: sorry I pasted wrong update.

Thanks Steve!!!
« Last Edit: October 18, 2018, 09:16:22 pm by bplus »

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #7 on: October 18, 2018, 09:39:29 pm »
Oh heck, do it again in next block, there is no real loss of information reporting:
Code: QB64: [Select]
  1. _TITLE "Pig 3 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     IF Who$ <> "Player" THEN Who$ = "Player" ELSE Who$ = "AI"
  4.     accum = 0
  5.     FOR i = 1 TO 100
  6.         di = INT(RND * 6) + 1
  7.         IF di = 1 THEN
  8.             PRINT CHR$(10) + Who$ + " rolled a 1, the turn is over, press enter...";
  9.             INPUT "", wate$
  10.             EXIT FOR
  11.         ELSE
  12.             accum = accum + di
  13.             PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum)
  14.             IF Who$ = "Player" THEN
  15.                 INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  16.                 IF choice$ <> "r" THEN player = player + accum
  17.                 IF choice$ <> "r" THEN EXIT FOR
  18.             ELSE
  19.                 IF i < 3 AND accum + AI < 100 THEN
  20.                     INPUT "AI is rolling again, press enter... ", wate$
  21.                 ELSE
  22.                     AI = AI + accum
  23.                     INPUT "AI is holding so accumulated amount added it's score, press enter", wate$
  24.                     EXIT FOR
  25.                 END IF
  26.             END IF
  27.         END IF
  28.     NEXT
  29.     PRINT CHR$(10) + "Player =" + STR$(player) + "  AI =" + STR$(AI)
  30. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"
  31.  

32 lines, thanks again Steve.
« Last Edit: October 18, 2018, 09:43:27 pm by bplus »

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Pig
« Reply #8 on: October 18, 2018, 09:59:52 pm »
Let's reverse those numbers -- 23 Lines:

Code: QB64: [Select]
  1. _TITLE "Pig 3 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     IF Who$ <> "Player" THEN Who$ = "Player" ELSE Who$ = "AI"
  4.     accum = 0
  5.     FOR i = 1 TO 100
  6.         di = INT(RND * 6) + 1
  7.         IF di = 1 THEN PRINT CHR$(10) + Who$ + " rolled a 1, the turn is over, press enter...";
  8.         IF di = 1 THEN INPUT "", wate$
  9.         IF di = 1 THEN EXIT FOR
  10.         accum = accum + di
  11.         PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum)
  12.         IF Who$ = "Player" THEN INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  13.         IF Who$ = "Player" THEN IF choice$ <> "r" THEN player = player + accum
  14.         IF Who$ = "Player" THEN IF choice$ <> "r" THEN EXIT FOR
  15.         IF Who$ <> "Player" AND i < 3 AND accum + AI < 100 THEN INPUT "AI is rolling again, press enter... ", wate$
  16.         IF Who$ <> "Player" AND i >= 3 OR accum + AI >= 100 THEN AI = AI + accum
  17.         IF Who$ <> "Player" AND i >= 3 OR accum + AI >= 100 THEN INPUT "AI is holding so accumulated amount added it's score, press enter", wate$
  18.         IF Who$ <> "Player" AND i >= 3 OR accum + AI >= 100 THEN EXIT FOR
  19.     NEXT
  20.     PRINT CHR$(10) + "Player =" + STR$(player) + "  AI =" + STR$(AI)
  21. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #9 on: October 18, 2018, 10:15:19 pm »
That is amazing but I've noticed a bug while player is rolling suddenly the AI is holding ...???

and now this!!! ? (Dang! I thought I had a 2nd shot of buggy code giving all points racked up by Player to AI.)
pig bug.PNG
* pig bug.PNG (Filesize: 19.24 KB, Dimensions: 650x436, Views: 302)
« Last Edit: October 18, 2018, 10:48:10 pm by bplus »

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Pig
« Reply #10 on: October 18, 2018, 10:20:44 pm »
Give me a sec and I'll see what I missed with the IF statements...  :P
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #11 on: October 18, 2018, 10:22:57 pm »
I am sure there is big savings here!

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Pig
« Reply #12 on: October 18, 2018, 10:28:29 pm »
Try this:

Code: QB64: [Select]
  1. _TITLE "Pig 3 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     IF Who$ <> "Player" THEN Who$ = "Player" ELSE Who$ = "AI"
  4.     accum = 0
  5.     FOR i = 1 TO 100
  6.         di = INT(RND * 6) + 1
  7.         IF di = 1 THEN PRINT CHR$(10) + Who$ + " rolled a 1, the turn is over, press enter...";
  8.         IF di = 1 THEN INPUT "", wate$
  9.         IF di = 1 THEN EXIT FOR
  10.         accum = accum + di
  11.         PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum)
  12.         IF Who$ = "Player" THEN INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  13.         IF Who$ = "Player" THEN IF choice$ <> "r" THEN player = player + accum
  14.         IF Who$ = "Player" THEN IF choice$ <> "r" THEN EXIT FOR
  15.         IF Who$ <> "Player" AND (i < 3 AND accum + AI < 100) THEN INPUT "AI is rolling again, press enter... ", wate$
  16.         IF Who$ <> "Player" AND (i >= 3 OR accum + AI >= 100) THEN AI = AI + accum
  17.         IF Who$ <> "Player" AND (i >= 3 OR accum + AI >= 100) THEN INPUT "AI is holding so accumulated amount added it's score, press enter", wate$
  18.         IF Who$ <> "Player" AND (i >= 3 OR accum + AI >= 100) THEN EXIT FOR
  19.     NEXT
  20.     PRINT CHR$(10) + "Player =" + STR$(player) + "  AI =" + STR$(AI)
  21. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"

I'm thinking the glitch was with the binary operators...
IF this AND that OR otherthing THEN....  Anytime otherthing was valid, it made the statement valid...

Whereas:
IF this AND (that OR otherthing) THEN...  Now one of the secondary options have to be valid, while the primary option is valid as well.  It's not just saying "IF the third choice is good, then we're good."  Now it's "IF the first choice is good AND (either the second or third choice are good) THEN...
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Pig
« Reply #13 on: October 18, 2018, 10:43:24 pm »
Looking good! Nice job tracking down bug!

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Pig
« Reply #14 on: October 18, 2018, 10:50:10 pm »
And a little reworking of the PRINT statements and INPUT, reduces one more line:

Code: QB64: [Select]
  1. _TITLE "Pig 3 (Rosetta task)" ' attempt to pare down (no :'s) first version B+ started 2018-10-17
  2. WHILE player < 100 AND AI < 100 'pig from Rosetta  B+ started 2018-10-16
  3.     IF Who$ <> "Player" THEN Who$ = "Player" ELSE Who$ = "AI"
  4.     accum = 0
  5.     FOR i = 1 TO 100
  6.         di = INT(RND * 6) + 1
  7.         IF di = 1 THEN accum = 0 ELSE accum = accum + di
  8.         IF di = 1 THEN PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + CHR$(10) ELSE PRINT CHR$(10) + Who$ + " rolled a" + RTRIM$(STR$(di)) + ", the accumulated total is" + STR$(accum) + CHR$(10);
  9.         IF di = 1 THEN INPUT "The turn is over, press enter...", wate$
  10.         IF di = 1 THEN EXIT FOR
  11.         IF Who$ = "Player" THEN INPUT "Do you want to (r)oll again or (h)old, Enter r or h"; choice$
  12.         IF Who$ = "Player" AND choice$ <> "r" THEN player = player + accum
  13.         IF Who$ = "Player" AND choice$ <> "r" THEN EXIT FOR
  14.         IF Who$ <> "Player" AND (i < 3 AND accum + AI < 100) THEN INPUT "AI is rolling again, press enter... ", wate$
  15.         IF Who$ <> "Player" AND (i >= 3 OR accum + AI >= 100) THEN AI = AI + accum
  16.         IF Who$ <> "Player" AND (i >= 3 OR accum + AI >= 100) THEN INPUT "AI is holding so accumulated amount added it's score, press enter", wate$
  17.         IF Who$ <> "Player" AND (i >= 3 OR accum + AI >= 100) THEN EXIT FOR
  18.     NEXT
  19.     PRINT CHR$(10) + "Player =" + STR$(player) + "  AI =" + STR$(AI)
  20. IF player > AI THEN PRINT "Player wins!" ELSE PRINT "AI wins!"

And, I don't think I see anything else which I can chip away, to reduce line count any further.  22 Lines is where I say, "That's it for Steve!'  ;D
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!