Changeset ace7865 for redux


Ignore:
Timestamp:
06/25/22 11:30:19 (2 years ago)
Author:
anastasovv <simon@…>
Branches:
main
Children:
b13f93b
Parents:
9bd09b0
Message:

Finished Roulette

Location:
redux/reducers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • redux/reducers/playerSlice.js

    r9bd09b0 race7865  
    1919        timeToStart: 0,
    2020        players: [],
     21    },
     22    pokerGame: {
     23        status: '_1_waiting_for_players',
     24        turnIdx: 0,
     25        playerCards: ['c4', 'c2'],
     26        cardsOnTable: ['c3', 'c1', 'c5'],
     27        players: [
     28            {
     29                status: 'disconnected',
     30                displayName: 'Pero',
     31                betAmount: 33,
     32            },
     33            {
     34                status: 'playing',
     35                displayName: 'Johnny',
     36                betAmount: 29,
     37            },
     38            {
     39                status: 'onTurn',
     40                displayName: 'Waterlo',
     41                betAmount: 199,
     42            },
     43        ]
    2144    }
     45    // pokerGame: {
     46    //     status: '',
     47    //     turnIdx: 0,
     48    //     players: [],
     49    // }
    2250}
    2351
  • redux/reducers/styleSlice.js

    r9bd09b0 race7865  
    8383    // roulette
    8484    roulette: {
     85        COUNTDOWN_FROM: 30,
    8586        displays: {
    8687            betModal: false,
     
    9596            x: 0,
    9697            y: 0,
     98        },
     99        showCoin: false,
     100    },
     101    // poker
     102    poker: {
     103        displays: {
     104            raiseModal: false,
     105        },
     106        inputControls: {
     107            raise: {
     108                chosenCredits: 0,
     109            }
     110        },
     111        callAmount: 0,
     112        texts: {
     113            text1: 'A new card has been dealt!',
     114            text2: 'Player Pero\'s Turn (00:13)',
     115            text3: 'Pero has disconnected. They have 30 seconds to reconnect.'
    97116        }
    98117    }
Note: See TracChangeset for help on using the changeset viewer.