Profile image

Snek Game

66.6k SnoWFLakE0s  2.3 years ago


Hey all,

I present to you: the classic arcade game, Snake—in SimplePlanes, at last! What more can I say?

Fully functional and playable, the SimplePlanes edition of Snake comes bundled in a neat arcade machine package, complete with full VR compatibility, which allows you to use the joystick to actually play the game.

Gameplay & Controls

Gameplay is simple as it can be: it’s just Snake (with some twists)!

  1. WASD (Pitch & Roll) is used to control the direction you want your snake to move in. Just know that you should only press one type of control at a time (i.e. don’t use Pitch and Roll controls simultaneously!).
  2. You may pause/unpause the game at any time by pressing either the pause button or AG1.
  3. Every time you eat a food cell, you gain an additional tail segment.
  4. If you collide into any of your tail segments, you bite your own tail and lose, ending the game. This also includes trying to go in the opposite direction!
  5. You’re allowed to pass through the world border on one side and out the other, and the game is contained in a 21 x 21 field.
  6. Over the course of the game, as you accumulate more points, the game will accelerate. By the time you’re in 30 or so points, you’ll be moving quite quickly, so watch out!
  7. If you reach 50 points, you “win” the game. The first person to achieve I’ll be awarding 5 upvotes to! Just submit a video of a successful run and tag me on it.

Technical Details

This build features a number of technological innovations that make full use of new features in 1.11 & 1.12. Most prominent is the usage of variable recursion. This simple but powerful feature allows programming logic far more powerful in Funky Trees, and its capabilities are in full display in this build. Building on variable recursion, the following features were implemented:

  1. Full linear congruential generator RNG algorithm
    This simple but effective algorithm is an extremely popular method for computers to generate pseudorandom numbers. This has been fully implemented in the game’s food generation algorithm, which will generate a new food cell every time it’s consumed. The seed for the RNG generator is also randomized, making each and every game you play a pretty unique one!
  2. Label Attribute Mechanics
    This build utilizes to a great extent the various text modification properties to fully animate the game scene. Most prominently are the position modifiers to control the position of the pixels, but also in full use are the color modification attributes which are used to hide inactive pixels.
  3. Full conditional loops
    I’m now fairly confident that Funky Trees is Turing complete. We can not only do various kinds of mathematics, but we can also utilize conditionals in order to group code into logical blocks. For this build, pseudo-code was initially drafted which might have the following kind of structure:

Psuedo-code:

while (i<5) {
  doMethod();
  i++;
}

This can now be directly be converted to variable setter statements.
FT Edition:

doMethod = ... {activator = "i<5"}
i = i+1 {activator = "i<5"}

This is an incredibly powerful tool, and it’s very much possible to do practical programming in Funky Trees with the magic of variables (with the exception of string handling, as variables only take numbers).

With a package under less than 50 parts—maybe 4 for the actual mission critical components—the Snake game delivers an incredibly dense, technologically significant system that paves the way forth for the community to exploit Funky Trees even better.

Comments

So my first semester of engineering school is finally over! It’s been an incredibly busy and tough semester, but I’m now finally back to play the game that led me to becoming an engineer in the first place. This was actually an incredibly useful way to organize my thoughts about programming in general, especially since I’ve been doing C at school. It’s been coded over the span of maybe 3 or 4 weeks, and I’m glad to finally present this to everyone.

Happy holidays and happy snek gaming. I’ll see you in the next one.
- SnoWFLakE0s

Spotlights

General Characteristics

  • Successors 2 airplane(s)
  • Created On Mac
  • Wingspan 2.5ft (0.8m)
  • Length 4.2ft (1.3m)
  • Height 5.9ft (1.8m)
  • Empty Weight 5,718lbs (2,594kg)
  • Loaded Weight 5,718lbs (2,594kg)

Performance

  • Wing Loading N/A
  • Wing Area 0.0ft2 (0.0m2)
  • Drag Points 1298

Parts

  • Number of Parts 49
  • Control Surfaces 0
  • Performance Cost 202
  • Log in to leave a comment
  • Profile image

    You are a wizard of the funk! So cool!

    Pinned 2.3 years ago
  • Profile image

    It's a very good game machine I've ever played. Also, you can try playing Minecraft 1.20.51 APK https://coimobile.com/minecraft-12051/ , this version plays very well.

    16 days ago
  • Profile image

    SNEK 🗿

    one year ago
  • Profile image

    n o w d o b a d a p p l e

    +2 1.5 years ago
  • Profile image

    Very impressive great job

    1.5 years ago
  • Profile image

    @SnoWFLakE0s I have a problem with an f14 I'm remodeling, can you help me? Please?

    1.6 years ago
  • Profile image
    11.5k JesusChrist

    @camero2000 Soon it might.

    1.6 years ago
  • Profile image

    Okay but can it run DOOM?🤣🤣🤣

    1.7 years ago
  • Profile image

    dat is cool

    1.8 years ago
  • Profile image
    30 Leondex

    mindustry snek

    1.8 years ago
  • Profile image
    1,342 GlowingBrick

    自从有了变量系统,大家把简飞玩成了一个IDE

    1.9 years ago
  • Profile image
    6,925 Kwoshent

    Unity Engine made in SimplePlanes made in Unity Engine when

    1.9 years ago
  • Profile image
    4,355 LBAereo

    omg. just great! awesome

    2.1 years ago
  • Profile image

    king of the funky trees coder

    2.1 years ago
  • Profile image
    4,207 HazerzIsBack

    I need your help snow

    2.2 years ago
  • Profile image
    345 24DYA

    I was playing it on one of the runways my score was 14 and apparently a plane didn't like that said raining to the game the game is fine.

    2.2 years ago
  • Profile image

    10/10 snake game 👍

    2.2 years ago
  • Profile image

    20/10 would snake again

    2.3 years ago
  • Profile image
    61.7k DARZAVIATION

    Increíble... Más adelante... GTA 5 en SimplePlanes jajaja xd

    2.3 years ago
  • Profile image
    180 Ubyk123

    This is so fun!

    2.3 years ago
  • Profile image
    180 Ubyk123

    Incredible!

    2.3 years ago
  • Profile image
    66.6k SnoWFLakE0s

    @ViSilvester
    .
    Arrays would have definitely made this fully complete, as it would allow for infinite tail cell generation (or so I am inclined to believe). Regardless, glad my code was straightforward. Snake isn't the most complicated game, and it translates over to FT quite well.

    +2 2.3 years ago
  • Profile image

    That's incredible! i look in the "code", and it's surprisingly straight forward! maybe in the future we could get some arrays for funky trees, thats will be neat !

    2.3 years ago
  • Profile image

    @JustWingIt oh okay thx

    2.3 years ago
  • Profile image
    29.5k xNotDumb

    Can you explain some examples of funktrees

    +1 2.3 years ago
  • Log in to see more comments