Example #1
0
        " G XXX       game with XXX you move first\n",\
        " L           list who is logged on \n",\
        " q           quit \n",\
        " W           wait for a challenge "
        
    cmd = raw_input(" command:")
    client.send(cmd)
     
    
    
    if len(cmd) == 0:
        continue

    if cmd[0] == 'W':
        my_col=client.wait_for_game()
        state=client.play_a_game(my_col,board,get_human_move)
        brag(state,my_col)
        
    elif cmd[0] == 'g':
        mess=client.get_message()
        print mess
        if mess[0] == '!':
            my_col=c4board.opo[board.to_move]
            state=client.play_a_game(my_col,board,get_human_move)
            brag(state,my_col)
        
    elif cmd[0] == 'G':
        my_col= board.to_move
        state=client.play_a_game(my_col,board,get_human_move)
        brag(state,my_col)