Frogatto & Friends

Frogatto sprite

Frogatto & Friends is an action-adventure platformer game, starring a certain quixotic frog.
We're an open-source community project, and welcome contributions!
We also have a very flexible editor and engine you can use to make your own creations.

Translators Wanted!

July 26th, 2011 by marcavis

One of the highlights of our latest release, Frogatto 1.1.1, was increasing the number of translations to five. Which is very nice, as we really like our game to be playable by as many people as possible!
Right now we have the following languages available:

  • Brazilian Portuguese
  • Chinese
  • French
  • Italian
  • Japanese

Frogatto's french translation example image

But we are still missing yours! (Possibly)
So, if you have some good knowledge of your language, and feel like helping (we know you do), register on www.transifex.net, and either request to join the translation team of your language, or to create one if it doesn’t exist already. Frogatto’s page is here: https://www.transifex.net/projects/p/Frogatto/

There’s also some further instructions on how to do the translation work in this forum post, so be sure to check it out!

FacebooktwitterredditmailFacebooktwitterredditmail

Statistics

July 10th, 2011 by Jetrel

Those of you who have read our FAQ (or who are adept enough to monitor outgoing network traffic) may have noticed that Frogatto “phones home”; it sends data back to our servers. Unfortunately, a lot of people have unwarranted suspicion about this sort of thing, which is really a shame because benevolent usage of this is really a irreplaceable aid to game design.

What we’re doing (thus far), is we’re tracking the movement of players throughout the game; every time you play frogatto, it records where you move, and sends a record of this back to us.

Why do this, you ask? Why would this matter to us? Well, one of the biggest pitfalls in game design is, as a creator, making bad assumptions about what players can or can’t figure out – that, or forgetting that you know something (since you wrote the game, after all) that you forgot to tell the players, but which is crucial to solve some puzzle. At worst, you can sometimes make things that are supposed to be possible, downright impossible – or you overlook some game-breaking glitch simply because you never tried something a certain way. These can easily make the game impossible to finish, which is something we want to avoid at all cost.

We could try testing this with a few friends in real-life; we have, but it’s nowhere remotely near a representative sample size. Thankfully, we’re in the internet era, and we have a better option. This is a good thing, because we especially need something that takes the least amount of labor on our part, because we’re a tiny, independent crew, and we not a real company that would have a department full of employees dedicated to this. We’re not a AAA studio that can have QA folks watch players test the game from behind a one-way mirror. When we have problems like this, the guys who would otherwise be creating new stuff for the game have to take time away from doing that to fix them.

Technical Info:
When you are finished playing Frogatto, the game tries to send a small plain text file to our servers. This file is then appended to it’s match on the server, and we end up with a very long list of all the data. There are four types of data; where you moved to, where you loaded the level, where you died, and where you quit the game.

None of it is personally identifiable – have a look for yourself. Especially since we’re open-source, there are no privacy concerns, because you can see our actual code, and we can’t hide anything.

However, there are valid reasons to not want to send back the data, foremost among them being a metered internet connection. If you want to, you can run the game with –no-send-stats to stop sending us data. (eg, “frogatto.exe –no-send-stats” on Windows.)

History:
So, we’ve actually had this stat-tracking stuff in the game since a very early version (probably our alpha versions; I remember fixing a couple of broken/overly difficult jumps on the now-nonexistant “stonepipe flats” level, based on this data). The problem we had was that we were collecting the data just fine, but we really didn’t have a good way to visualize it. The editor was able to display it with a line corresponding to each player, but it was very hard to read when too many lines were in one place, and after we released the 1.0 version of the game, the amount of data we were getting was so big that any sort of realtime display brought the editor’s display routine to it’s knees. For a while, we actually disabled the feature, which was really a shame.

Fortunately, DDR just came through with a brand-new python script that renders this data as an image. This sort of image is called a “heat map”; it overlays all of the different paths that players have taken on top of each other; each of the single ones is very faint, but they make the drawing darker and darker where they overlap. The end result is a single picture where the darker something is, the more often the players have been there. (The reason these are called heat maps is that a common color scheme, not seen here, is to have the untouched areas in colder “blue->green” colors, and the heavily-touched areas in warm (yellow->red) tones.)

Running DDR’s script on the level “bug mining” gives the following picture:

Visualisation of bug-mining.cfg
Download large version.

This is useful in itself, but it’s really useful if you combine it with a tiny picture of the level (which we’ve added a feature to export), because that allows us to immediately see what parts of the actual level this corresponds to – especially, to see if there are places in the level players are supposed to be able to reach, but can’t – or vice versa. For a simple example, here’s what it looks like combined with a screenshot of the tutorial level “grassy path”:

