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


Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Work in progress Amnesia Script Wizard
Daemian Offline
Posting Freak

Posts: 1,129
Threads: 42
Joined: Dec 2012
Reputation: 49
#13
RE: Amnesia Script Wizard

As for me, I'd like an IDE that allows me to group code in sections which I create myself so I can switch back and forth as I want, jumping the rest of the code that is not related to what I'm doing right now.
For example; I wanna start working on the items, so I go to the bottom of the file and type //Items +[enter] and that creates a section I can jump to by clicking on something or pressing a hot key.
For example the constants, those empty functions lying around.

Another feature that could help me a lot when coding in hpl3 is an option to clear or organize the file, most of the scripts in soma are filled with comments and "open" functions that make the file unnecessary large and thus confusing.

I respect the intention of FG of trying to organize the code in sections using comments but I find it very uncomfortable. I don't know about you, but after you clear it all up it's way easier to work.

Example:
PHP Code: (Select All)
    //------------------------------------------------------------
    
    /////////////////////////////////////////
    // GENERAL
    /////////////////////////////////////////
    
    //------------------------------------------------------------
    
    
void OnUpdate(float afTimeStep)
    {
    }
    
    
//------------------------------------------------------------
    
    
void OnPostUpdate(float afTimeStep)
    {
    }
    
    
//------------------------------------------------------------
    
    
void ResetProperties()
    {
    } 

Reduced:
PHP Code: (Select All)
    void OnUpdate(float afTimeStep) {}
    
void OnPostUpdate(float afTimeStep) {}
    
void ResetProperties() {} 

n.n

07-20-2016, 01:46 AM
Find


Messages In This Thread
Amnesia Script Wizard - by Spelos - 02-29-2016, 07:26 PM
RE: Amnesia Script Wizard - by WALP - 02-29-2016, 09:03 PM
RE: Amnesia Script Wizard - by Mudbill - 03-01-2016, 04:06 AM
RE: Amnesia Script Wizard - by AGP - 03-01-2016, 06:24 PM
RE: Amnesia Script Wizard - by Spelos - 03-01-2016, 06:39 PM
RE: Amnesia Script Wizard - by Spelos - 03-05-2016, 07:59 PM
RE: Amnesia Script Wizard - by AGP - 03-05-2016, 08:42 PM
RE: Amnesia Script Wizard - by Mudbill - 03-05-2016, 11:38 PM
RE: Amnesia Script Wizard - by Spelos - 03-27-2016, 03:09 PM
RE: Amnesia Script Wizard - by DanielRand47 - 03-27-2016, 04:15 PM
RE: Amnesia Script Wizard - by Spelos - 03-27-2016, 06:57 PM
RE: Amnesia Script Wizard - by Spelos - 07-19-2016, 07:45 AM
RE: Amnesia Script Wizard - by Daemian - 07-20-2016, 01:46 AM
RE: Amnesia Script Wizard - by Spelos - 07-20-2016, 06:09 AM
RE: Amnesia Script Wizard - by Romulator - 07-20-2016, 07:49 AM
RE: Amnesia Script Wizard - by Spelos - 07-20-2016, 08:22 AM
RE: Amnesia Script Wizard - by Romulator - 07-20-2016, 08:25 AM
RE: Amnesia Script Wizard - by Spelos - 01-04-2017, 10:03 PM
RE: Amnesia Script Wizard - by FlawlessHappiness - 01-05-2017, 12:12 AM
RE: Amnesia Script Wizard - by Mudbill - 01-05-2017, 08:23 AM
RE: Amnesia Script Wizard - by Spelos - 01-05-2017, 10:02 AM
RE: Amnesia Script Wizard - by Romulator - 01-05-2017, 05:57 PM
RE: Amnesia Script Wizard - by Romulator - 01-05-2017, 08:46 AM
RE: Amnesia Script Wizard - by Spelos - 01-06-2017, 11:38 PM



Users browsing this thread: 2 Guest(s)