I have a strange issue with my flash application. I'll start with example:
If you are using Chrome follow this link: http://miriti.ru/games/t/
It is a simple application, 50 PNG sprites renders on one Bitmap using BitmapData::draw() method.
If you will try to click repeatedly or right-click you will see lag.
I tested it on different systems with latest Chrome and got the same behavior. Nothing like this happens on IE nor Fx.
Source code of this example below:
package
{
import flash.display.Bitmap;
import flash.display.BitmapData;
import flash.display.Sprite;
import flash.events.Event;
/**
* ...
* @author Michael Miriti
*/
public class Main extends Sprite
{
private var _bmp:Bitmap = new Bitmap(new BitmapData(800, 600, false, 0x0));
private var objs:Array = new Array();
[Embed(source="638283338.png")]
private static var _objbmp:Class;
public function Main():void
{
if (stage)
init();
else
addEventListener(Event.ADDED_TO_STAGE, init);
}
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
addEventListener(Event.ENTER_FRAME, onEnterFrame);
addChild(_bmp);
for (var i:int = 0; i < 50; i++)
{
var no:SomeObject = new SomeObject(new _objbmp());
no.pos.x = Math.random() * 800;
no.pos.y = Math.random() * 600;
objs[objs.length] = no;
}
}
private function onEnterFrame(e:Event):void
{
_bmp.bitmapData.fillRect(_bmp.bitmapData.rect, 0x0);
for (var i:int = 0; i < objs.length; i++)
{
objs[i].update();
_bmp.bitmapData.draw(objs[i].render(), objs[i].matrix());
}
}
}
}
import flash.display.BitmapData;
import flash.geom.Matrix;
import flash.geom.Point;
class SomeObject
{
private var _data:BitmapData;
public var pos:Point = new Point();
private var ma:Matrix = new Matrix();
private var xdir:Number;
private var ydir:Number;
function SomeObject(bmp:flash.display.Bitmap):void
{
_data = bmp.bitmapData;
xdir = Math.floor(-1 + Math.random() * 3) * 5;
ydir = Math.floor(-1 + Math.random() * 3) * 5;
if (xdir == 0)
xdir = 5;
if (ydir == 0)
ydir = 5;
}
public function matrix():Matrix
{
ma.identity();
ma.translate(pos.x, pos.y);
return ma;
}
public function render():flash.display.BitmapData
{
return _data;
}
public function update():void
{
pos.x += xdir;
pos.y += ydir;
if ((pos.x > 800) || (pos.x < 0))
xdir = -xdir;
if ((pos.y > 600) || (pos.y < 0))
ydir = -ydir;
}
}