Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Option Explicit
- Dim Instructions As String
- Dim strCard As String
- Dim strRightCards As String
- Dim strLeftCards As String
- Dim intNumberCardsDeck As Integer
- Dim intRandomNumber As Integer
- Dim counter As Integer
- Dim StrDeck As String
- Dim PlayerCard1 As String
- Dim PlayerCard2 As String
- Dim PlayerCard3 As String
- Dim PlayerCard4 As String
- Dim PlayerCard5 As String
- Dim PlayerDeck As String
- Dim ComputerDeck As String
- Dim Clovers As String
- Dim Diamonds As String
- Dim Spades As String
- Dim Hearts As String
- Dim Trump As String
- Dim TrumpSuit As String
- Dim PlayerPoints As Integer
- Dim ComputerPoints As Integer
- Dim ComputerPlayedCard As String
- Dim PlayerPlayedCard As String
- Dim Points As Integer
- Private Sub cmdExit_Click()
- Unload Me
- End Sub
- Private Sub cmdInstructions_Click()
- lblTitle.Visible = True
- Instructions = MsgBox("You will be dealt 5 cards with suits. One card will be shown as the trump suit. The trick will be played in turns. The highest card at the end of the trick wins. Each trick is worth 15 points. First person to 45 points wins hence the name of the game.", vbOKOnly, Instructions)
- End Sub
- Private Sub cmdPlay_Click()
- lblPlayerCards.Visible = True
- Clovers = "c"
- Diamonds = "d"
- Hearts = "h"
- Spades = "s"
- PlayerDeck = Mid(StrDeck, 1, 10)
- ComputerDeck = Mid(StrDeck, 11, 10)
- Debug.Print PlayerDeck
- Trump = Mid(StrDeck, 50, 2)
- lblTrump.Caption = Trump
- lblComputerCards = ComputerDeck
- If InStr(1, Trump, Clovers) > 0 Then
- TrumpSuit = "Clovers"
- ElseIf InStr(1, Trump, Hearts) > 0 Then
- TrumpSuit = "Hearts"
- ElseIf InStr(1, Trump, Diamonds) > 0 Then
- TrumpSuit = "Diamonds"
- Else: TrumpSuit = "Spades"
- End If
- PlayerCard1 = Mid(PlayerDeck, 1, 2)
- PlayerCard2 = Mid(PlayerDeck, 3, 2)
- PlayerCard3 = Mid(PlayerDeck, 5, 2)
- PlayerCard4 = Mid(PlayerDeck, 7, 2)
- PlayerCard5 = Mid(PlayerDeck, 9, 2)
- cmdPlayerCard1.Caption = PlayerCard1
- cmdPlayerCard2.Caption = PlayerCard2
- cmdPlayerCard3.Caption = PlayerCard3
- cmdPlayerCard4.Caption = PlayerCard4
- cmdPlayerCard5.Caption = PlayerCard5
- cmdPlayerCard1.Visible = True
- cmdPlayerCard2.Visible = True
- cmdPlayerCard3.Visible = True
- cmdPlayerCard4.Visible = True
- cmdPlayerCard5.Visible = True
- lblTrumpSuit = TrumpSuit
- If cmdPlayerCard1.Caption = "" And cmdPlayerCard2.Caption = "" And cmdPlayerCard3.Caption = "" And cmdPlayerCard4.Caption = "" And cmdPlayerCard5.Caption = "" Then
- For counter = 1 To 200
- intRandomNumber = Int((52 - 1 + 1) * Rnd + 1)
- intRandomNumber = (intRandomNumber * 2) - 1
- 'Take the card at position intRandomNumber and move it to the bottom of deck
- 'Do move the card if it's the card at bottom of the deck
- If intRandomNumber <> 52 Then
- strLeftCards = Left(StrDeck, intRandomNumber - 1)
- strCard = Mid(StrDeck, intRandomNumber, 2)
- strRightCards = Right(StrDeck, 104 - intRandomNumber - 1)
- 'Put random card at the bottom of deck
- StrDeck = strLeftCards + strRightCards + strCard
- End If
- Next counter
- lblTrump.Caption = ""
- PlayerDeck = Mid(StrDeck, 1, 10)
- ComputerDeck = Mid(StrDeck, 11, 10)
- Trump = Mid(StrDeck, 50, 2)
- Debug.Print PlayerDeck
- lblTrump.Caption = Trump
- lblComputerCards = ComputerDeck
- PlayerCard1 = Mid(PlayerDeck, 1, 2)
- PlayerCard2 = Mid(PlayerDeck, 3, 2)
- PlayerCard3 = Mid(PlayerDeck, 5, 2)
- PlayerCard4 = Mid(PlayerDeck, 7, 2)
- PlayerCard5 = Mid(PlayerDeck, 9, 2)
- cmdPlayerCard1.Caption = PlayerCard1
- cmdPlayerCard2.Caption = PlayerCard2
- cmdPlayerCard3.Caption = PlayerCard3
- cmdPlayerCard4.Caption = PlayerCard4
- cmdPlayerCard5.Caption = PlayerCard5
- lblPlayerPlayedCard.Caption = ""
- lblComputerPlayedCard.Caption = ""
- If InStr(1, Trump, Clovers) > 0 Then
- TrumpSuit = "Clovers"
- ElseIf InStr(1, Trump, Hearts) > 0 Then
- TrumpSuit = "Hearts"
- ElseIf InStr(1, Trump, Diamonds) > 0 Then
- TrumpSuit = "Diamonds"
- Else: TrumpSuit = "Spades"
- End If
- lblTrumpSuit = TrumpSuit
- lblResult = ""
- End If
- End Sub
- Private Sub cmdPlayerCard1_Click()
- ComputerPlayedCard = Mid(ComputerDeck, Int((8 - 1 + 1) * Rnd + 1), 2)
- PlayerPlayedCard = PlayerCard1
- lblPlayerPlayedCard.Caption = PlayerPlayedCard
- lblComputerPlayedCard.Caption = ComputerPlayedCard
- cmdPlayerCard1.Caption = ""
- For PlayerPoints = 1 To 45
- If InStr(1, Clovers, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Clovers) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Clovers, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Clovers) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Hearts) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Hearts) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Diamonds) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Diamonds) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Spades) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Spades) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf PlayerPoints = 45 Then
- lblResult.Caption = "Congratulations! You Win!"
- ElseIf ComputerPoints = 45 Then
- lblResult.Caption = "Aww, better luck next time!"
- Else: lblResult.Caption = ""
- End If
- Next
- End Sub
- Private Sub cmdPlayerCard2_Click()
- ComputerPlayedCard = Mid(ComputerDeck, Int((8 - 1 + 1) * Rnd + 1), 2)
- PlayerPlayedCard = PlayerCard2
- lblPlayerPlayedCard.Caption = PlayerPlayedCard
- lblComputerPlayedCard.Caption = ComputerPlayedCard
- cmdPlayerCard2.Caption = ""
- For Points = 1 To 45
- If InStr(1, Clovers, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Clovers) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Clovers, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Clovers) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Hearts) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Hearts) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Diamonds) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Diamonds) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Spades) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Spades) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf PlayerPoints = 45 Then
- lblResult.Caption = "Congratulations! You Win!"
- ElseIf ComputerPoints = 45 Then
- lblResult.Caption = "Aww, better luck next time!"
- Else: lblResult.Caption = ""
- End If
- Next
- End Sub
- Private Sub cmdPlayerCard3_Click()
- ComputerPlayedCard = Mid(ComputerDeck, Int((8 - 1 + 1) * Rnd + 1), 2)
- PlayerPlayedCard = PlayerCard3
- lblPlayerPlayedCard.Caption = PlayerPlayedCard
- lblComputerPlayedCard.Caption = ComputerPlayedCard
- cmdPlayerCard3.Caption = ""
- For Points = 1 To 45
- If InStr(1, Clovers, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Clovers) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Clovers, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Clovers) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Hearts) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Hearts) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Diamonds) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Diamonds) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Spades) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Spades) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf PlayerPoints = 45 Then
- lblResult.Caption = "Congratulations! You Win!"
- ElseIf ComputerPoints = 45 Then
- lblResult.Caption = "Aww, better luck next time!"
- Else: lblResult.Caption = ""
- End If
- Next
- End Sub
- Private Sub cmdPlayerCard4_Click()
- ComputerPlayedCard = Mid(ComputerDeck, Int((8 - 1 + 1) * Rnd + 1), 2)
- PlayerPlayedCard = PlayerCard4
- lblPlayerPlayedCard.Caption = PlayerPlayedCard
- lblComputerPlayedCard.Caption = ComputerPlayedCard
- cmdPlayerCard4.Caption = ""
- For Points = 1 To 45
- If InStr(1, Clovers, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Clovers) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Clovers, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Clovers) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Hearts) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Hearts) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Diamonds) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Diamonds) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Spades) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Spades) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf PlayerPoints = 45 Then
- lblResult.Caption = "Congratulations! You Win!"
- ElseIf ComputerPoints = 45 Then
- lblResult.Caption = "Aww, better luck next time!"
- Else: lblResult.Caption = ""
- End If
- Next
- End Sub
- Private Sub cmdPlayerCard5_Click()
- ComputerPlayedCard = Mid(ComputerDeck, Int((8 - 1 + 1) * Rnd + 1), 2)
- PlayerPlayedCard = PlayerCard5
- lblPlayerPlayedCard.Caption = PlayerPlayedCard
- lblComputerPlayedCard.Caption = ComputerPlayedCard
- cmdPlayerCard5.Caption = ""
- For Points = 1 To 45
- If InStr(1, Clovers, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Clovers) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Clovers, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Clovers) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Hearts) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Hearts, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Hearts) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Diamonds) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Diamonds, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Diamonds) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) > 0 And InStr(1, PlayerPlayedCard, Spades) = 0 Then
- lblResult.Caption = "Computer Wins"
- ComputerPoints = ComputerPoints + 15
- ElseIf InStr(1, Spades, ComputerPlayedCard) = 0 And InStr(1, PlayerPlayedCard, Spades) > 0 Then
- lblResult.Caption = "Player Wins"
- PlayerPoints = PlayerPoints + 15
- ElseIf PlayerPoints = 45 Then
- lblResult.Caption = "Congratulations! You Win!"
- ElseIf ComputerPoints = 45 Then
- lblResult.Caption = "Aww, better luck next time!"
- Else: lblResult.Caption = ""
- End If
- Next
- End Sub
- Private Sub cmdReset_Click()
- For counter = 1 To 200
- intRandomNumber = Int((52 - 1 + 1) * Rnd + 1)
- intRandomNumber = (intRandomNumber * 2) - 1
- 'Take the card at position intRandomNumber and move it to the bottom of deck
- 'Do move the card if it's the card at bottom of the deck
- If intRandomNumber <> 52 Then
- strLeftCards = Left(StrDeck, intRandomNumber - 1)
- strCard = Mid(StrDeck, intRandomNumber, 2)
- strRightCards = Right(StrDeck, 104 - intRandomNumber - 1)
- 'Put random card at the bottom of deck
- StrDeck = strLeftCards + strRightCards + strCard
- End If
- Next counter
- lblTrump.Caption = ""
- PlayerDeck = Mid(StrDeck, 1, 10)
- ComputerDeck = Mid(StrDeck, 11, 10)
- Trump = Mid(StrDeck, 50, 2)
- Debug.Print PlayerDeck
- lblTrump.Caption = Trump
- lblComputerCards = ComputerDeck
- PlayerCard1 = Mid(PlayerDeck, 1, 2)
- PlayerCard2 = Mid(PlayerDeck, 3, 2)
- PlayerCard3 = Mid(PlayerDeck, 5, 2)
- PlayerCard4 = Mid(PlayerDeck, 7, 2)
- PlayerCard5 = Mid(PlayerDeck, 9, 2)
- cmdPlayerCard1.Caption = PlayerCard1
- cmdPlayerCard2.Caption = PlayerCard2
- cmdPlayerCard3.Caption = PlayerCard3
- cmdPlayerCard4.Caption = PlayerCard4
- cmdPlayerCard5.Caption = PlayerCard5
- lblPlayerPlayedCard.Caption = ""
- lblComputerPlayedCard.Caption = ""
- If InStr(1, Trump, Clovers) > 0 Then
- TrumpSuit = "Clovers"
- ElseIf InStr(1, Trump, Hearts) > 0 Then
- TrumpSuit = "Hearts"
- ElseIf InStr(1, Trump, Diamonds) > 0 Then
- TrumpSuit = "Diamonds"
- Else: TrumpSuit = "Spades"
- End If
- lblTrumpSuit = TrumpSuit
- lblResult = ""
- End Sub
- Private Sub Form_Load()
- Randomize
- lblPlayerCards.Visible = False
- cmdPlayerCard1.Visible = False
- cmdPlayerCard2.Visible = False
- cmdPlayerCard3.Visible = False
- cmdPlayerCard4.Visible = False
- cmdPlayerCard5.Visible = False
- 'Unshuffled deck. Note that I used A=10, B=Jack, C=Queen, D=King, E=Ace
- 'to identify suits h=hearts, d=Diamonds, c=Clubs, s=Spades
- StrDeck = "2h3h4h5h6h7h8h9hAhBhChDhEh2d3d4d5d6d7d8d9dAdBdCdDdEd2c3c4c5c6c7c8c9cAcBcCcDcEc2s3s4s5s6s7s8s9sAsBsCsDsEs"
- Debug.Print StrDeck
- 'call the subroutine to shuffle the deck
- StrDeck = ShuffleWithSuits(StrDeck)
- Debug.Print StrDeck
- Timer1.Enabled = True
- cmdPlay.Visible = False
- cmdExit.Visible = False
- cmdInstructions.Visible = False
- cmdReset.Visible = False
- End Sub
- ' This function requires you to pass in a string of varying lengths and shuffles the characters along with their suit in
- ' that string and returns them.
- Private Function ShuffleWithSuits(StrDeck As String) As String
- 'Variable Table-------------------------------------------
- ' strCard - String - the single, randomly selected card that gets shuffled to the back
- ' strRightCards - String - all cards to the right of strCard
- ' strLeftCards - String - all cards to the left of strCard
- ' intNumberCardsDeck - integer - the number of cards in the deck to shuffle
- ' counter - integer - to be used as a counter in a counted loop
- 'Determine the number cards in the deck
- intNumberCardsDeck = Len(StrDeck) / 2
- 'Shutffle cards the cards by randomly selecting a card and moving it to the back of the deck
- For counter = 1 To 200
- intRandomNumber = Int((52 - 1 + 1) * Rnd + 1)
- intRandomNumber = (intRandomNumber * 2) - 1
- 'Take the card at position intRandomNumber and move it to the bottom of deck
- 'Do move the card if it's the card at bottom of the deck
- If intRandomNumber <> 52 Then
- strLeftCards = Left(StrDeck, intRandomNumber - 1)
- strCard = Mid(StrDeck, intRandomNumber, 2)
- strRightCards = Right(StrDeck, 104 - intRandomNumber - 1) 'not sure if it should be -intRandomNubmer
- 'Put random card at the bottom of deck
- StrDeck = strLeftCards + strRightCards + strCard
- End If
- Next counter
- ' the Function is complete, returns the value stored in StrDeck to the function call
- ShuffleWithSuits = StrDeck
- End Function
- Private Sub mnuFileClose_Click()
- Unload Me
- End Sub
- Private Sub mnuViewAbout_Click()
- MsgBox "Developed by Jamal Raja" & " Version 1.0.0"
- End Sub
- Private Sub Timer1_Timer()
- ProgressBar1.Value = ProgressBar1.Value + 5
- If (ProgressBar1.Value = ProgressBar1.Max) Then
- Timer1.Enabled = False
- ProgressBar1.Visible = False
- cmdPlay.Visible = True
- cmdExit.Visible = True
- cmdInstructions.Visible = True
- cmdReset.Visible = True
- End If
- End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement