Asynchronous Job System
Polytree Engine provides a Job System that can be used for multi-threading in games. This job system abstracts some logic and context from game allowing for a better end-user experience.
The class breakdown of the job system is as follows:
-
Job class
-
Job worker thread
-
Job System
​
The intent of this breakdown is to allow the Job System to handle the threads and job performed by each thread. The job class acts as a base class that can be inherited from to create desired jobs that would be handled by the system.
​
Below is the implementation of the Job System:
With this framework in place, Polytree Engine can enqueue jobs to the job system. The support to be able to execute enqueued jobs also allow for control over execution as desired by the user.
​
An example of a job incorporated using the Job base class is utilised to generate chunks in the SimpleMiner project:
Inherited Job class for the Simple Miner project
Logic for adding chunk generation on a seperate Job for multi threaded chunk generation
Chunk Job execution