"Bonobocraft" is a project which involves teaching Bonobos (a type of Ape) to play Minecraft.
I was responsible for developing a mod that allows the Bonobos to play Minecraft with specialised touch controls designed specifically for them. You can see Teco, one of the apes, playing another research game with the same type of controls here.
You can download and use the mod that the Bonobos used on Modrinth.
The mod was not the only part of Bonobocraft. Spiralio played a significant role in making this happen, being the map developer who made all of the levels that the Bonobos played on. He made really cool stuff with datapacks including auto-generating cave pieces with structure blocks and lots of texture modelling work.
The main point of Bonobocraft is to make YouTube video's for Chris.
:YoutubeCarousel{:videos='["", "UKpFoYqN9-0", ""]' :itemsToShow='3'}
This was all made possible by the non-profit, ApeInitiative, who looks after the Apes seen in this videos. Please donate to them to help improve their facilities and allow the Bonobos to have more experiences like this.
You can use this modpack to try out the mods and worlds that the actual Bonobos used in the videos.
Download either Part 1, which is about the first video, or part 2, which is about the second video and try it out by hitting singleplayer!
Bonobocraft is quite a simple mod at its roots: it enables the mouse whilst in-game and implements some simple touch-zones that you can click on. But as you dive deeper, a lot more is going on behind the scenes to make the experience truely intuitive for the bonobos.
8 touch zones around the edge of the screen move the player camera in each direction.
| Up+Left | Up | Up+Right |
|---|---|---|
| Left | --- | Right |
| Down+Left | Down | Down+Right |
This behaviour is almost what the Bonobos expect. Their primitive brains just touch what they want to look at. I could have implemented this, but the researchers decided it would be more cognitively challenging if they were to learn these more basic controls.
After a certain period of time, the pitch of the player is re-centered to something just below straight forward (to avoid looking into Enderman's eyes). This is to help the Bonobos in case they get stuck looking up, it also makes the video more interesting.
The middle sector of the screen is used for walking forward. Upon pressing, the 'W' key will be emulated for a second or so.
This behaviour is already familiar to the Bonobos, who have done screen tasks like this in the past.
At the top center of the screen, a row of buttons (or lexigrams) are visible which do various actions.
Throughout the development of Bonobocraft, many buttons have been made, but at it's final state, only 3 are ever shown/enabled:
| Button | Action | Lexigram | Narration |
|---|---|---|---|
| Eat | Auto player task: Eat | ![]() | "eat" |
| Share | Auto player task: Share | ![]() | "share" |
| Clutch | Auto player task: Clutch | ![]() | "clutch" |
There are many internal systems that make up the Bonobocraft mod, some obvious, some not.
An API responsible for stringing together simple player tasks, creating more complex tasks.
For example, if you want a player to eat something, you split this action up into individual actions like:
In a sense this is almost like the AI system that are attached to mobs where they have separate goals, but only one action can take place at a time.
Whilst a task is in progress, all input is blocked to prevent the Bonobos from interfering with whatever is going on.
These actions are either triggered through a button or through a touch of an entity.
Behind the scenes, an animation system exists that handles the various smooth movements and animations.
For example, using the touch look input triggers an animation that powers the smooth looking
animation, or using the /indicate command to get the spinning and zooming.
Animator.INSTANCE.play(
new Animator.AnimationInstance(durationTicks, t -> t)
.addConsumer(x -> setX(x), start, end)
);
Here is an example of the animation system.

Touch controls designed for real Bonobo/Apes at ApeInitiative research centre.