Image of movement data on tutorial level.
View Real-Size Version

This is a great example of the data this tool gives, because when I designed this level, I had actually set it up so that the ant nest near the end was inaccessible to the player. Changes in jump physics later made this area accessible, and looking at this picture makes it very clear that a lot of people are jumping up there (in this particular case, we decided this wasn’t really a problem per se, so we haven’t fixed it, but in many cases, this would be very helpful to know).

Comments are closed, due to abuse.

FacebooktwitterredditmailFacebooktwitterredditmail

Frogatto 1.1.1 Released!

July 4th, 2011 by Ben

This is a minor bug fix/small features release. We’ve fixed a few crashes, added an Italian translation (thanks translators!), and added auto-language selection to Windows. You can find Mac, Windows, and source packages on the download page. And before you ask: yes, we do plan on making a manual language selection of some sort too.

Enjoy!

FacebooktwitterredditmailFacebooktwitterredditmail

Moving House

June 21st, 2011 by DDR

Today, we have switched from our old version control system, SVN, to a GitHub repository. (If you’re not a programmer, you may want to skip to the next paragraph.) The GitHub page can be found at https://github.com/frogatto/frogatto. Why, you ask, did we bother moving from a working version control system? Quite simply, Git makes branching our project much, much easier. By allowing branches of the project to be worked on independently of the main release, we’ll also be able to release more often and make bigger improvements in those releases.

Oddly enough, our wiki has been hosted on Google Code since the beginning. Since we’ve moved to GitHub, we have decided to finally move the wiki there as well. Unfortunately, the wiki codes between Google and GitHub are slightly different. So, if you have a spare moment, please give us a hand cleaning up the new wiki! (For example, `code` should be {{{code}}}.)

FacebooktwitterredditmailFacebooktwitterredditmail

A Nice Review from DIYGamer

June 18th, 2011 by Jetrel

We just got a nice review about the recently released 1.1.1 from DIYGamer. Thanks guys!

FacebooktwitterredditmailFacebooktwitterredditmail

Frogatto 1.1.1 for iOS released!

June 18th, 2011 by Ben

Version 1.1.1 is a minor release, which fixes some crashing bugs, The Long Haul (arcade level), and instructions on the titlescreen, and adds a new translation (Italian). It will be available for other platforms soon.

FacebooktwitterredditmailFacebooktwitterredditmail

Serious Business

May 27th, 2011 by Jetrel

credit to “danst”

       __  .--.
     /'  '\/    \
     |    |  O |
     |  O |.  .|
   .|\___/  ""  ''\
   |  .  .  .  . |
   | / \ / \ / \/./
     ''---------''
   /'''__    ___''''\
  |__/    \ /    \.|
   |______||______|

FacebooktwitterredditmailFacebooktwitterredditmail

Frogatto 1.1 Released!

May 11th, 2011 by Ben

At long last, Frogatto 1.1 is out! It’s available for Mac and Windows, Linux (just source for now, but you can help provide something better), and OpenPandora on the download page. It has also been submitted to the iOS App Store and Mac App Store for review.

In this release we’ve added arcade mode, made art improvements for the forest, basement, dungeon, and other areas, improved the look of the “darkness” feature, added more forest enemies, added translation support (with 4 completed translations; French, Brazilian Portuguese, Chinese, and Japanese), added achievements, and fixed a bunch of bugs. As well, on iOS, we redid the controls, added iPad support, integrated OpenFeint, and made multitasking work.

EDIT: It is now on the iOS App Store, and Mac App Store. And for those requesting fullscreen support, in the Mac App Store version, it’s there in the File menu now (in any other version you can press ctrl+f).

FacebooktwitterredditmailFacebooktwitterredditmail

Graphics News #17

May 2nd, 2011 by Jetrel

We’ve polished up the dungeon back-wall graphics. (I’ve got quite a bit more in the works to bring the dungeon up to par with everything else, but it’s a low priority at the moment.)

We’ve also added some additional bits of furniture, mostly thanks to our new contributor, Arikel.

FacebooktwitterredditmailFacebooktwitterredditmail

Frogatto on Mac App Store

April 30th, 2011 by Jetrel

Frogatto has just gone on sale on the Mac AppStore! (It’s $1 at the time of this writing.) A new feature that comes from this is automatic updates, which we haven’t had before.

As a thank-you to our existing community, and because the Mac AppStore is intel-only, and Ryan and I (and others) are still on PPC, we’re going to keep a free build of the game available on this site. If you like frogatto, please support us by buying the game on the app store, or donating via our paypal link.

FacebooktwitterredditmailFacebooktwitterredditmail