Coder Social home page Coder Social logo

Perceptions framework refinements about opengothic HOT 8 CLOSED

Try avatar Try commented on September 3, 2024
Perceptions framework refinements

from opengothic.

Comments (8)

Try avatar Try commented on September 3, 2024

Current idea is to:

  • bypass senses framework, for PERC_ASSESSENTERROOM/PERC_ASSESSQUIETSOUND and instead loop overs npc's in nearby.
  • remove SENSE_HEAR process from canSense

from opengothic.

Try avatar Try commented on September 3, 2024

In G1 npc also react inaccurate (or rather do not react) on same PERC_*

from opengothic.

Try avatar Try commented on September 3, 2024

Both cases should be fixed now, by 42770ae

One other case I'm not sure about is G1 script:

func void B_AssessQuietSound ()
{
	if (Npc_GetDistToItem(self, item) > PERC_DIST_DIALOG)   // what item?
	{
		return;
	};
	....

If player takes item, item wont exist anymore. Maybe bug, maybe this is case of game-logic bleed into UI

from opengothic.

thokkat avatar thokkat commented on September 3, 2024

bypass senses framework, for PERC_ASSESSENTERROOM/PERC_ASSESSQUIETSOUND

With senses=0 a lot of passive percs if not all could be triggered. In Percption.d there is a comment

Passive perceptions are sense-independent (they always go to all NPCs, regardless of whether they are seen/heard or not)

I know comments are sometimes wrong/outdated but here it would support the testing results.

in opengothic npc react only if aiQueue is empty and there is no pending waits (aiWait)

This was introduced in 47c552a to fix npc waking up while sneaking. What was working was using walkmode instead of bodystate. This prevents sending perc if e.g. opening a chest.

- if(ev.groundSounds>0 && isPlayer() && (bodyStateMasked()!=BodyState::BS_SNEAK))
+ if(ev.groundSounds>0 && isPlayer() && (wlkMode&WalkBit::WM_Sneak)!=WalkBit::WM_Sneak)
  world().sendPassivePerc(*this,*this,*this,PERC_ASSESSQUIETSOUND);

One other case I'm not sure about is G1 script

From testing: When just walking around item was never valid making function return early. If dropping something item refers to it.

from opengothic.

Try avatar Try commented on September 3, 2024

Passive perceptions are sense-independent (they always go to all NPCs, regardless of whether they are seen/heard or not)

Hm, G1-scripts? Can find this lines, for some reason. Do you know what passive mean in regard to perception? Afair at least PERC_ASSESSPLAYER/PERC_ASSESSENEMY cannot work across the wall, so they have to respect distance and ray-cast

from opengothic.

thokkat avatar thokkat commented on September 3, 2024

Hm, G1-scripts?

G2 scripts, comments after FUNC VOID InitPerceptions().

Do you know what passive mean in regard to perception?

Asked that myself too. Found explanation by Ikarus creator some time ago:

A distinction is made between active (searching) and passive (event-driven) perception. Active perception is a perception that is constantly running and checks itself whether something interesting is happening (a prominent example is PERC_ASSESSPLAYER, the constant observation of the player). You could say that the perception triggers a reaction on its own.
Passive perception is a perception that is triggered by very specific events (damage, killing other npcs, mob movement, taking items, etc.). You could say that an event triggers the perception that triggers a reaction. (Strictly speaking, all perceptions can be seen as passive perceptions).

source:
https://forum.worldofplayers.de/forum/threads/747056-Konstanter-Abstand-zu-einem-NPC?p=11695762&viewfull=1#post11695762

As I understand it: What's handled in Npc::perceptionProcess are the active ones with ASSESSITEM/ASSESSFIGHTER missing/unused, others are passive.

Afair at least PERC_ASSESSPLAYER/PERC_ASSESSENEMY cannot work across the wall, so they have to respect distance and ray-cast

When I tested with smell sense only at Harald location AssessPlayer function triggered for thief guild npcs and Gritta in Thorben's house. See sense only should behave how you described, has to be in viewing angle + visibility.

from opengothic.

Try avatar Try commented on September 3, 2024

Asked that myself too. Found explanation by Ikarus creator some time ago:

Found a better explanation in G2-scripts:

//
//	PERCEPTIONS	( ACTIVE )
//
CONST INT PERC_ASSESSPLAYER  = 1;
CONST INT PERC_ASSESSENEMY   = 2;
CONST INT PERC_ASSESSFIGHTER = 3;
CONST INT PERC_ASSESSBODY    = 4;
CONST INT PERC_ASSESSITEM    = 5;
...
//
//	PERCEPTIONS	( PASSIVE )
//
CONST INT PERC_ASSESSMURDER  = 6;
// all else

from opengothic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.