this post was submitted on 08 Sep 2024
394 points (98.8% liked)

Games

16403 readers
1683 users here now

Video game news oriented community. No NanoUFO is not a bot :)

Posts.

  1. News oriented content (general reviews, previews or retrospectives allowed).
  2. Broad discussion posts (preferably not only about a specific game).
  3. No humor/memes etc..
  4. No affiliate links
  5. No advertising.
  6. No clickbait, editorialized, sensational titles. State the game in question in the title. No all caps.
  7. No self promotion.
  8. No duplicate posts, newer post will be deleted unless there is more discussion in one of the posts.
  9. No politics.

Comments.

  1. No personal attacks.
  2. Obey instance rules.
  3. No low effort comments(one or two words, emoji etc..)
  4. Please use spoiler tags for spoilers.

My goal is just to have a community where people can go and see what new game news is out for the day and comment on it.

Other communities:

Beehaw.org gaming

Lemmy.ml gaming

lemmy.ca pcgaming

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] copygirl@lemmy.blahaj.zone 13 points 1 week ago (1 children)

There is a possibility something like this will be possible in the future, but it's not going to be an achievement of AI, it's largely going to be the achievement of regular developers creating a general-purpose game engine that can be used to put together a game block by block, which can be utilized by both human game designers and AI. (Likely to better effect by the former.) I can imagine Entity Component Systems will play a big part of that.

One of the biggest blockers for AI making games is going to be testing it to select for better performance. With text it's relatively easy to see if some text an AI produced is plausible. Images are also plentiful, but that's a lot more subjective. With both of these it would also not take a massive amount of time to add a human element. It's quick to check if a paragraph or image looks like it is a good response to the input promt. A game, however? How long do you need to play it to see if it's fun? At best, perhaps, you can write an AI to control a bot character to see if it's technically playable.

I don't want to even think about the electricity that wlll be wasted training such models.

[–] taladar@sh.itjust.works 6 points 1 week ago* (last edited 1 week ago) (1 children)

ECS has really nothing to do with this. ECS is just a specific way to store the internal state of a program, fundamentally no different from other data structures.

Also, a good game is far more than just text and images and current "AI" can't even generate those individually. A game needs significant thought put into things like game loops, story arcs, balancing,... that are non-obvious when existing games would just be training data. Not to mention that using an existing game as training data is both non-trivial and also we just don't have the vast amounts of them that current systems seem to need to produce anything even half-way decent.

[–] copygirl@lemmy.blahaj.zone 0 points 1 week ago (1 children)

ECS already makes it a hundred times easier for me to conceptualize game mechanics, modify and extend them. Giving AI the ability the ability to create data separate from systems that use them will make it much easier for it to build a game. I don't believe for a second it will be able to write functioning object-oriented game code for example. It will likely be best if it avoided coding via a text-based language altogether, and use visual scripting or another system based on chaining logic blocks together. But that still counts as the "system" part of ECS.

[–] taladar@sh.itjust.works 2 points 1 week ago

Visual programming has been tried and tried again and failed every single time. Mostly that is because graphics are just not very good at abstraction and programming is all about abstraction.