
Adrian V.
Members-
Posts
13 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Adrian V.'s Achievements
-
Or-Bit Studios reacted to a post in a topic: Push the frog
-
Built a mini game in JavaScript on top of the CANVAS using the codeguppy.com platform (a p5.js and p5.play based platform). You can find the game and source code here: https://codeguppy.com/code.html?kXJPsMzIpnEdoCoOMCd0 Press Play to run the code. Also, I intend to talk about custom sprites in this streaming session https://www.youtube.com/watch?v=a4nNNF4SWj8 on my YouTube channel. Feedback welcomed! push_frog_mini.mp4
-
vasilii reacted to a post in a topic: Games in Canvas Windows
-
MrPancakes reacted to a post in a topic: Snake Classic - a classic game reimplemented in JavaScript (and tutorial)
-
Mars Attack - Making a game with retro sprites in 10 steps
Adrian V. posted a topic in Game Showcase
I want to show you one more mini game built w/ JavaScript. Actually in the following playground I'm showing the game built step by step: https://codeguppy.com/code.html?t=mars_attack&list=games Please let me know if anyone is interested in this kind of approach. mars_attack.mp4 -
I want to show you a small library that implements a Windows Manager and a few Controls on top of HTML5 canvas. All elements are drawn on canvas (not using any other HTML element). The library is still in development but can be used to also develop windows style games (as in the image). For an early preview you can check: https://codeguppy.com/run.html?win/win (source code included) win_games1.mp4
-
Hi all, Who else is using game development as a recreational coding activity? Sometimes developers with corporate jobs (writing enterprise software written in boring technologies) find an escape in game development. To keep things short I want to introduce you 2 tutorials from codeguppy.com - an environment based on p5.js and p5.play: https://codeguppy.com/code.html?t=_sprites_builtin&list=games https://codeguppy.com/code.html?t=_sprites_custom&list=games ... and I'm also attaching a few game dev. tips that were posted on theTwitter channel of codeguppy.com I hope to find them useful!
-
This is the latest μ game that I wrote: TARZAN Source code: https://codeguppy.com/code.html?t=tarzan&list=games tarzan.mp4
-
plicatibu reacted to a post in a topic: Mars Attack - Making a game with retro sprites in 10 steps
-
Mars Attack - Making a game with retro sprites in 10 steps
Adrian V. posted a topic in Game Showcase
Hi all, I want to show you a retro looking game made with JavaScript and only "type-in" sprites (all sprites are encoded inside the program source code) https://codeguppy.com/run.html?mars_attack/program If you are interested to see how this game was built, you can check this mini-tutorial that shows the game building process in 10 steps: https://codeguppy.com/code.html?t=mars_attack&list=games -
Hi all, I want to show you a µ-game (run and jump): https://codeguppy.com/run.html?desert_adventure/program The game - was built as a base for this tutorial: https://codeguppy.com/code.html?t=desert_adventure&list=games
-
Hi, You can check the source code of several small games on codeguppy.com They are built using p5.js and p5.play engines... and shows also how to handle user input.
-
Learning to write (good) JavaScript - resources for beginners
Adrian V. replied to Chris's topic in Coding and Game Design
I recommend you to check the resources from codeguppy.com They are intended for people to learn JavaScript while building 2D video games. Check for instance the Quick Hints toolbar (recently introduced in the code editor) and also the various game projects on the site. -
Hello again, I implemented another mini game using p5.js / p5.play and in-code defined sprites (e.g. text format) on the codeguppy.com platform. The game is still basic, however I didn't construct the game to be a polished game, but instead teach various game building techniques. This is the game https://codeguppy.com/run.html?mars_attack/program And this is how it was made: Part 1 - Generating mountains from random lines https://codeguppy.com/code.html?mars_attack/mountains Part 2 - Adding a landing ramp at the end https://codeguppy.com/code.html?mars_attack/mountains2 Part 3 - Solid mountains, Stars and Stop at Ramp https://codeguppy.com/code.html?mars_attack/mountains3 Part 4 - Adding player ship using in-code defined sprites https://codeguppy.com/code.html?mars_attack/mountains4 Part 5 - Adding enemy, collisions with enemy https://codeguppy.com/code.html?mars_attack/mountains5 Part 6 - Tune scrolling speed. Scroll faster when accelerating https://codeguppy.com/code.html?mars_attack/mountains6 Part 7 - Ship shoots rockets https://codeguppy.com/code.html?mars_attack/mountains7 Part 8 - Adding explosions. Ship can now land! https://codeguppy.com/code.html?mars_attack/mountains8 Part 9 - Ability to restart the game https://codeguppy.com/code.html?mars_attack/mountains9 Part 10 - Adding intro screen. Option to collide with mountains https://codeguppy.com/code.html?mars_attack/mountains10 Comments welcomed!
-
Hello all, I implemented a mini jump and run game using p5.js / p5.play on the codeguppy.com platform. The game is still basic, however I didn't construct the game to be a polished game, but instead teach various game building techniques. Game: https://codeguppy.com/run.html?desert_adventure/program These are the steps to construct the game. Part I: Platform and character https://codeguppy.com/code.html?desert_adventure/run0 Part II: Infinite scroll https://codeguppy.com/code.html?desert_adventure/run1 Part III: Adding a basic jump https://codeguppy.com/code.html?desert_adventure/run2 Part IV: A better jump https://codeguppy.com/code.html?desert_adventure/jump Part V: Collision with obstacles https://codeguppy.com/code.html?desert_adventure/run3 Part VI: Adding sound effects https://codeguppy.com/code.html?desert_adventure/program Comments welcomed! program.mp4