Skip to content
Sign UpLog In
Profile icon

Dyl Lee

@Frozones
Indie game developer. Codes in C++.
  • WORDLE 2K

    Cover page
    Made with C++

    WORDLE 2K

    Word guessing game

    2K plays

    Based off of WORDLE by Josh Wardle

    https://www.powerlanguage.co.uk/wordle/

    Version 1.3

    • Added 5 themes: Original, High Contrast, Bright, Ocean, RGB

    Created: 01/15/22

    Updated: 01/31/22

    Recent comments (49)
    BobIsReal
    BobIsReal
    1 year ago

    No Word Filter. Try to fix it!

    RixTheTyrunt
    RixTheTyrunt
    1 year ago

    Sounds like "WORDLE TOUCAN", LOL.

    Stormcrest
    Stormcrest
    1 year ago

    noice

    Frozones
    Frozones
    1 year ago

    Recently achieved 2K plays 🎉🎉

    Word guessing game

    Updated to include 5 new themes: Original, High Contrast, Bright, Ocean, and RGB

    https://www.powerlanguage.co.uk/wordle/

    ColoredHue
    ColoredHue
    1 year ago

    woo i won by looking at google

    ColoredHue
    ColoredHue
    1 year ago

    wait, nvm i spoke too soon

    ColoredHue
    ColoredHue
    1 year ago

    it wont work for me anymore D:

    NathanJHoffman
    NathanJHoffman
    1 year ago

    Wow- a repl.it developer who updates their game based on suggestions? I am unironically impressed, nice job Frozones!

    BradenBest
    BradenBest
    1 year ago

    "keyboard" printout:

    // only call this if you have already found a match for ch in guess_history // returns "match type" as a number (none, partial or full) int find_guess_history_optimistic(char ch) { size_t ghsize = 60; char *match = memchr(guess_history, ch, ghsize); switch (*(match - 1)) { case '0': return 0; case '2': return 2; } // we know for a fact the first match was a 1 (yellow) match // try to see if there's a more optimistic (better) match anywhere else while (ghsize > 0) { ++match; ghsize = 60 - (match - guess_history); match = memchr(match, ch, ghsize); if(match == NULL) return 1; if(*(match - 1) == '2') return 2; } return 1; } void print_keyboard(void) { static char const *row_qwerty = "QWERTYUIOP"; static char const *row_asdf = "ASDFGHJKL"; static char const *row_zxc = "ZXCVBNM"; for (int i = 0; i < 10; ++i) { char const *match = memchr(guess_history, row_qwerty[i], 60); int matchtype; if (match == NULL) // print row_qwerty[i] the default way else { matchtype = find_guess_history_optimistic(row_qwerty[i]); // print row_qwerty[i] using matchtype // 0 = no match (dark grey) // 1 = partial match (yellow) // 2 = full match (green) } } for (int i = 0; i < 9; ++i) // do the same for row_asdf for(int i = 0; i < 7; ++i) // do the same for row_zxc }

    This is following from the last comment I wrote about how to better-manage the guess history, which is at the bottom of the other thread. In case you were confused about what guess_history is.

    BradenBest
    BradenBest
    1 year ago
    char wordle[5]; ... if (random == 1) { wordle[0] = 'C'; wordle[1] = 'L'; wordle[2] = 'O'; wordle[3] = 'U'; wordle[4] = 'T'; } else if (random == 2) ... // this goes on for like 400 lines

    there is a much easier way to do this, just saying

    #include <string.h> char wordle[5]; static char const *dictionary[] = { "CLOUT", "POKER", "VISTA", ... }; ... size_t dict_len = sizeof dictionary / sizeof *dictionary; int random = rand() % len; memcpy(wordle, dictionary[random], 5);
  • Pokerrrrr 5

    Cover page
    Made with C++

    Poker

    Texas Hold'em

    Version 2.1.2

    Created: 12/26/21

    Updated: 1/2/22

    Recent comments (5)
    Frozones
    Frozones
    1 year ago

    First game I made using C++

    Poker game

    pleasestop
    pleasestop
    1 year ago

    Why no multiplayer?

    Frozones
    Frozones
    1 year ago

    Wow this is the funnest game ever

  • WORDLE Today

    Cover page
    Made with C++

    Shows my attempts at the daily WORDLE

    https://www.powerlanguage.co.uk/wordle/

    Check out my WORDLE game:

    https://replit.com/@Frozones/WORDLE

    Recent comments (16)
    Fortran94
    Fortran94
    11 months ago

    but the wordle was not depot for mai, 14, 2022

    RixTheTyrunt
    RixTheTyrunt
    1 year ago

    AAA WHAT DID I DO- 5 errors**...** Looks like more than 5.

    RixTheTyrunt
    RixTheTyrunt
    1 year ago

    Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...

    RixTheTyrunt
    RixTheTyrunt
    1 year ago

    Thanks for the source of coloring text! I've been looking for a solution til' I found this in the "More Repls" section of this C++ project. Thank you very much!

    Frozones
    Frozones
    1 year ago

    Shows my attempts at the daily WORDLE

