aboutsummaryrefslogtreecommitdiff
path: root/client/src/Client.elm
blob: 23949d3f658116c123f07e53d00832fd6f927738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
port module Client exposing (main)

import Array exposing (Array)
import Browser
import Html.Attributes
import Html.Events
import Html exposing (Html)
import Json.Decode
import Json.Encode
import Messages exposing (BlackCard, WhiteCard, GameView)
import Url exposing (Url)

port webSocketIn : (String -> msg) -> Sub msg
port webSocketOut : String -> Cmd msg

type Msg
    = Ignore
    | Send
    | WebSocketIn String
    -- Name changes
    | ChangeMyName String
    | SubmitMyName
    -- Card selection
    | SelectWhiteCard WhiteCard
    | ProposeWhiteCards
    | AdminSkipProposals
    -- Voting
    | SelectVote Int
    | SubmitVote
    | AdminSkipVotes
    -- Tally
    | AdminConfirmTally

type alias Cards = {black : Array String, white : Array String}

type alias GameState =
    { room : Maybe String
    , cards : Cards
    , view : GameView
    , changeMyName : String
    , selectedWhiteCards : List WhiteCard
    , selectedVote : Maybe Int
    }

type Model
    = Error String
    | Connecting (Maybe String)
    | Game GameState

pluralize : Int -> String -> String -> String
pluralize x singular plural =
    String.fromInt x ++ " " ++ if x < 2 then singular else plural

viewPlayers : List Messages.PlayerView -> Html msg
viewPlayers players = Html.table [] <|
    Html.tr []
        [ Html.th [] []
        , Html.th [] []
        , Html.th
            [Html.Attributes.style "width" "100%"]
            [Html.text "Name"]
        , Html.th [] [Html.text "Score"]
        ] ::
    List.map (\player -> Html.tr []
        [ Html.td [] [Html.text <| if player.admin then " 👑" else ""]
        , Html.td [] [Html.text <| if player.ready then " ✅" else " ⌛"]
        , Html.td [] [Html.text player.name]
        , Html.td
            [Html.Attributes.style "text-align" "right"]
            [Html.text <| String.fromInt player.points]
        ])
        (List.sortBy (\player -> (-player.points, player.name)) players)

view : Model -> Browser.Document Msg
view model = case model of
    Error str ->
        { title = "Untitled PL Card Game: Error"
        , body =
            [ Html.h1 [] [Html.text "Error"]
            , Html.p [] [Html.text str]
            ]
        }
    Connecting roomId ->
        { title = "Untitled PL Card Game: Connecting"
        , body =
            [ Html.h1 []
                [ Html.text <|
                    "Connecting to room " ++ Maybe.withDefault "??" roomId
                ]
            ]
        }
    Game game ->
        { title = case game.room of
            Nothing -> "Untitled PL Card Game"
            Just room -> room ++ " | Untitled PL Card Game"
        , body =
            [ Html.div [Html.Attributes.class "main"] <|
                [ Html.div [Html.Attributes.class "table"]
                    [Html.h1 [] [Html.text "Table"]
                    , viewTable game
                    ]
                , Html.h1 [] [Html.text "Your cards"]
                ]
                ++
                (List.map
                    (\c -> whiteCard game.cards c (cardIsSelected game c))
                    game.view.hand)
            , Html.div [Html.Attributes.class "players"]
                [ Html.h1 [] [Html.text "Players"]
                , viewPlayers <| game.view.me :: game.view.players
                , Html.form
                    [ Html.Attributes.class "change-name"
                    , Html.Attributes.action ""
                    , Html.Events.onSubmit SubmitMyName
                    ]
                    [ Html.input
                        [ Html.Attributes.value game.changeMyName
                        , Html.Events.onInput ChangeMyName
                        ]
                        []
                    , Html.br [] []
                    , Html.button
                        [ Html.Attributes.type_ "submit"
                        , Html.Attributes.disabled <|
                            game.view.me.name == game.changeMyName ||
                            String.length game.changeMyName > 32
                        ]
                        [Html.text "Change my name"]
                    ]
                ]
            ]
        }

tableBlackCard : GameState -> Maybe BlackCard
tableBlackCard game = case game.view.table of
    Messages.Proposing b _ -> Just b
    Messages.Voting b _ _ _ -> Just b
    Messages.Tally b _ -> Just b

selectedWhiteCards : GameState -> List WhiteCard
selectedWhiteCards game = case game.view.table of
    Messages.Proposing _ (x :: xs) -> x :: xs
    _ -> game.selectedWhiteCards

