gamemaker
play

GameMaker! Tuesday, December 3, 13 Welcome to GameMaker! This is a - PowerPoint PPT Presentation

GameMaker! Tuesday, December 3, 13 Welcome to GameMaker! This is a picture of Spelunky, a popular roguelike originally made in GameMaker. What is GameMaker? Tuesday, December 3, 13 So what is GameMaker? What is GameMaker? GameMaker: a g


  1. GameMaker! Tuesday, December 3, 13 Welcome to GameMaker! This is a picture of Spelunky, a popular roguelike originally made in GameMaker.

  2. What is GameMaker? Tuesday, December 3, 13 So what is GameMaker?

  3. What is GameMaker? • GameMaker: a g ame-creation system specifically desi g ned for novice g ame pro g rammers • Two main ways of developin g with it: • Dra g -and-drop actions, which are associated with events • Pro g rammin g in GML, aka GameMaker Lan g ua g e (like C++/Java) • You can absolutely develop with both in the same g ame (usin g the dra g -and-drop for certain thin g s and GML for others) Tuesday, December 3, 13

  4. YOU GML DRAG ‘N DROP Tuesday, December 3, 13 They all interact pretty well! Which means you can accomplish BUSINESS.

  5. Tuesday, December 3, 13 What you’ll see in this workshop is just one version of how you can make a space shooter. There are tons of ways to do it--feel free to experiment!

  6. What’s the GM workflow? Tuesday, December 3, 13

  7. General workflow • Make the SPRITE: an ima g e/series of ima g es to represent a thin g • Make the OBJECT: a set of rules for how the thin g works/behaves • Define important EVENTS (e. g . pressin g a certain key) • Define ACTIONS for when events happen (e. g . spawn a thin g ) • Place specific objects in the ROOM: a discrete space (a level, particular area, etc.) Tuesday, December 3, 13

  8. Sprites • Transparent: transparent back g round or not (if so, assumes lowest-left pixel color should = transparent) • Ori g in: center point • Boundin g box: what points would count as a collision with the object Tuesday, December 3, 13

  9. Sprites • Can create just one sprite or a series of ima g es to form an animation • Can click the file to make a new sprite from another ima g e, or double-click an ima g e to edit that sprite with the GM editor Tuesday, December 3, 13

  10. Sprites • Can edit sprite ima g es in GM Tuesday, December 3, 13

  11. • Visible: can see object Objects • Solid: considered solid (you’ll run into actions where it’ll ask you whether it applies for all objects or just solids) • Depth: deals with what overlaps; z-index • Parent: inherit traits from another object • Events: tri gg ers that this object responds to • Actions: what it does in response • Persistent: lasts between rooms Tuesday, December 3, 13

  12. Rooms • Placin g objects • Settin g back g rounds/back g round scrolls • Assorted settin g s Tuesday, December 3, 13

  13. How do I tell objects how to behave? Tuesday, December 3, 13

  14. Tuesday, December 3, 13 GameMaker runs on an event-action system: • Can tell the object what events it should pay attention to • When those events happen, GameMaker will automatically run the actions that you associate with those events

  15. • CREATE: the moment the object is Events created (instantiated) in- g ame • DESTROY: the moment the object is destroyed in- g ame • ALARM: the moment a timer that you set g oes o ff • STEP: each moment in g ame-time, by default every ~.03s (1/room_speed) • COLLISION: when the object collides with a certain thin g • KEYBOARD: the duration from key press to key release Tuesday, December 3, 13

  16. Events • MOUSE: when the mouse is pressed, released, etc. (Assumes on that object; g lobal = anywhere.) • OTHER: assorted other conditions • DRAW: whenever GM is about to draw somethin g . (Like step but for draw commands.) • KEYPRESS: the sin g le moment a key is pressed • KEYRELEASE: the sin g le moment a key is released Tuesday, December 3, 13

  17. Actions - Movement - Spawn thin g s - Drawin g - Timers - Tests - Score - Rooms - Start/stop/ - Variables - Health - Sounds restart - Code/GML - Lives Tuesday, December 3, 13

  18. How do I tell objects how to behave? • Decide what event is important to you, and what should result • Select the event, and then dra g in the correspondin g action(s) • Can have many events and many actions per event Tuesday, December 3, 13

  19. Question: If I wanted to set the initial speed of an object ri g ht when it’s created, what event would I use? Bonus question: If I wanted to store that in a new variable, can you find which action I’d use to do so? Tuesday, December 3, 13 Answers: Create, Set Variable

  20. What’s this ‘relative’ checkbox? Tuesday, December 3, 13

  21. What’s this ‘relative’ checkbox? • Generally means “in relation to the current value” • Health example: • If you set health at be g innin g of the g ame, it ALWAYS equals, say, 3 • If your ship crashes into an enemy at some point, what does it equal? How do you write that rule? • Can’t say that health = 3 or 2 or any other literal • CAN say that we subtract 1 from the current value--new value is RELATIVE to the old one Tuesday, December 3, 13

  22. Question: Let’s say I want to pro g ram my object such that: [Press l-arrow -> jump to position 3 pixels left of where I am now] Do you think this is the kind of command that requires ‘relative’ to be checked? Why or why not? (Don’t worry about which action you’d use yet.) Tuesday, December 3, 13 Answer: Likely yes, because the new value is based on the previous value. (But this is just one way to write it, so not necessarily.)

  23. [For those with pro g rammin g experience: you can think of relative as +=, -=, *=, etc.] Tuesday, December 3, 13

  24. Variables • Variables are useful for storin g data that may chan g e throu g hout the course of your app (e. g . your player’s health) Tuesday, December 3, 13

  25. Some Variable Types • Float: a decimal number (“I’m 5.4 feet tall.”) • Inte g er: a whole number (“I’m 25 years old.”) • Boolean: a true/false condition (“I’m not from California.”) • Strin g : text (“My name is Jane.”) • Char: a sin g le letter (“You all g et an A in pro g rammin g !”) Tuesday, December 3, 13

  26. How does positionin g work? Tuesday, December 3, 13 HOW THE HECK DO YOU POSITION STUFF • In order to draw something on screen, you have to tell the computer exactly where to put it

  27. Tuesday, December 3, 13 HOW THE HECK DO YOU POSITION STUFF • You can think of the app window like a piece of graph paper, each pixel with its own coordinate location

  28. x=room_width X=0 y=0 y=room_hei g ht Tuesday, December 3, 13 HOW THE HECK DO YOU POSITION STUFF • X: gets bigger as it goes to the right • Y: gets bigger as it goes down • Upper-leftmost corner is 0,0, bottom-rightmost corner is room_width, room_height

  29. X=0 x=WIDTH y=0 (3,2) y=HEIGHT Tuesday, December 3, 13

  30. Coordinate Plane • X: horizontal axis, g ets lar g er as you g o ri g ht • Y: vertical axis, g ets lar g er as you g o down Tuesday, December 3, 13

  31. Question: If I wanted a circle to move left, what value would I chan g e-- x or y? Would I make it bi gg er or smaller? What about if I wanted it to move up? Tuesday, December 3, 13 Answers: X. Smaller. Change y & smaller.

  32. How do you make multiple rooms? Tuesday, December 3, 13

  33. • GM will, by default, start with the first room on the list • You can arran g e your rooms in the order you want them… Tuesday, December 3, 13

  34. • …and then use the room commands to a ff ect them (move to next, move to previous, restart, etc.) • Can conceptualize start/end screens this way too Tuesday, December 3, 13

  35. Question: Let’s say I wanted to make a start screen with a start button you click to g o to the actual g ame. How would I make this functionality? Or, more specifically: - Would the button need to be an object? Why or why not? - Would we want the GLOBAL mouse event? Why or why not? Tuesday, December 3, 13 Answers: you’d make a button object and sprite--you need the object because the object is what holds the logic and can be placed in a room. You wouldn’t use global, because you only care about clicks *on the button* (global checks anywhere/everywhere)

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend