Game Programming Patterns now available in print and eBook
gameprogrammingpatterns.com
Game Programming Patterns now available in print and eBook
1–9 of 9 posts
Re: Game Programming Patterns now available in print and eBook
#2Author here (as some of you know already). I'd love to answer any questions you have!
Re: Game Programming Patterns now available in print and eBook
#3You beat me to it! Now you get all the sweet, delicious karma. Author here (as some of you know already). I'd love to answer any questions you have!
Re: Game Programming Patterns now available in print and eBook
#4You beat me to it! Now you get all the sweet, delicious karma. Author here (as some of you know already). I'd love to answer any questions you have!
Thanks for writing the book! I first learned about it from here awhile back. It's extremely helpful to get an expert's take on the what and why of organizing game code.
Re: Game Programming Patterns now available in print and eBook
#5You beat me to it! Now you get all the sweet, delicious karma. Author here (as some of you know already). I'd love to answer any questions you have!
Which one gives you more money?
Re: Game Programming Patterns now available in print and eBook
#6Re: Game Programming Patterns now available in print and eBook
#7You beat me to it! Now you get all the sweet, delicious karma. Author here (as some of you know already). I'd love to answer any questions you have!
Torn between the Kindle version and the paperback. Which one gives you more money?
Re: Game Programming Patterns now available in print and eBook
#8You beat me to it! Now you get all the sweet, delicious karma. Author here (as some of you know already). I'd love to answer any questions you have!
I saw that the Command pattern has JS snippets and Prototype talks about JS, but most patterns don't seem to talk about JS.
BTW, JS is a prototypical language wrapped in classical syntax. That syntax exists because of Sun & Java's intervention. I find that using most of the language constructs there lead to more brittle code than writing it yourself. Object.create() might not have been in the language since the beginning, but it's here now, and it's what should be used.
"You don’t see many games where each monster is a unique snowflake, like “sort of halfway between a troll and a goblin with a bit of snake mixed in”."
You don't see many games where that's the case because classical programming makes it hard to do that. Programming with classes makes you think of homogenous classes of stuff, and that leads to homogenous stuff.
Re: Game Programming Patterns now available in print and eBook
#9You beat me to it! Now you get all the sweet, delicious karma. Author here (as some of you know already). I'd love to answer any questions you have!
Thanks for writing the book! I first learned about it from here awhile back. It's extremely helpful to get an expert's take on the what and why of organizing game code.