cardIsSelected : GameState -> WhiteCard -> Bool
cardIsSelected game card = List.member card <| selectedWhiteCards game

viewTable : GameState -> Html Msg
viewTable game = case game.view.table of
    Messages.Proposing c my -> Html.div [] <|
        [ Html.p []
            [ Html.text <|
                if List.length my > 0 then
                    "Waiting for other players..."
                else if List.length (selectedWhiteCards game) == blackCardBlanks game.cards c then
                    "Click 'Propose' to submit your proposal."
                else
                    "Select " ++
                    pluralize (blackCardBlanks game.cards c) "card" "cards" ++
                    " from your hand."
            ]
        , blackCard [] game.cards c <| selectedWhiteCards game
        , Html.br [] []
        , Html.button
            [ Html.Attributes.disabled <|
                List.length my > 0 ||
                List.length (selectedWhiteCards game) /=
                    blackCardBlanks game.cards c
            , Html.Events.onClick ProposeWhiteCards
            ]
            [Html.text "Propose"]
        ] ++
        ifAdmin game.view
            [ Html.br [] []
            , Html.button
                [Html.Events.onClick AdminSkipProposals]
                [Html.text "Skip remaining players"]
            ]
    Messages.Voting black proposals myProposal myVote -> Html.div [] <|
        [ Html.p []
            [ Html.text <| case myVote of
                Just _ -> "Waiting for other players..."
                Nothing -> case game.selectedVote of
                    Nothing -> "Vote for the funniest combination."
                    Just _ -> "Click 'Vote' to submit your vote."
            ]
        ] ++
        List.indexedMap (\i proposal ->
            let attrs =
                    if Just i == myProposal then
                        [Html.Attributes.class "mine"]
                    else if Just i == myVote || Just i == game.selectedVote then
                        [Html.Attributes.class "voted"]
                    else
                        [ Html.Events.onClick <| SelectVote i
                        , Html.Attributes.class "votable"
                        ] in
            blackCard attrs game.cards black proposal) proposals ++
        [ Html.br [] []
        , Html.button
            [ Html.Attributes.disabled <|
                (case myVote of
                     Just _ -> True
                     Nothing -> case game.selectedVote of
                         Just _ -> False
                         Nothing -> True)
            , Html.Events.onClick SubmitVote
            ]
            [Html.text "Vote"]
        ] ++
        ifAdmin game.view
            [ Html.br [] []
            , Html.button
                [Html.Events.onClick AdminSkipVotes]
                [Html.text "Skip remaining players"]
            ]

    Messages.Tally black results -> Html.div [] <|
        [Html.p [] [Html.text "Waiting for admin to start next round..."]] ++
        List.map (\voted ->
            if List.length voted.winners <= 0 then
                blackCard [] game.cards black voted.proposal
            else
                Html.div [] <|
                [ blackCard [Html.Attributes.class "winner"]
                    game.cards black voted.proposal
                , Html.p [Html.Attributes.class "authors"]
                    [ Html.text <|
                        String.join ", " voted.winners ++ " wins with " ++
                        pluralize voted.score "vote" "votes"
                    ]
                ])
            results ++
        ifAdmin game.view
            [ Html.br [] []
            , Html.button
                [Html.Events.onClick AdminConfirmTally]
                [Html.text "Next round"]
            ]

ifAdmin : GameView -> List (Html a) -> List (Html a)
ifAdmin gameView html = if gameView.me.admin then html else []

intersperseWith : List a -> a -> List a -> List a
intersperseWith values def list = case list of
    [] -> []
    x :: [] -> x :: []
    x :: y :: t -> case values of
        [] -> x :: def :: intersperseWith values def (y :: t)
        v :: vs -> x :: v :: intersperseWith vs def (y :: t)

blackCardContent : Cards -> BlackCard -> List String
blackCardContent cards (Messages.BlackCard idx) =
    String.split "_" <| Maybe.withDefault "" <| Array.get idx cards.black

blackCardBlanks : Cards -> BlackCard -> Int
blackCardBlanks cards c = List.length (blackCardContent cards c) - 1

capitalizeFirst : List String -> List String
capitalizeFirst = List.indexedMap <| \i x -> if i == 0
    then String.toUpper (String.left 1 x) ++ String.dropLeft 1 x
    else x

blackCard
    : List (Html.Attribute a) -> Cards -> BlackCard -> List WhiteCard
    -> Html a
