You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* PlayGameDevLevelView running world in main thread for better performance
This reduces memory and CPU usage, improves smoothness of playback, and makes keyboard and mouse input more responsive.
It would be close to being able to do test mode in main thread, too, if we wanted.
With a little more work, we would then have no worker threads at all in game dev mode.
Random misc half of fix for loading keyValueDb while playing game dev levels.
Made ?dev=true work for PlayGameDevLevelView.
Would need to think about if we always want Box2D loaded on the main thread.
Would need to standardize on @world.rand.shuffle instead of _.shuffle to use this in maze levels.
Math.random() and _.shuffle in player code may need a fix to make deterministic, not that we teach those yet.
There may be a slight memory leak of old worlds yet to clean up after level restarts.
If we can figure out how to clean up LankBoss Thang stateChanged updates, we'll gain even more performance.
Unrelated to this change, I noticed that our EaselJS click handler gets really unperformant with many sprites on the screen, so for best speed, we'll want to fix that, too.
* Fix some misc stuff
* Add world.rand.shuffleCompat to migrate from using _.shuffle in game engine
* Update CreateJS from somewhere around 0.8 (Nov 2014) to 1.0
TODO: get Sounds working all the way
TODO: take advantage of new StageGL instead of old SpriteStage, where we can now use more than one texture
See createjs.js line 7735 monkeypatching of hit testing for performance increases that we'll want to make sure to preserve in future updates
* Other updates to go along with CreateJS update
* Fix a couple SoundJS and test issues with the CreateJS update
* Try using main thread game dev mode for testing levels, too. TODO: investigate whether memory is leaking.
* Removed test for one-spritesheet-per-container (restriction not needed in new StageGL)
* Fixed the memory leak
* Minor cleanup
* Fix sounds in synchronous game dev
* Fix bug in optimized click hit test in level editor
* Fix game dev levels running out of time when synchronous and indefinite
* Disable rerendering of spritesheets for performance with new StageGL
* Fix rendering spritesheets syncronously blowing up max spritesheet size
* Don't consolidate walls when simulating synchronously to avoid messing with graphics
* Fix wall display during game dev levels
* Don't go crazy on game-dev particles in campaign map
* Clean up some unused code
0 commit comments