Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Engine Capabilities
fenixkane Offline
Junior Member

Posts: 17
Threads: 2
Joined: Jul 2010
Reputation: 0
#21
RE: Engine Capabilities

A couple of questions:
What kind of control over AI are modders able to have?
Also would there be any way of having a dialog window system (a tad far fetched I think)?
08-24-2010, 12:49 PM
Find
Thomas Offline
Frictional Games

Posts: 2,634
Threads: 184
Joined: Apr 2006
Reputation: 68
#22
RE: Engine Capabilities

AI: There are some basic types of enemies and then one can edit various properties for these.

Dialog window system: Afraid not.
08-24-2010, 12:52 PM
Find
fenixkane Offline
Junior Member

Posts: 17
Threads: 2
Joined: Jul 2010
Reputation: 0
#23
RE: Engine Capabilities

Thank you for the speedy reply.
I wonder if there would be any way to implement a dialog system through a third party tool...
Does anyone know if such a thing exists (or if anything existing can be Gerry-rigged into doing it)?
08-25-2010, 03:11 AM
Find
superluser Offline
Member

Posts: 143
Threads: 3
Joined: Jul 2010
Reputation: 0
#24
RE: Engine Capabilities

(08-24-2010, 12:52 PM)Thomas Wrote: Dialog window system: Afraid not.

What about using the computer interface as a makeshift dialog interface? It wouldn't be ideal, but it would work.
08-26-2010, 01:53 PM
Find
spukrian Offline
Senior Member

Posts: 577
Threads: 19
Joined: Feb 2008
Reputation: 5
#25
RE: Engine Capabilities

Yes, the Computer Interface from Black Plague should be able to be modified into to a a dialog system. At least in theory.
08-27-2010, 10:35 PM
Find
Sexbad Offline
Posting Freak

Posts: 1,197
Threads: 40
Joined: Jun 2009
Reputation: 18
#26
RE: Engine Capabilities

Is there any possibility for motion blur or depth of field left over in the engine like in Penumbra?

[Image: jao3z.jpg]
09-08-2010, 12:45 AM
Website Find
Naserve Offline
Junior Member

Posts: 18
Threads: 3
Joined: May 2010
Reputation: 0
#27
RE: Engine Capabilities

Kinda off topic but can we expect to see the developers tools out in a weeK? A month? Do we have a time frame? I want to get into making some maps and playing around with it.
09-08-2010, 02:01 AM
Find
Radu IceMan Offline
Junior Member

Posts: 14
Threads: 2
Joined: Aug 2010
Reputation: 0
#28
RE: Engine Capabilities

How do your triggers work? Is it a brush based entity? I noticed the AI path finding system in one of the videos, which is quite similar to the one used by the Source engine.

Also, can you go a bit in detail about the scripting system? Will we have a input/output system with multiple options to choose? I like to compare engines to the Source engine, since I'm only experienced with that. If there are more similarities to it I might actually enjoy it.
09-10-2010, 09:41 PM
Find
monkeyshots Offline
Junior Member

Posts: 4
Threads: 1
Joined: Sep 2010
Reputation: 0
#29
RE: Engine Capabilities

Hi !

The Question that i have in my head since i read about the level and other editors being released is:

will people only be able to make 'single'-maps or is it possible to actually make a series of maps and chain them together like in the main game ? so that people could make real and long stories/expansions and release them to other people ?

THanks.
09-10-2010, 10:05 PM
Find
MulleDK19 Offline
Senior Member

Posts: 545
Threads: 21
Joined: Jun 2009
Reputation: 10
#30
RE: Engine Capabilities

(09-10-2010, 09:41 PM)Radu IceMan Wrote: How do your triggers work? Is it a brush based entity? I noticed the AI path finding system in one of the videos, which is quite similar to the one used by the Source engine.

Also, can you go a bit in detail about the scripting system? Will we have a input/output system with multiple options to choose? I like to compare engines to the Source engine, since I'm only experienced with that. If there are more similarities to it I might actually enjoy it.

There's not really "triggers". Well... There is, but they're not called triggers.

To make a "trigger", you create an area in 3D space (x,y,z), and call it something. Then in your script, you can use the function:

AddEntityCollideCallback(string &in asParentName, string &in asChildName, string &in asFunction, bool abDeleteOnCollide, int alStates)

Example:
void OnStart()
{
    //Add a collision callback, so that when the player touches our area, the function called
    //FunctionToCallOnCollide will be called.
    AddEntityCollideCallback("Player", "AreaNameHere", "FunctionToCallOnCollide", true, 1);
}

void FunctionToCallOnCollide(string &in asParent, string &in asChild, int alState)
{
    //Player "triggered" the area. Do some weird shit to him.
    DoWeirdShitToPlayer();
}

void DoWeirdShitToPlayer()
{
    //Then you would do crap here, etc.
}

(09-10-2010, 10:05 PM)monkeyshots Wrote: Hi !

The Question that i have in my head since i read about the level and other editors being released is:

will people only be able to make 'single'-maps or is it possible to actually make a series of maps and chain them together like in the main game ? so that people could make real and long stories/expansions and release them to other people ?

THanks.

You'll be able to make exactly what you see in the real game.

[Image: 16455.png]
(This post was last modified: 09-11-2010, 12:09 AM by MulleDK19.)
09-11-2010, 12:02 AM
Find




Users browsing this thread: 1 Guest(s)