blackCard attrs cards black whites =
    let blackParts = blackCardContent cards black
        whiteParts = List.map (whiteCardContent cards) whites |>
            case blackParts of
                "" :: _ -> capitalizeFirst
                _ -> identity
        filled txt = Html.span [Html.Attributes.class "filled"] [Html.text txt]
        blank = Html.span [Html.Attributes.class "blank"] [] in
    Html.div
        (List.map Html.Attributes.class ["card", "black"] ++ attrs) <|
    intersperseWith (List.map filled whiteParts) blank <|
    List.map Html.text blackParts

whiteCardContent : Cards -> WhiteCard -> String
whiteCardContent cards (Messages.WhiteCard idx) =
    Maybe.withDefault "" <| Array.get idx cards.white

whiteCard : Cards -> WhiteCard -> Bool -> Html Msg
whiteCard cards c selected = Html.div
    [ Html.Attributes.class "card"
    , Html.Attributes.class "white"
    , Html.Attributes.class <| if selected then "selected" else ""
    , Html.Events.onClick <| SelectWhiteCard c
    ]
    [ Html.text <| whiteCardContent cards c
    ]

subscriptions : Model -> Sub Msg
subscriptions model = webSocketIn WebSocketIn

send : Messages.ClientMessage -> Cmd Msg
send = webSocketOut << Json.Encode.encode 0 << Messages.jsonEncClientMessage

update : Msg -> Model -> (Model, Cmd Msg)
update msg model = case msg of
    Ignore -> (model, Cmd.none)
    Send -> (model, webSocketOut "Hi")
    WebSocketIn json ->
        case Json.Decode.decodeString Messages.jsonDecServerMessage json of
            Err str -> (Error <| Json.Decode.errorToString str, Cmd.none)
            Ok (Messages.Welcome roomId) -> case model of
                Connecting _ -> (Connecting (Just roomId), Cmd.none)
                _ -> (model, Cmd.none)
            Ok (Messages.SyncGameView gameView) ->
                case model of
                    Game game -> (Game {game | view = gameView}, Cmd.none)
                    _ ->
                        ( Game
                            { room = case model of
                                Connecting roomId -> roomId
                                _ -> Nothing
                            , cards = {black = Array.empty, white = Array.empty}
                            , view = gameView
                            , changeMyName = gameView.me.name
                            , selectedWhiteCards = []
                            , selectedVote = Nothing
                            }
                        , Cmd.none
                        )
            Ok (Messages.SyncCards cards) ->
                let arr =
                        { black = Array.fromList cards.black
                        , white = Array.fromList cards.white
                        } in
                case model of
                    Game game -> (Game {game | cards = arr}, Cmd.none)
                    _ -> (model, Cmd.none)

    ChangeMyName name -> case model of
        Game game -> (Game {game | changeMyName = name}, Cmd.none)
        _ -> (model, Cmd.none)
    SubmitMyName -> case model of
        Game game -> (model, send <| Messages.ChangeMyName game.changeMyName)
        _ -> (model, Cmd.none)

    SelectWhiteCard card -> case model of
        Game game ->
            let cards = case List.member card game.selectedWhiteCards of
                    True  -> List.filter (\c -> c /= card) game.selectedWhiteCards
                    False -> List.take
                        (case tableBlackCard game of
                            Nothing -> 0
                            Just c  -> blackCardBlanks game.cards c - 1)
                        game.selectedWhiteCards ++
                        [card] in
            (Game {game | selectedWhiteCards = cards}, Cmd.none)
        _ -> (model, Cmd.none)

    ProposeWhiteCards -> case model of
        Game game ->
            ( Game {game | selectedWhiteCards = []}
            , send <| Messages.ProposeWhiteCards game.selectedWhiteCards
            )
        _ -> (model, Cmd.none)

    AdminSkipProposals -> (model, send Messages.AdminSkipProposals)

    SelectVote i -> case model of
        Game game -> case game.view.table of
            Messages.Voting _ _ _ Nothing ->
                (Game {game | selectedVote = Just i}, Cmd.none)
            _ -> (model, Cmd.none)
        _ -> (model, Cmd.none)

    AdminSkipVotes -> (model, send Messages.AdminSkipVotes)

    SubmitVote -> case model of
        Game game -> case game.selectedVote of
            Just vote ->
                ( Game {game | selectedVote = Nothing}
                , send <| Messages.SubmitVote vote
                )
            _ -> (model, Cmd.none)
        _ -> (model, Cmd.none)

    AdminConfirmTally -> (model, send Messages.AdminConfirmTally)

main : Program () Model Msg
main = Browser.application
    { init = \() url key -> (Connecting Nothing, Cmd.none)
    , update = update
    , subscriptions = subscriptions
    , view = \model -> view model
    , onUrlChange = \url -> Ignore
    , onUrlRequest = \urlRequest -> Ignore
    }