30
Microsoft has filed a gaming patent for "crafting and altering game narratives" using generative AI
(www.windowscentral.com)
!gaming is a community for gaming noobs through gaming aficionados. Unlike !games, we don’t take ourselves quite as serious. Shitposts and memes are welcome.
1. Keep it civil.
Attack the argument, not the person. No racism/sexism/bigotry. Good faith argumentation only.
2. No sexism, racism, homophobia, transphobia or any other flavor of bigotry.
I should not need to explain this one.
3. No bots, spam or self-promotion.
Only approved bots, which follow the guidelines for bots set by the instance, are allowed.
4. Try not to repost anything posted within the past month.
Beyond that, go for it. Not everyone is on every site all the time.
Logo uses joystick by liftarn
It would be difficult, yes. I'm a software developer myself and have been working with LLMs on personal projects recently, so I've got some context on the challenges involved.
The hype around LLMs is obviously all "Yeah just throw AI at the problem! AI can do it!" but the reality is that you will always need a good amount of normal coding to wrap around that and make the LLM inputs and outputs sane and interoperable with the rest of your system. So I'm very aware.
My real wonder is that with an appropriate implementation, how much of the classical aspects of the game could you ultimately and eventually move to LLMs, which is what the patent seems to be suggesting.
For example, if you used LLM only for character dialogue and nothing else, it would go something like this:
But you could potentially use LLMs to manage more aspects directly, and that could look like this:
Now that's already a lot of work and the only bit of classic programming we really took out is how the rep system is managed. But we gained some flexibility in that the source of your relationship with the faction could come from any action anywhere, including ones the game designers never even dreamed up, not just certain things which were pre-known to update it.
Where decisions actually interact with the game world will always need to be classically programmed (like being hostile and what that means and how it causes the characters to act, do they shoot you, what it means to 'shoot' and 'move' etc) and there will need to be a way to interface with that, but LLMs could introduce some level of flexibility in places where that wasn't possible before.
A reaulting problem though is that the more you give to LLMs, the more the entire thing is likely to unravel and become incoherent, without doing even more work to prevent that, and there will still be cracks.
Is it ultimately feasible? I don't know, but it will be interesting for whoever gets to try.
Yeah, that's exactly how I see it too. The biggest challenge to me is even if you can do it, can you make it feel reasonable and consistent.
In games today you know that there are good/bad options in a given scenario. With LLMs anything you do could cause an impact to a faction.
The other big issue is you run into user input. How many players want to be typing or speaking full conversations? Maybe it works for some games, but you only really get the full "flexibility" if users are fully interacting. This could greatly limit the games where LLMs could make an impact.
You can start to monitor actions, and not dialouge, and process events/actions through an LLM, but not sure how much LLMs would make that easier versus just programming those interactions.
There's all sorts of problems and roadblocks.
Another big one is generation of inappropriate or sexual content. No publisher will dare to ship something when the next week there's going to be videos all over social media of their game characters saying and doing wildly inappropriate stuff (as hilarious as that would be for us as players!)
Haha, that's a really good point.