The Facebook Platform has created a whole new store for online games and start ups such as the collective Games Network (Sgn) and Zynga. I wrote about developing Facebook Applications a while ago as a overview of my experiences. Some of my apps are games and some are not - I'm a game developer so I prefer production games.
While going through my blog traffic data, I saw hunt terms specifically about developing games on Facebook. That leads me to believe that someone is seeing for facts about that. I have some of that knowledge to share!
Facebook Game
I ordinarily make games for Facebook using Flash and ActionScript. There in fact isn't a good way to make in fact interactive games using web languages and Flash is fairly excellent for 2D casual game experiences. You can find a list of the Facebook games that I've made or had a hand in from my developing Facebook Applications article.
There are basically three real games on that list: FlipCup Challenge, Sam's Solitaire, and Sheep Tycoon. Sheep Tycoon is by far the prettiest because there was a real artist on that scheme - the other two I just slapped some art together to get the game out quickly. I'm not in fact an artist.
Using Facebook Api From Flash
Figuring out how to best make calls to the Facebook Api from Flash was one of the first things we had to deal with. In Sheep Tycoon, the high score table shows up in the Flash part of the game opposed to FlipCup or Sam's solitaire where I just did it in Php. There are a whole bunch of Flash Facebook Api's - I didn't like any of them.
The explication we came up with is to make a 0x0 iframe - basically imperceptible - on the canvas page and load a Php script that would do all the Facebook Api calls. So, if we needed to add a new high score to our database, we would load the script in the imperceptible iframe. This works for sending notifications or doing any sort of Facebook Api call.
Getting the Friends
Although I didn't find doing this all that complicated, I did see a hunt term for it in my traffic data. The easiest way to accomplish this is to just get the user's friend Id's in Php and then passing it into the game using flashvars. I don't see many cases where the user's friend list will change while the game is being played. Once you have the friend Id's in the game you can do anything you want with it. We used it to show the list of your friend's high scores in Sheep Tycoon.
The game takes the friend Id's from flashvars. When we need to get the high scores, we pass the same Id's to our Php script that does all the database work and then returns the data in Xml form for Flash to read.
Dealing with High Scores
You can display the high scores inside the game or you can display as a Php page. I will ordinarily opt to do the latter because there are less steps involved. Php will get the data and display the data while Flash has to call a Php script to get the data and then display it. However, displaying the high scores as part of the game itself is a better experience.
The semi-tricky aspects with high scores is how to description them and assign global ranks to each player. I've used time as a tie-breaker for scores that are identical. If you got the score first, you will stay above the someone who got the score second. MySql has been our database of choice and you can use Order By with more than one field so it would be: Order By score, time.
In FlipCup Challenge, each user has a global rank that is considered by their high score. This rank changes as players get new high scores. Updating everyone's global rank every time someone managed to get a new high score didn't seem like a good idea.
Firstly, to presuppose the global rank, I figured out the estimate of rows that had a score higher than the score we are seeing to get a new rank for. With that information, we'll know that the rank will be something lower than the row count. We then find all the scores that are the same as the score we are using and then conclude where it fits in there. With those two pieces of facts we can presuppose the right rank.
In order to make sure the scores are literal, when anything goes to look at the Scoreboard in FlipCup, we also update the ranks of all your friends when your rank changes. Global ranks are also recalculated every time you view the Scoreboard page. This will ensure that all the global ranks will be literal, when someone is viewing it.
I'm sure there are better ways for determining global ranks than this but, for FlipCup's purposes, it works fine. The main objective was to make sure the pages loaded fast so the code had to do the work quickly.
Experiment
Game development on Facebook is still in infancy. I'm not aware of many sites dedicated to providing facts about games and Facebook. The games themselves are still rather primitive as most don't in fact tap into the inherent of collective networks. I believe collective networks are a excellent tool that can help spread new games and game ideas.
I have not looked much into development on the "new" Facebook even though I have switched to it and my links above point to the new Facebook. My apps are still working fine so I am not too concerned. The marketing and increase of apps are going to be affected. The chance of a Zombies-esque app proliferating is very unlikely in this new environment.
I will continue to originate games for Facebook and other collective networks. There are some ideas I have floating nearby - some of which I am working on. Experimenting with dissimilar ideas is the best any of us can do as this is a new road to travel.
Tips For Developing Facebook Games
ไม่มีความคิดเห็น:
แสดงความคิดเห็น