Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Species Breakdown Taking Being to Individual Species #74

Open
barbalet opened this issue Feb 27, 2020 · 0 comments
Open

Species Breakdown Taking Being to Individual Species #74

barbalet opened this issue Feb 27, 2020 · 0 comments

Comments

@barbalet
Copy link
Owner

Taking this:

void sim_cycle(void)
{
n_int max_honor = 0;

land_cycle();

#ifdef WEATHER_ON
weather_cycle();
#endif

loop_being_no_sim(sim.beings, sim.num, sim_being_awake_loop_no_sim, 0L);
loop_being_no_sim(sim.beings, sim.num, sim_being_universal_loop_no_sim, 0L);

if (interpret)
{
    loop_being(&sim, sim_being_interpret, PROCESSING_WELTER_WEIGHT);
}
else
{
    /** Listen for any shouts */
    loop_being(&sim, being_listen, PROCESSING_FEATHER_WEIGHT);

#ifdef EPISODIC_ON
loop_being_no_sim(sim.beings, sim.num, episodic_cycle_no_sim, 0L);
#endif
loop_being(&sim, sim_being_cycle, PROCESSING_MIDDLE_WEIGHT);
loop_being(&sim, drives_cycle, PROCESSING_LIGHT_WEIGHT);
}

if (land_time() & 1)
{

#ifdef BRAIN_ON
loop_being(&sim, sim_brain_loop, PROCESSING_WELTER_WEIGHT);
#endif
}
#ifdef BRAINCODE_ON
else
{
loop_being(&sim, sim_brain_dialogue_loop, PROCESSING_MIDDLE_WEIGHT);
}
#endif

loop_being_no_sim(sim.beings, sim.num, being_tidy_loop_no_sim, &max_honor);

loop_being(&sim, social_initial_loop, PROCESSING_LIGHT_WEIGHT);

if (max_honor)
{
    loop_being_no_sim(sim.beings, sim.num, being_recalibrate_honor_loop_no_sim, 0L);
}

loop_being_no_sim(sim.beings, sim.num, social_secondary_loop_no_sim, 0L);

{
    being_remove_loop2_struct * brls = being_remove_initial(&sim);
    if (sim.ext_death != 0L)
    {
        loop_no_thread(&sim, 0L, being_remove_loop1, 0L);
    }
    loop_no_thread(&sim, 0L, being_remove_loop2, brls);
    sim_being_remove_final(&sim, &brls);
}

sim_time(&sim);

}
And make it more generalizable for multiple species.

The pattern is:

land cycle
weather cycle
being cycle
time cycle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant