1. 4
    1. 1

      You can also follow this blog series for creating the game BYTEPATH in LOVE2D: https://github.com/adnzzzzZ/blog/issues/30

      1. 2

        my goal is to teach some kids at my school how to code a real game (we did CS First but that was Scratch and Scratch isn’t real coding :P)

        1. 2

          By “kids” are you referring to elementary, middle, or high schoolers? Depending on what they are willing to take on, I have a few other guides that may be fun:

          • tinyraycaster - 4 part guide to making an old-school, Wolfenstein 3D-esque game in C++
          • TheCherno - Game Programming - A YouTube series for making an RPG-esque game from scratch in Java
          • TheCherno - Game Engine - Also by TheCherno, but goes over how to make a game engine in C++ (this series is ongoing, new episodes weekly on Sunday)
          • Roguelike Tutorial Revised - A Python3 + libtcod guide to making a Roguelike
          • Tetris - HTML5 Game Programming - Part 1 of 4 for making Tetris using JavaScript in the web browser
          • Coding Math - This is less of a “make a game” series and more of a “understand how to use math to make games” series (e.g. how to use vectors to detect if your character is behind and facing another character to know if you can back-stab them)

          There’s a little bit there for everyone. If they just want to make games and skip a lot of the cruft, they can always just download Unity and Blender and get right to it (and pick up C# along the way).

          1. 2

            …I just want to teach some middle/high schoolers how to make a game. I chose Lua because it’s easy to pick up. 1-indexing sounds terrible to actual programmers, but these are just kids. I just want to give them ANYTHING better than Scratch.

            1. 1

              Well, once they know how to make one game they may want to make more. Now you have a bunch of potential options for game #2 they can pursue, should they feel so inclined.

              1. 2

                Maybe I’ll include that at the end of the workshop, as a sort of “congrats, you’ve finished a game project! you can make more professional games using these”.

                However, for the purposes of the workshop, Lua is easiest. It’s logically sound to non-programmers (to a non-programmer, it’s hard to explain why the first item is 0 and not 1).

                1. 1

                  I always just tend to go with “You know how computers speak binary, which is just a bunch of ones and zeros? Well, they are also weird and start counting at 0 instead of 1. This will make more sense later on once we actually start programming things.”

                  But I also get your point of wanting to start simple with Lua, but making games like BYTEPATH is about as far as you can go with it until you start getting limited by how slow Lua is (hence why over half of those links use C++ or Java).

                  1. 2

                    The question is, how do you actually explain zeroindexing to the kids?

                    1. 1

                      the index isn’t an ordinal number. it’s the offset from the beginning. the first elements is 0 distance from the beginning.

                    2. 1

                      “Alright kid, count off to 5”

                      “1. 2. 3. 4. 5.”

                      “I see you started with 1, computers start with 0 so let’s count off to 5 again but starting at 0”

                      “0. 1. 2. 3. 4. 5.”

                      “If you write down each of those numbers and count how many you have, you will notice you now have 6 numbers. So let’s do this one more time, but this time stop when you get to 4.”

                      “0. 1. 2. 3. 4.”

                      “Great, we are now starting at 0 and ended up with 5 numbers. This is how computers count to 5. An easy way to remember this is to compare this result, 0 1 2 3 4, with our first result, 1 2 3 4 5, which is just the same number subtracted by 1:” 1 - 1 = 0 2 - 1 = 1 3 - 1 = 2 4 - 1 = 3 5 - 1 = 4

                      “And voila! You can can now count like a computer, which is formally referred to as ‘zero-indexing’.”

                  2. 1

                    Slow? Perdon? Have you seen pygame’s performance? Absolute TRASH. love2d is fast enough to make a playable platformer that is enjoyable to play.

                    1. 1

                      I do not believe any of my examples used pygame. There is Python’s libtcod library for the Roguelike tutorial, but it is also a text-based game so does not have the usual performance hit that comes from making games in Python.

                      1. 1

                        I was referring to the fact that you called LOVE slow when Python is the real slow one. LOVE2D uses LuaJIT (citation needed) so it runs fast enough to make a good program.

                        1. 1

                          I was referring to LOVE2D being slow compared to using Java or C++, but I’d still standby the libtcod library for Python to easily be performant enough for any Rogeulike game you have in mind (again, it is only rendering ASCII and maybe some bitmaps).