Zooconomy (Strategy-puzzle)

Looks like your making something really fun!

2 Likes

So, we made it to 2021! New year, new announcements.

New name
Some of you maybe already noticed, but we have renamed the game by combining old words together - Zooconomy. Now it is more unique and distinctive :slight_smile:.

New logo
Behold, our new logo

Also sometimes we use separately only words or only panda icon.

New key art
And to accompany new logo and get rid off of stock elements in old key art, we created a new one. It’s more complex and we will use it and it’s variants in all stores and pages.

630x500

I’m planning to use elements from key art in main menu.

Discord channel
Yes, we have a discord channel which you can join as well)
We are planning to gradually increase marketing and social activities, so stay tuned.

New demo
And as finishing touch you can play new demo on itch. It has the same number of missions as previous one, but has updated menus, new features described last time and more animals to play with in sandbox mode.

And that’s all for this short, but informative devlog. See you next time, with more news and updates.

9 Likes

The new logo (and name) are really great! Hopefully I’ll have some time to play this weekend :slight_smile:

4 Likes

Well well. Another two weeks had passed. It’s time for new devlog post!

Milestones
This week I hit two milestones: 105 added animals and 80 added zoos. :partying_face: It’s pretty much all animals and zoos which I want on initial release. New animals and zoos will be added later via small updates and patches and via big updates, like for USA zoos. There are so many zoos in USA alone, so I have to pack them in another update later)

Missions images
All missions images were updated for initial release. Some limited-time missions are still missing, but I will deal with them later.









Avatars animation
A while back I was testing animal avatar animation with spine. And it went well, but I thought that it was time consuming. Recently I spoke to the publisher and he suggested this idea again, but to use more simple animations, less detailed. It mostly depend on animal itself, some are easier to animate, some are harder. But as it turned out there is a big technical problem which I have to overtake. We will see.

Here is detailed animation:
4x2

And here is more simple version:
100x2

So I’m gonna run some test and try to fix technical issues. That’s it for today. See you next time.

10 Likes

A small glimpse of animation process. In this timelapse video, I’m animating Pallas’s cat in Spine: body and eyes. After that some cleanup and it’s done.

107

7 Likes

oh god, I’m really in awe of how it looks!

2 Likes

I’m running out of intros, so let’s go. Welcome to another devlog.

Optimization
On itch I stumbled across commentary that demo crashes immediately after launching it or very soon after. User had a laptop with integrated graphics card. So I wanted to see how can i optimize the game. It’s ‘normal’ if the game freezes of crashes during the gameplay, but not in the main menu)

As it turned out, due to my lack of knowledge in Defold when I started the project I have selected not so great architecture. Almost all game was loaded during the initial run, as Map collection was set to preload in monarch settings as well as all UI elements, which were disabled right after loading. I have to reset many UI after game ended\loading etc and mostly clean game variables and other things. A lot of unnecessary code and checks.

So I started painstaking process of moving all game related UIs and controllers inside game loop, removing additional checks and cleanup procedures. The idea to have Map collection preloaded was due the error when call to the collection was before it was loaded. Back then I thought that preloading was great idea :slight_smile: . That’s why Cat Stories gave me great opportunity to start new project from scratch and came up with several ideas of suitable architectures. And I learned from it a lot.

In the end I moved everything game loop related and got more elegant and ‘cleaner’ system. Of course I had to trade something in return, like UI is in the same collection as all other elements and I can’t use set_time_step in that collection, as UI will also freeze.

Animations
I run some test which I mentioned last time and now have animal avatar animations integrated in the Zoopedia. As only few animations are ready, I’m using double system, so if animation exists it will be shown if not - usual sprite avatar will be shown. Thanks to @dapetcu21 I use round sprite mask above animation which hides animals body and other elements inside nice circle. It’s white, so I can color it in bg color and match it perfectly.

12

I liked that system so much, so I rebuild progress bar in Tasks menu for the third time). Before it I noticed that it if this screen is opened overall performance is lower - around 48FPS. It is not noticeable unless more elements are opened in the same time. Which slows all animations. Progress bars uses stencil masks and on the same screen can be up to 10 bars. Using technique above I got rid of stencil masks and use only sprite masks.

Now it’s very simple: main background node, mask\overlay which can be colored to match background of the scene, text node with useful information and bar itself. Which is operated by controller calculating how much progress is done and which sets appropriate length of this node.

