Search found 39 matches

by Deltaxus
03 Feb 2018, 07:08
Forum: Feature Requests and Suggestions
Topic: OpenMW support for other games: Oblivion, Skyrim, Fallout and more
Replies: 442
Views: 322926

Re: Elder-scrolls IV Oblivion

How does it go? Any progress? Please release the code so others can check it out, in this way it will advance much more faster :) I am still very much active, checking OpenMW and the code changes out on a regular basis. Once I am able to release something substantial, I will. To be honest, right kn...
by Deltaxus
03 Nov 2017, 12:09
Forum: Feature Requests and Suggestions
Topic: OpenMW support for other games: Oblivion, Skyrim, Fallout and more
Replies: 442
Views: 322926

Re: Elder-scrolls IV Oblivion

I'd like to encourage you to make the code public even if it's not polished. It's simply better. There was a nice talk (this one I think: https://youtu.be/0SARbwvhupQ?t=2m19s) where they talked about how programmers keep their code hidden until it's "ready" while it's actually important t...
by Deltaxus
30 Oct 2017, 16:16
Forum: General
Topic: Render each frame in different cores.
Replies: 3
Views: 2770

Re: Render each frame in different cores.

Rendering is done in the graphics processing unit. Software Rendering (rendering in the CPU) is not widely used due to performance drawbacks, CPU's are simply not designed for this kind of data processing.
by Deltaxus
27 Oct 2017, 15:46
Forum: Off Topic
Topic: VPN suggestions
Replies: 16
Views: 9347

Re: VPN suggestions

If you really want to make sure that nobody spies on you, first you have to ensure that each subsystem of your computing device is controlled by you. If there is a possible weakness in even one subsystem, such as the Intel Management Engine, which allows to completely undermine any userland/kernel s...
by Deltaxus
26 Oct 2017, 22:44
Forum: General Development
Topic: Help for master's thesis. Is OpenMW ok for my project?
Replies: 3
Views: 3279

Re: Help for master's thesis. Is OpenMW ok for my project?

What I'm looking for: 1) A dataset of accessible in-game quest, so that I can label it and create a suitable training set for my NN. 2) An event system so I can change the player archetype % at runtime 3) The possibility to write code in a Turing complete programming language so I can use external ...
by Deltaxus
26 Oct 2017, 18:18
Forum: Off Topic
Topic: VPN suggestions
Replies: 16
Views: 9347

Re: VPN suggestions

So given several recent events in the US and worldwide, I've become increasingly concerned with my internet security. I've started looking into VPN solutions and figured you all probably have some experience and suggestions. I'm thinking a paid service might be worth it as long as they're cheap sim...
by Deltaxus
25 Oct 2017, 09:31
Forum: General
Topic: Script Tidy(is there any benefit in openmw)
Replies: 19
Views: 9698

Re: Script Tidy(is there any benefit in openmw)

The current way of running a script every frame isn't going away. There are still cases where it's useful, after all (not everything is best served with events). But if all you really need to do is wait for an event to do something, it's wasteful (both for the coder writing the scripts, and for per...
by Deltaxus
25 Oct 2017, 01:05
Forum: General
Topic: Script Tidy(is there any benefit in openmw)
Replies: 19
Views: 9698

Re: Script Tidy(is there any benefit in openmw)

The similarity in program design between programs I consider the greatest strength of automate based programming. It is at least (or strongly advised) to be able to go back to the basics at any given time. Indeed it's usually better to use a compiler-generator toolchain like flex and bison for lexer...
by Deltaxus
24 Oct 2017, 23:48
Forum: Off Topic
Topic: OpenAge progress (Age Of Empires II engine re-implementation)
Replies: 5
Views: 3043

Re: OpenAge progress (Age Of Empires II engine re-implementation)

For a moment, I read OpenRAGE. Still a great project.
by Deltaxus
24 Oct 2017, 23:44
Forum: General
Topic: Script Tidy(is there any benefit in openmw)
Replies: 19
Views: 9698

Re: Script Tidy(is there any benefit in openmw)

Yes. State machines constantly screw me over :P
There is no better way to implement a lexer/parser than using a state machine. It all just comes down to manipulating strings on a tape. Almost all of computer science and mathematics can be formalized in this way (See Thue system/ Hilbert calculus).