Repls
Community
Frozones
Frozones
published a Repl
11 months ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
RixTheTyrunt
RixTheTyrunt
Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...1 year ago
RixTheTyrunt
RixTheTyrunt
AAA WHAT DID I DO- 5 errors**...** Looks like **more than 5.**1 year ago
Frozones
Frozones
published a Repl
1 year ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
RixTheTyrunt
RixTheTyrunt
Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...1 year ago
RixTheTyrunt
RixTheTyrunt
AAA WHAT DID I DO- 5 errors**...** Looks like **more than 5.**1 year ago
Frozones
Frozones
published a Repl
1 year ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
RixTheTyrunt
RixTheTyrunt
Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...1 year ago
RixTheTyrunt
RixTheTyrunt
AAA WHAT DID I DO- 5 errors**...** Looks like **more than 5.**1 year ago
Frozones
Frozones
published a Repl
1 year ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
RixTheTyrunt
RixTheTyrunt
Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...1 year ago
RixTheTyrunt
RixTheTyrunt
AAA WHAT DID I DO- 5 errors**...** Looks like **more than 5.**1 year ago
Frozones
Frozones
published a Repl
1 year ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
RixTheTyrunt
RixTheTyrunt
Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...1 year ago
RixTheTyrunt
RixTheTyrunt
AAA WHAT DID I DO- 5 errors**...** Looks like **more than 5.**1 year ago
Frozones
Frozones
published a Repl
1 year ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
RixTheTyrunt
RixTheTyrunt
Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...1 year ago
RixTheTyrunt
RixTheTyrunt
AAA WHAT DID I DO- 5 errors**...** Looks like **more than 5.**1 year ago
Frozones
Frozones
published an Update
1 year ago
29
WORDLE 2K
WORDLE 2KWORDLE 2K Word guessing game 2K plays Based off of WORDLE by Josh Wardle https://www.powerlanguage.co.uk/wordle/ Version 1.3 Added 5 themes: Original, High Contrast, Bright, Ocean, RGB Created: 01/15/22 Updated: 01/31/22
🎉 WORDLE 2K 🎉
Recently achieved 2K plays 🎉🎉 Word guessing game Updated to include 5 new themes: Original, High Contrast, Bright, Ocean, and RGB https://www.powerlanguage.co.uk/wordle/
#cool
#fun
#game
+2
Frozones
Frozones
published an Update
1 year ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
WORDLE Today
Shows my attempts at the daily WORDLE
RixTheTyrunt
RixTheTyrunt
Thanks for the source of coloring text! I've been looking for a solution til' I found this in the "More Repls" section of [this C++ project](https://replit.com/@nevium/os?v=1). Thank you very much!1 year ago
Frozones
Frozones
published a Repl
1 year ago
13
WORDLE Today
WORDLE TodayShows my attempts at the daily WORDLE https://www.powerlanguage.co.uk/wordle/ Check out my WORDLE game: https://replit.com/@Frozones/WORDLE
RixTheTyrunt
RixTheTyrunt
Can you please help? I am actually just a begginer to C++, so please? The code contains much errors...1 year ago
RixTheTyrunt
RixTheTyrunt
AAA WHAT DID I DO- 5 errors**...** Looks like **more than 5.**1 year ago
Frozones
Frozones
published an Update
1 year ago
4
Pokerrrrr 5
Pokerrrrr 5Poker Texas Hold'em Version 2.1.2 Created: 12/26/21 Updated: 1/2/22
Pokerrrrr 5
First game I made using C++ Poker game
Frozones
Frozones
published a Repl
1 year ago
29
WORDLE 2K
WORDLE 2KWORDLE 2K Word guessing game 2K plays Based off of WORDLE by Josh Wardle https://www.powerlanguage.co.uk/wordle/ Version 1.3 Added 5 themes: Original, High Contrast, Bright, Ocean, RGB Created: 01/15/22 Updated: 01/31/22
Stormcrest
Stormcrest
noice1 year ago
RixTheTyrunt
RixTheTyrunt
Sounds like "WORDLE TOUCAN", LOL.1 year ago
Frozones
Frozones
published a Repl
1 year ago
29
WORDLE 2K
WORDLE 2KWORDLE 2K Word guessing game 2K plays Based off of WORDLE by Josh Wardle https://www.powerlanguage.co.uk/wordle/ Version 1.3 Added 5 themes: Original, High Contrast, Bright, Ocean, RGB Created: 01/15/22 Updated: 01/31/22
Stormcrest
Stormcrest
noice1 year ago
RixTheTyrunt
RixTheTyrunt
Sounds like "WORDLE TOUCAN", LOL.1 year ago
Frozones
Frozones
published a Repl
1 year ago
29
WORDLE 2K
WORDLE 2KWORDLE 2K Word guessing game 2K plays Based off of WORDLE by Josh Wardle https://www.powerlanguage.co.uk/wordle/ Version 1.3 Added 5 themes: Original, High Contrast, Bright, Ocean, RGB Created: 01/15/22 Updated: 01/31/22
Stormcrest
Stormcrest
noice1 year ago
RixTheTyrunt
RixTheTyrunt
Sounds like "WORDLE TOUCAN", LOL.1 year ago
Frozones
Frozones
published a Repl
1 year ago
29
WORDLE 2K