Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Game Dev in Ruby
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Danielle Smith
December 03, 2014
0
38
Game Dev in Ruby
Short talk on Game dev in Ruby using the Gosu gem
Danielle Smith
December 03, 2014
Tweet
Share
More Decks by Danielle Smith
See All by Danielle Smith
Ruby Ruby
daninithepanini
0
150
A Brief History of Ruby
daninithepanini
0
41
Static Type Inferencing ... in Ruby?
daninithepanini
0
24
Off the Rails
daninithepanini
0
30
Action Game
daninithepanini
0
38
RubyGL
daninithepanini
0
29
YeSQL
daninithepanini
0
26
Euler vs Hamilton
daninithepanini
0
44
Featured
See All Featured
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
Leo the Paperboy
mayatellez
4
1.5k
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
220
A brief & incomplete history of UX Design for the World Wide Web: 1989–2019
jct
1
320
Redefining SEO in the New Era of Traffic Generation
szymonslowik
1
250
How to audit for AI Accessibility on your Front & Back End
davetheseo
0
220
Have SEOs Ruined the Internet? - User Awareness of SEO in 2025
akashhashmi
0
290
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
480
Navigating Weather and Climate Data
rabernat
0
140
[SF Ruby Conf 2025] Rails X
palkan
2
840
Introduction to Domain-Driven Design and Collaborative software design
baasie
1
640
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.7k
Transcript
Game Dev in Ruby by Daniel Smith
It’s awesome
Game dev is fun!
Ruby is fun!
None
The Gosu Gem
Simple 2D engine
Sprite-based
Great Community
Challenges
Interpreted Language
Garbage Collector is EVIL
Not quite mobile yet
require ‘gosu’
class MyAwesomeGame < Gosu::Window def initialize super WIDTH, HEIGHT, FULLSCREEN
end end
Game Loop
... def update # game logic end def draw #
put stuff on the screen end
Input
... def button_down id # ... end def button_up id
exit if id == Gosu::KbEscape end
Images
... def initialize ... @ship_image = Gosu::Image.new self, “ship.png” end
def draw @ship_image.draw x, y, z end
Shut up and show some games!
#{code.demo :live}
Thanks!