Game Development

4008 readers
1 users here now

Welcome to the game development community! This is a place to talk about and post anything related to the field of game development.

Community Wiki

founded 2 years ago
MODERATORS
201
202
 
 

Has links to source code for all of the games showcased if you want to see the code of them

203
204
205
 
 

There are a lot of questions and intentions to move into gamedev from developers who are burnt out at their jobs. And that's okay. From my own experience, I have a couple of pieces of advice that are not very professional.

1. It won't save you from everything you're so tired of.

Firstly, game development, like other areas, is full of its own nuances and pitfalls. And given that a person gets used to everything, you will soon find yourself in the same position. It’s better to look at game development as a hobby, a distraction from your main job. Moreover, for the first few years you will still not be able to earn enough to support yourself and your family.

2. There are no universal tools.

The main question in any field of programming today is which framework and programming language to learn. Here everyone will choose their own - what they can master. But it’s worth noting that in game development when switching, for example, from web development, you need to understand that you won’t be able to use React or even JavaScript if you want to become a real pro. You have to be willing to study hard. These are low-level languages - C, C++, Rust, and the basics of mathematics and physics, and possibly machine learning. It won't be easy, you just have to keep going. Take a break and study further. There is no need to strive to immediately choose the top and most complex tools; the main thing is to start somewhere.

3. This is a market with tough players.

If you think that you can create a game in a couple of months and immediately start making money, then this is not so. Of course, you can try, but the network is already full of low-grade content, and sometimes you just wonder about the mental health of the “creator”. I think it’s better to create one project, but ideal, adequate and interesting.

4. Hype is temporary, and you only live once.

Lots of technologies, engines, etc. surrounded by a lot of hype. This is not bad for the creators of these things, but if you run after the clouds, you will never get anything done. Let your achievements be modest, but they will be yours. This will save you from burnout at your main job, otherwise there will only be dissatisfaction with yourself.

Add your own...

206
 
 

Knowing when to put the mouse and keyboard down is hard.

I made this quite detailed shader, but it only fills a tiny part of the screen... Like maybe the player will see this once or twice max, but the rest of the time this element will only take up 40x40 pixel area 😅

What techniques have you found that help to keep you on track and let you understand when it's time to stop?

207
 
 

This video shows the process of doing #gamedev using other, larger systems to develop software for the #Atari 2600 and 5200 game consoles using a cross assembler. This example contrasts a cross assembler from Sorcim running on #Atari8bit and #S100 hardware. Enjoy.

  • REFERENCES

This video's notes: https://github.com/tschak909/cross-dev-game-video

Atari Macro Assembler Manual https://www.trailingedge.com/atari8/AtariMacroAssembler.pdf

MicroPro WordMaster 1.0 Manual https://wiki.polaire.nl/lib/exe/fetch.php?media=micropro_wordmaster.pdf

Dan Boris' PMDEMO: https://www.atarihq.com/danb/files/52pm.txt

CP/M 2.2 User Manual: http://www.cpm.z80.de/manuals/cpm22-m.pdf

MLOAD source code: https://raw.githubusercontent.com/z80playground/cpm-fat/main/mload.asm

Udo Monk's Z80PACK Emulation Suite: https://github.com/udo-munk/z80pack

Curt Vendel's Source-Code-Palooza (source code dump from Atari 9-track tapes): https://forums.atariage.com/topic/210244-source-code-palooza/

The Definitive Atari 2600 Combat Disassembly: https://www.qotile.net/minidig/disassembly/dicombat.asm

208
209
 
 

https://itch.io/jam/games-for-blind-gamers-3

This is the third one, and you can check out the previous one here! https://itch.io/jam/games-for-blind-gamers-2

We had 30 entries last year and are hoping to have even more wonderful entries this year! If you have any questions feel free to ask, or join the discord! https://discord.com/invite/Zd6B7vYBDx

210
 
 
  • Unity Software said Monday that it would lay off about 1,800 employees, or 25% of its overall workforce, as part of a corporate restructuring plan.
  • The company said it is unable to “reasonably estimate the costs and charges in connection with this reduction, which it expects will be substantially incurred in the first quarter of 2024.”
  • In October, John Riccitiello retired as Unity’s CEO, while former Red Hat CEO James Whitehurst became interim CEO.
211
 
 

I've been browsing job posts lately and found a lot of poorly written posts looking for collaborators. Here's a blog post I wrote highlighting common pitfalls, and how to convince collaborators to join your project!

212
 
 

Do you have all your assets in a single .blend file for your game? Or do you have multiple .blend files, one per asset?

If you store all/most assets in a single .blend file, what blender features do you use to make sure you don't accidentally alter an unrelated asset while making changes to one asset?

213
214
 
 

From GameFromScratch.com

215
 
 

My main issues are living in a country (Hungary), where a college degree would be almost mandatory for any dev jobs (mainly due to HR being dumb), also I'm disabled so my only job opportunity is a crappy government program one that pays half the minimum wage for full-time employment (!!!!!!), but this is the only no-12 hour shift and no-6AM starting option (most of which are also like 60+km from me, which means I would have to wake up even earlier, which isn't good for my health at all). however, not only a pay is very low, but also the 7AM starting is beginning to be way too much for my health. I'm already on sleeping pills to try to make myself fall asleep before midnight (almost impossible), and I also don't have the money to get my meds changed to something better at a private doctor. Of course no disability benefits, because "I'm not disabled enough", and otherwise I would just spend it on luxury cars (a common pre-2010 myth in Hungary was that disabled people could buy brand new Mercedeses).

I primarily have experience with game development (mainly from open source stuff), but without a long list of corporate experience, I have an even harder chance. I could work at other places too (I have some audio development experiences too), but would like to stay far away from web development.

216
 
 

From GameFromScratch.com

217
 
 

From GameFromScratch.com

218
 
 

Since I'm having untracable issues with Lua due to its API and lackluster documentation, I've decided to drop it from my game engine (PixelPerfectEngine) in favor of some easier to use alternatives.

What I need is:

  • open source
  • small footprint even if it at the cost of some complexity (I need it as a scripting engine, not as a replacement for compiled application languages)
  • integer support (I don't care if I could just round it on the backend)
  • C or C++ ABI
  • can be embedded into a software (yes, there are people that suggest you to use janky solutions like passing data in files and command line)

Even a better Lua implementation would suffice, and if I had the time, I would port the official one to D (my main language), while getting rid of the godawful stack method of control.

219
 
 

From GameFromScratch.com

220
 
 

From GamesIndustry.biz

221
 
 

From GameFromScratch.com

222
 
 

From GameFromScratch.com

223
 
 

Words with Friends has a bot that tries to play against you, but today I opened the app to see FFOSecondBot on the screen. Does that have any particular meaning?

224
 
 

Long, but well worth the read.

From GamesIndustry.biz

225
 
 

"Hi-Rez president and RallyHere CEO Stewart Chisam says we're seeing a bullwhip effect from COVID and the recovery will begin this quarter" | GamesIndustry.biz

view more: ‹ prev next ›