Beispiel #1
0
 private void Practice_NotifyPlayerOfReductionOfScoreBySentPoints(int points)
 {
     Practice_PlayerScore -= points;
     Practice_ScoreButtonAsLabel.SetTextInvoke(SCORE_TEXT, Practice_PlayerScore);
     Practice_StatusButtonAsLabel.SetTextInvoke(STATUS_TEXT__SCORE_REDUCED_TO_X, Practice_PlayerScore);
     1500.EmulateTimeDelay(!Admin_RealTimeResponse_ToolStripMenuItem.Checked);
 }
Beispiel #2
0
        private void AdvanceToPracticeTrustExchangeTask()
        {
            Practice_StatusButtonAsLabel.SetText(STATUS_TEXT__GIVE_1_OR_2_POINTS_TO_PLAYER2);
            Practice_ScoreButtonAsLabel.SetText(SCORE_TEXT, LogicEngine.TrustExchangeTask.PlayerScore);

            ShowTab(Practice_TrustExchangeTaskTab);
        }
Beispiel #3
0
        private void Practice_NotifyPlayerOfPersonaResponse()
        {
            int pointsBack = LogicEngine.TrustExchangePointsMultiplier * Practice_CurrentRoundRawPointResponse;

            Practice_ScoreButtonAsLabel.SetTextInvoke(SCORE_TEXT, Practice_PlayerScore + pointsBack);
            Practice_StatusButtonAsLabel.SetTextInvoke(STATUS_TEXT__PLAYER2_RESPONDED_WITH_X_POINTS, pointsBack);
            2500.EmulateTimeDelay(!Admin_RealTimeResponse_ToolStripMenuItem.Checked);
        }
Beispiel #4
0
 private void Practice_NotifyPlayerOfPersonaResponse()
 {
     Practice_ScoreButtonAsLabel.SetTextInvoke(SCORE_TEXT, Practice_PlayerScore + GetPracticeCurrentRoundCalculatedPointResponse());
     Practice_StatusButtonAsLabel.SetTextInvoke(STATUS_TEXT__PLAYER2_RESPONDED_WITH_X_POINTS, GetPracticeCurrentRoundCalculatedPointResponse());
     2500.EmulateTimeDelay(!Admin_RealTimeResponse_ToolStripMenuItem.Checked);
 }
Beispiel #5
0
 private void Practice_NotifyPlayerOfSendingPoints(int points)
 {
     Practice_ScoreButtonAsLabel.SetTextInvoke(SCORE_TEXT, Practice_PlayerScore);
     Practice_StatusButtonAsLabel.SetTextInvoke(STATUS_TEXT__SENDING_PLAYER2_X_POINTS, points);
     Practice_ProgressBar.StepInvoke(millisMin: 20, millisMax: 20, isEmulatingTimeDelay: !Admin_RealTimeResponse_ToolStripMenuItem.Checked);
 }