We have a completed flash game similar to Tetris that is ready to be "linked up" for multiplayer. After doing some research and asking here: Flash Sockets, Peer-to-Peer Capabilities , we have come to the conclusion that P2P networking done in the way xbox/ps3 games handle online games is not possible without expensive/dubious adobe software/services (FMS/Cirrus) on the flash platform at this point in time. Basically, a flash client is not allowed to become a "host" listening on sockets without the RTMFP protocol.
The Question that needs Suggestions:With that summary, the question is... what is the best way to implement the network infrastructure for a game like Tetris, which has quite a bit of small I/O going from user to user (say, a max of 4 players at a time). Given that we can't assign a single player as the host p2p style, our options are:
1.) Fat Server with Game Logic, Light Clients updating display/interpolating based on server updates (Ala Quake)
2.) Light Server handling communication between Fat Clients (Ala Concurrent simulation like RTS games)
The problem is, we are inexperienced when it comes to networking games and therefore would really love some advice on the pros/cons of those solutions (or even other solutions). Our Tetris game isn't as trivial as sending "attacking lines" when a client clears lines to add to the other players currently battling. We need a little more real-time syncing than that. For example, the list of next tetriminos is a single shared source where everyone is "fighting" for desirable pieces.
Finally, depending on the implementation chosen, I'm wondering if anyone has any experience with Node.js on game servers. I'd assume if the server was a lightweight server only handling transfers of data between clients that Node would be a good perfect fit. However, if game logic was placed on the node.js server, I'd assume that the blocking nature of the calculations would make Node.js' single threaded no-blocking I/O approach redundant?
How can find out the linked url of the image in the flash of a website? I looked for the image url some time. but couldn't find itif find the linked url of the image, and i want to alter an image linked url address. where is the code in?
On the mxmlc command line, I can include paths to RSL files. I can choose to link these RSLs at runtime by setting
-static-link-runtime-shared-libraries=false What if I need to link to some rsls and embed (static-link) other rsls? Is there a way to set the link settings for each rsl?
I've noticed something weird at IE. When i have a flash object (.swf) inside a page, then any action/function inside $(document).ready starts after the swf object has been fully loaded. (While in firefox, it doesn't need the swf to be fully loaded)
Using flex builder with flex sdk 3.4.0 if the module is remote like url...The READY event is never fired, i don't understand why.Do you get the same behavior? Original code is from url...[code]
Say I have some 2D artwork in Flash CS4 format .FLAs, and I'd like to put it into an iPhone game that uses OpenGL ES, keeping it in vector format. An OpenGL-ready format could just be a list of vertex positions and colors for a triangle strip.
Is there a non-polling way for Javascript to command Flash right when its external interface is ready? In Actionscript, I've registered a function for Javascript to call:[code]SWFObject lets you run code when Flash has been successfully embedded through a callback. I attempt to run $ ('flash Player'). doStuff in this callback, but it claims it's undefined. It seems that Flash needs some time to boot up its external interface. So I've been using a polling hack to find out when the external interface is ready:[code]There's a visually perceptible delay in the execution of doStuff and it makes my overall code structure muddy.
From a button in Flash I just want to call a function written in jQuery.When I place the function outside jQuery's $(document).ready it works fine:[code]
i've been looking in to making a multiplayer flash game.I downloaded and installed SmartfoxserverPRO with all the example files which are really awesome. I understand the idea/concept for those simple games like tic tac toe.So i'm here looking for information on making savable data to start off simple maybe just being able to save and store records for a tic tac toe game.
Is there any free Open Source Multiplayer Flash Game (like Happyfarm... in facebook) that I can use and build my own small network?What I'm looking for is the source code of some Multiplayer Flash Game (like http:[url]....for example)I do not know to much thing to talk about it, but if there is some, I hope:
+The game can run without any other system (not a plug-in or mod)
+If there is server-slide script, it should be PHP
I want to make a simple game so that I can play against my friends at school. The school uses macs. Also if you can't make online games with flash what can I use. Also can they be 3-d if I eventually get good at making games?
I want to develop a game like wordfeud for android and iPhone. For now I don't have a mac so I am not able to use xcode to develop for iPhone. Therefore I have decided to use adobe AIR so I can link the game to both android and iPhone.
I am able to build offline games like tetris etc. but what should I look into when I want the game to be multiplayer just like wordfeud where you can have several games running at the same time. I know I need a server for this, but can I use xampp for now just to test the application and then export the db to a real server or is it a different kind of server I must use?
I have purchased a flash cursor (.fla) with nice sparkling effects while a cursor is being moved. I would like to make similar/same sparkles playing around a cursor ALSO while a mouse is not being moved. but only stackoverflow.com has the experience in flash, I do lack of it. i use adobe flash cs5 and tried to find a solution for a hell of hours, but unsucessfully. zipped cursor file .fla can be downloaded here: [URL]
I wish to create a multiplayer game facebook app. A game will have 1 to 4 people in it playing from their own systems. I wish to target, lets say, 10K simultaneous online users. I am planning to write the client side game in Flash. I wanted to know how these clients communicate with each other. Can these clients communicate directly with each other or I should go with "server as middleman" approach? I want the game to work even in "restricted" networks. If server, how do I have things working from google app engine cloud service? I came across channel API, should I use that? Would it work with a flash client?
I'm working on a puzzle game in Flash. It's a two-player, head-to-head game with some realtime elements. It is not Tetris-like, but the level of player interaction and the rate of movement is similar to, though slightly more complex than, Tetris Battle on Facebook.
Naturally, I would like to match players up over the Internet. I would also like to prevent cheating as much as possible. Because of this, I am researching an authoritative server solution, much like Colin Moock describes in this answer to a similar question. That is, the server runs the authoritative game logic while the client runs a parallel simulation, sending player movements to the server for validation.
My question is this: Doesn't this essentially mean implementing the game logic on both the client and server side? Worse still, the server probably isn't going to run its simulation in Flash/ActionScript, which means you can't share code and you'll be implementing the same logic twice in two different languages.
I made swf file that sends id to php, than php collects info from mysql by this id, and returns result, than flash does his work with that result. The problem is here, I will try to explain it as clearly as I can: everything works fine when I do that on the computer that has all the source files and of course xampp running.
I've been searching a long time to find a way to do multiplayer in flash. I came across xmlSocket. I'm trying it out really simple at first:
[Code].....
I've gotten all the policy stuff working. And this works perfectly while testing on my computer. If you're wondering, I have a python script listening on port 2950. Here's the python code:
[Code]....
Finally to the problem. No matter what I try, I can't seem to get these two applications to communicate when on different machines. When I try it, no messages even get through to python, it doesn't see anything trying to establish a connection. So I suspect it is having a problem on the flash side of things. Also, is there any way to have multiple flash apps communicating directly, rather than going through the server?
We're looking for a good server to purchase to develop games with Flash/Android/iPhone clients with a .NET backend server (And even more importantly, that supports clustering and scaling in general).Now we've examined both ElectroServer and SmartFoxServer (both products look fine and suitable for our needs), however both can only be extended using Java.
I am looking to create a multiplayer game for both mobile devices (iPhone, Android, etc) and desktops. I have been looking at creating the game in Flash for desktops and writing the game in native language on the mobile device. Does anyone know of a good multiplayer socket server that work for connecting both the mobile and the desktop applications together.I have looked into SmartFoxServer (had a lot of trouble getting that working for some reason) and red5.
I would like to create a multiplayer online game (tic-tac-toe/chess) and i am not sure which language to use. I am familiar with JS/PHP and heard about comet Does comet stand a chance against Flash, if yes whats the limitations except the lack of smooth animations like flash allows? What are the differences regarding resources and memory needed? SECURITY: Is it possible to create Flash-games without any chance to modify (flash-)cookies etc... for cheating? i know lot of questions, i do hope for your recommendations into the reight direction.
i have an one input text box, first i type text into it and press space bar at this it will become empty and ready to accept next input from starting position, i make the text box empty by
textbox.text = "";
but the cursor not set to initial position in text box it consider "" as "space" and cursor will display after one space only, i need that cursor again move to starting position..
I am currently making a website in flash for a football team and i would like to make a list of all the players names which link to separate player profiles in the same flash document.
I am not an AS3 guru but recently I started learning AS3 and write code to build a website for my digital photography content.Of course, you can argue, why not get a ready-to-use template and go from there. However, I wanted a website with flexibility and tailored to my needs and one that can be easily updated and scalable.The question I have is in regards to the design patterns in AS3. I have created several classes that create for example photo galleries, and then use photo viewer class to display photos, etc.However, as the code is growing and more and more instances of different objects appear within my code all over the place i am starting to loose track of how to communicate between objects and what would be the best practices for building a photography website.I read about Factory Method Pattern and Singleton Pattern as well as MVC, and seems like MVS Pattern would offer the best way i could build the website.
I use the FLVPlayback Component in a project and i was wondering what bufferTime actually does. If autoPlay is true, the video starts playing after the bufferTime is reached. But i need autoPlay set to false... So does it trigger the "ready" event or something?
I have Adobe Creative Suite, but I haven't begun to learn how to use Flash yet. I work primarily with PHP using Dreamweaver and have a very basic understanding of JavaScript.I just discovered a really cool script here. The page displays a Flash image map of Africa and a table listing every nation in Africa. If you hover over Kenya on the map, Kenya is highlighted on both the map and the table. Vice versa, if you hover over the word Kenya on the table, Kenya is highlighted on both the table and the map.
I would like to duplicate this on my website. (It's in the public domain.) So I copied the source code, then began recreating the style sheets, JavaScript files and images. When I view the page locally, I see the Flash image (map of Africa). But when I hover over a nation on the map, it says "undefined," rather than showing the name of the nation. The table listing the nations doesn't display at all.
Does anyone have any idea how this affect is created? Can you offer any tips that might help me recreate it on my site? It appears that AJAX is another technology used on the page. That's something else I have no experience with, but I'm not sure if AJAX is associated with the Flash map/table function or not.