this post was submitted on 29 Oct 2023
198 points (91.2% liked)

Games

39782 readers
1195 users here now

Welcome to the largest gaming community on Lemmy! Discussion for all kinds of games. Video games, tabletop games, card games etc.

Rules

1. Submissions have to be related to games

Video games, tabletop, or otherwise. Posts not related to games will be deleted.

This community is focused on games, of all kinds. Any news item or discussion should be related to gaming in some way.

2. No bigotry or harassment, be civil

No bigotry, hardline stance. Try not to get too heated when entering into a discussion or debate.

We are here to talk and discuss about one of our passions, not fight or be exposed to hate. Posts or responses that are hateful will be deleted to keep the atmosphere good. If repeatedly violated, not only will the comment be deleted but a ban will be handed out as well. We judge each case individually.

3. No excessive self-promotion

Try to keep it to 10% self-promotion / 90% other stuff in your post history.

This is to prevent people from posting for the sole purpose of promoting their own website or social media account.

4. Stay on-topic; no memes, funny videos, giveaways, reposts, or low-effort posts

This community is mostly for discussion and news. Remember to search for the thing you're submitting before posting to see if it's already been posted.

We want to keep the quality of posts high. Therefore, memes, funny videos, low-effort posts and reposts are not allowed. We prohibit giveaways because we cannot be sure that the person holding the giveaway will actually do what they promise.

5. Mark Spoilers and NSFW

Make sure to mark your stuff or it may be removed.

No one wants to be spoiled. Therefore, always mark spoilers. Similarly mark NSFW, in case anyone is browsing in a public space or at work.

6. No linking to piracy

Don't share it here, there are other places to find it. Discussion of piracy is fine.

We don't want us moderators or the admins of lemmy.world to get in trouble for linking to piracy. Therefore, any link to piracy will be removed. Discussion of it is of course allowed.

Authorized Regular Threads

Related communities

PM a mod to add your own

Video games

Generic

Help and suggestions

By platform

By type

By games

Language specific

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] MooseBoys@lemmy.world 0 points 2 years ago (1 children)
  1. A locomotion system for controlling animation of a character in a three-dimensional (3D) virtual environment comprising: a rendering engine; a core system logic communicatively coupled to the rendering engine for executing core game logic of the virtual environment …

This is basically a description of a game engine that supports movement and animation. Descent (1994) would be the earliest production use of such an engine.

  1. The locomotion system of claim 1, wherein a key identifies one or more variables of the blackboard, the key comprising a human readable name associated with the variables to provide the selection criteria.

Congratulations, you just described “variables”, a concept at least as old as ENIAC (1945).

  1. The locomotion system of claim 1, wherein the core game logic defines one or more desired physical movements to sequence the motion type objects blocks.

Yes, that’s one way to describe “animation”

  1. The locomotion system of claim 1, wherein a selected archetype block defines a fallback archetype block, the fallback archetype block defining at least one new motion animation block or motion type block not present in the selected archetype block and inheriting any remaining motion type blocks and motion animation blocks from the selected archetype block.

Variables having a default value is the default behavior of most programming languages and software systems.

  1. The locomotion system of claim 1, wherein a selected archetype block defines the character's default animation.

Yea, we’re talking about animation here. Default value of animation description = default animation.

  1. The locomotion system of claim 1, wherein a selected archetype block of the character is unique from a second archetype block of a second character and at least one motion type block is common across the character and the second character.

Inheritance, a property of most software designs since the 1980s.

  1. The locomotion system of claim 1, wherein at least one of the motion animation blocks, the motion type blocks, and the archetype blocks is defined by a series of extensible markup language (XML)-based meta files.

Storing configuration in a data file. You’d be hard pressed to find an alternative. Maybe some genius will come along and find some way to represent it in JSON…

  1. The locomotion system of claim 1, wherein a selected attribute of a selected motion animation block includes at least one of a clip set that is used by a selected motion of the character, an overloadable animation blend tree to be used for the selected motion, named additional clips within specific clip sets, parametric blends from sets that can be named, a Boolean that specifies whether play speed of the selected motion can be modified, a minimum speed, and a maximum speed.

This seems to be the main claim of the patent, but seems to have a huge amount of prior art (see links). “Parametric blends” and other terms are just jargon.

  1. The locomotion system of claim 1, wherein the attributes of the motion animation block are custom float values.

Oh my god. Really? Shall we also include “doubles”, “halfs”, or maybe “rationals”?

  1. The locomotion system of claim 1, further comprising one or more transition tables to control a relationship between motion animation blocks.

“Translation table” seems to just be referring to the graph topology of the system. Yes, graphs are the most common way to represent arbitrary N:M relationships.

  1. The locomotion system of claim 1, further comprising an in-game graphical user interface for real-time modification of at least one of the motion animation blocks, the motion type blocks, and the archetype blocks.

Node-based editing; standard practice in all 3D modeling.

  1. A computer-implemented method for controlling animation of a character in a three-dimensional (3D) virtual environment comprising: executing core game logic to render the virtual environment using a core system logic communicatively coupled to a rendering engine …

Yes, you already described what a game engine is and an animation system is. Game engines certainly do have animation systems…

  1. The computer-implemented method of claim 12, wherein said animating the character further comprises identifying a second archetype block, the common set of motion type blocks and the motion animation blocks of the second archetype block altering the animation of the character as a game story defined by the core game logic develops.

Picking animation keys based on game logic. What else would you base it on exactly?

  1. The computer-implemented method of claim 12, wherein said animating the character further comprises identifying a fallback archetype block of the archetype block, the fallback archetype block defining at least one new motion animation block or motion type block not present in the selected archetype block and inheriting any remaining motion type blocks and motion animation blocks from the selected archetype block.

Yes, default values do be defaultin’.

  1. A computer program product for controlling animation of a character in a three-dimensional (3D) virtual environment, the computer program product including a non-transitory computer readable storage medium having program instructions embodied therewith, the program instructions executable by a device to cause the device to perform a method comprising: executing core game logic to render the virtual environment using a core system logic communicatively coupled to a rendering engine …

Yep, software sure does run on computers. Computers are neat. And they have storage.

  1. The computer program product of claim 15, wherein said animating the character further comprises identifying a second archetype block, the common set of motion type objects blocks and the motion animation blocks of the second archetype block altering the animation of the character as a game story defined by the core game logic develops.

Are we really going to enumerate all the permutations of engine + animation + defaults claims?

  1. The computer program product of claim 15, wherein said animating the character further comprises identifying a fallback archetype block of the archetype block, the fallback archetype block defining at least one new motion animation block or motion type block not present in the selected archetype block and inheriting any remaining motion type objects blocks and motion animation blocks from the selected archetype block.

I guess we are…