I would suggest that you build it "from the API upwards"...
Basically what the API does is handling messages from server <--> client.
So yes, you could go about it as you suggest, by just building your game completely and noting all the variables and stuff for later implementation, but I can see no reason why that would be easier than to just "start from scratch"...
Now I'm in no way an expert in the API (yet), but from where I'm standing it would probably save you some time later on if you think in terms of how the API works from the beginning.
And the learning-experience when you do it that way, will definitely be a good thing when you're making your next game :)
If you check through the examples that comes with the api, you'll get a pretty good picture what it's all about...keep in mind that it's all about sending messages back and forth.
I'm also working on a kind of tutorial/walkthrough for the api, where I'm building a game and trying to describe the process of it all. Stay tuned for that...
If you've got some problems and/or question, just post 'em here in the forum and I'll try and help you as much as I can...
cheers!
Game Development with Multiplayer API
Frippe zei
een tijd geleden | Bericht #2
rdz zei
een tijd geleden | Bericht #3I built my 1st game as so called 'local multiplayer' first. So i had control over the play-pieces via 2 sets of keys @ one single keyboard at first.
After this was playable a added on the multiplayer interface.
I guess it is also depending on the type of game you want to play & which part of it all you need to learn.
Myself i started with zero prior experience at also actionscript, which was mainly why i started with the local thing first.
After this was playable a added on the multiplayer interface.
I guess it is also depending on the type of game you want to play & which part of it all you need to learn.
Myself i started with zero prior experience at also actionscript, which was mainly why i started with the local thing first.
Laatst gewijzigd een tijd geleden
Antwoord op onderwerp
Schrijf je nu in om te kunnen antwoorden op onderwerpen
IvyGames zei
een tijd geleden | Bericht #1More specifically, can I simply write my game completely, noting down the information that will have to be transferred between players in a couple variables, then just put in the API, or is it neccessary to build the game from the API upwards?
Thanks.