Immediately fps became around 60, which is great. Unfortunately there are some issues somewhere else, as if notifications menu is open and news are displayed fps is again around 50 and animations becomes slow. It mostly occurs when this menu is open, but could happen in other places too. Time for more investigation and optimizations!

And on this terrible disappointment it’s time to end)
I hope that next time I will implement some new mechanics or expand older ones.

6 Likes

There is a Defold bug that severely impacts performance when moderate amounts of text are drawn on the screen. Maybe that’s what you’re hitting? https://github.com/defold/defold/issues/5313

2 Likes

Thanks, I’m gonna look at it. Maybe it is the root of all problems

I’ve added this to the roadmap for 2021 (https://github.com/defold/defold/projects/46). Hopefully something we have a chance to look into soon!

3 Likes

It might indeed be the problem. I have notification menu which can be opened. Inside it there are text nodes. When game starts no notifications therefore no impact on performance, more you play -> more notifications you get.

Right after start:

Everything is pretty much stable. No other texts, except news headline, are rendered. When four notifications are shown:

Fps is around 45. I think can optimize everything more, like not render notifications menu when hidden, maybe change something in gui layers. I probably need to make a stress test and just run the game for half an hour and see what happens.

Why time flies so fast? It’s time for another devlog and it’s packed with news!

New animator
I finally hired animator to help me with animals animation. It’ still takes some time to prepare files for animation and for later corrections, but it’s way better than if I was animating everything by myself. After animals, missions and events will be animated.

Sorry, no gif

Events
Way back I have created a base for random events and made two random events: Animal escape and Epidemic. They were presented to the player without any choice: you have just accepted it. Because you can’t influence epidemic or animal escape. In this two weeks I completed other planned events, where player has choice and refined already implemented once. For example, repair event used to look like this:

Not it looks like this:

It now clearly shows disadvantages.

This is repair event which also has no options. You have to repair enclosure:

In flooding event you have option to accept offer or to decline it. There is no penalty for declining, but you will increase relation with this zoo, if you will accept it. And after two month this animal will “return” to the home zoo:

Sometimes you will be offered to keep animal, which was saved from poachers:

And in forest fire event you also have option to get new “free” animal:

What’s next? I’m gonna balance them, because currently there is a hidden “timer” for events, which only checks that same event does not appear twice in a row. And if it happens it just select next one. Also player will be able to spend money on better health checks or maintenance which will decrease chances of epidemics and fallen trees. So I need to create separate “timers” for different events.

Zoos placement
Also some time ago I created system to place zoos on map (of course it’s more selecting than placing, as all zoos have their place on map). It kinda worked, but not in the way I wanted. Zoos in some cases can be placed very close to each other. So I asked my friends and they told me, that maybe I’m solving wrong task. I used to select most distant zoo from already selected, calculating distance from all selected to the new one. But they told me that I need to find maximum of minimal distances in selected subset (https://cs.stackexchange.com/questions/22767/choosing-a-subset-to-maximize-the-minimum-distance-between-points). So in new implementations I’m using ‘greedy’ algorithm:

  1. I’m selecting one of the non-selected zoos
  2. Find minimal distance between zoos in this ‘new’ subset
  3. If this distance more then previous subset with different new zoo, I mark it
  4. When all non-selected zoos were checked I finally add this marked zoo to current subset
  5. Continue until desired number of zoos found
  6. Profit!

Examples:
On small number of zoos both versions were ok
5 zoos, old version


5 zoos, new version

With more zoos new version is better. Zoos are more widespread and evenly placed.

30 zoos, old version

30 zoos, new version

And that’s it for today. See you next time :frog:

8 Likes

Looking great! The events are a cool idea. I’ve been working on a similar system recently so that gives me flashbacks, haha. I like that the bad events can be reduced depending on how the player approaches zoo health/safety.

I really think the animal animations are great! I imagine it’s a huge amount of work to convert 100+ still images to animations, but they bring so much life to the UI and an increased focus on the animals. I’m sure that work will pay off for immersion in the finished game!

One small feedback I have on the map would be that the yellow and green colored location pins don’t really stand from the map background. Do the colors indicate anything? It might be worth changing them to a contrasting color like red to see if they stand out better.

4 Likes

Thanks for the feedback. Yes, they represent with green color player zoo, with yellow color regular zoos, with red color zoos which player ‘marked’ and in blue the zoo which player recently visited. I’ will probably change or alter their color a little bit or increase outline around them.

3 Likes

Welcome back to another devlog. A lot of things happened for the past two weeks. Mostly it was marketing related and some part of it I really hated.

Devlog
I have launched more player related devlog on steam and on youtube. First one covers the main idea behind the game and map evolution. You can read it or watch it.

Content
The work continues on animals animation as well as new music. We already have 3 game tracks and main menu track done last year and recently 4th was finished and 5th track is coming.

Podcast
Yesterday “The SWW Show” recorded an interview with me about the game as a whole, about idea and about gameplay process. So its is coming soon, but I’m not sure when.

Map
One of the comments under first devlog suggested to add night version of the map and even animated version when it will change during the day. While animated version might be very quick and unpleasant when using x6 speed in the game, but what do you think about night style?

Finances
I used some time to make money in the game in one style: like moving dollar sign after money in evry menu and adding additional + and - signs when describing spendings and income.

Like finances menu looked like this:

Now it looks like this:

Also as you can see I made manage maintenance and manage medical available. So now player can spend money on them and reduce chances of animals to get ill or to escape. These events will happen less often (at least I hope so).

This addition triggered another change to event system. As I told before it used one timer for all events, but now each event use it’s own timer and in this way I can influence each “probability” (but it is still random). Unfortunately now events can happen one by one, which will annoy the player. So I will probably add cooldown timer common for all events. But it will be really tricky to set time, that player won’t be bored and at the same time events won’t happen to often. Cause playing on x6 the year will go in 4 minutes of real time.

That’s it for today. A lot of work is still ahead. :whale:

9 Likes

Welcome back to another biweekly devlog.

Expeditions
I wanted to take a break from rebuilding ‘old’ menus, so I started working on Expeditions mechanic. I wanted to create some mechanic wich will be placed on map along with zoos. In that way, player will have to look at the map from time to time and not just speeding up the game, waiting for breeding or other events. But I still didn’t know how it will work.

After a small brainstorm everything seemed clear. Player can start expeditions only for critically endangered animals. They will appear on map in specified locations in random order. But the main thing about these animals that player can’t exchange them with other zoos. Only to study them or breed. Also zoo rating will be increased.

Map with available expedition.
Right now most art is a placeholder (except one image for mammal animals)

Here you can see expedition to get antillean iguana. It will take 2 months and will cost 1000$.

The same for pangolin. Each expedition will be available for some time and then disappear from map. In future with more critically endangered animals more expeditions will be available.

All current expeditions.

I will get back to this topic when all art will be done. This mechanic interfere with a lot of other mechanics, so I will continue working on it next week.

And that’s it for today. See you next time :octopus:

8 Likes

Welcome back to another devlog. It will be a short one, as again I am in the middle of other projects)

Second devlog
First part of the second devlog is available on Steam. Second part will be released this week along with video version:

Expeditions
Work still continue, but mostly on final integration, like when expeditions will appear, addition of the new animals to the zoo. Main artwork is done, only icons on the map left:

Animations
Most time I spend on animations: animals, missions and now expeditions. Fun part is that I’m not animating them by myself, but a lot of time and efforts is going to prepare art for animation and on feedback to animator.
70% of animals animations is ready and 30% of missions animation.

Notifications
With expeditions and some events I had to create new notifications. But there were not space for them in notifications settings. So I have to make scroll there)

And that’s it for today! :lion:

8 Likes

Hello everyone! I was extremely busy with various stuff, so not much progress was done on the game. Mostly the work continues on various animations across the game. For example in expeditions:

And on the map:

I hope to be back soon on the regular schedule with more progress. But for today that’s all.

9 Likes

Hello everyone. It’s been a while. Work continues, but not so fast as I expected.

Wishlist milestone
It’s not a huge number, but still 1000 wishlist additions :partying_face:. I hope that soon marketing actions, as well as some news will increase that number.

Animations
I finally see the end of the tunnel) From 110 animals animations only 11 left to do, 3 events and 7 missions to animate. Take a look at this Poaching event animation:

Repair event animation:

Mission 13 animation, about flooding in Calgary zoo:

Everything is animated in Spine.

And that’s it for today. Next time I hope to come with more news)

11 Likes

It looks great! Well done :slight_smile:

2 Likes