When comparing Flixel vs CRM32Pro SDK, the Slant community recommends Flixel for most people. In the question“What are the best 2D game engines?” Flixel is ranked 20th while CRM32Pro SDK is ranked 91st. The most important reason people chose Flixel is:
Ports are available for Objective C, C# (XNA), HaXe and [Monkey X](https://github.com/devolonter/flixel-monkey).
Specs
Ranked in these QuestionsQuestion Ranking
Pros
Pro Many ports available
Ports are available for Objective C, C# (XNA), HaXe and Monkey X.
Pro Built-in pathfinding and following
Pathfinding just means figuring out how to (or if you can) get from A to B. FlxTilemap has a function FlxTilemap.findPath() which returns a FlxPath object, which is just a collection of "nodes", or FlxPoint objects.
Pro Camera system for split screen
Create effects like "split screen" views, or "picture in picture" style displays, or even mini-maps with FlxCamera. Each camera is an independent display object, with its own zoom, color tint, rotation, and scaling values.
Pro Record and play back replays
Replays are essentially a list of what keyboard keys were pressed, and what mouse inputs were given, during a specific time frame. Because Flixel is largely deterministic, you can use that information to recreate a gameplay session that someone else recorded, as long as you have the same SWF.
Pro Basic features provide a solid foundation
- Display thousands of moving objects
- Basic collisions between objects
- Group objects together for simplicity
- Easily generate and emit particles
- Create game levels using tilemaps
- Text display, save games, scrolling
- Mouse & keyboard input
- Math & color utilities
Pro Flixel Power Tools extend the functionality
Flixel Power Tools provide a set of classes and APIs that provide more functionality.
Pro Used to create Canabalt, game that started endless runner genre
Pro Great tools included
EditorDPF: resource editor for managing images, tiles, sprites, sounds, etc. of your game
MSTE: tile-based parallax scrolling engine with support to Tiled Qt .TMX files
SetupProject: customized configuration system.
Pro Cross-platform
CRM32Pro works on Windows, Linux and MacOS X.
Pro Open source and free
CRM32Pro is licensed under LGPL license with full access to the source code on the website.
Cons
Con It is now obsolete
With Adobe Flash dead, Flixel is now unworkable.
Con Development has stopped
Seems like development for Flixel has stopped. The last commit on all of the branches of it's Github repository are from 2011.
Con Poor performance on mobile
Con Not as beginner friendly
C/C++ skills and general knowledge of SDL and basic game programming is required in order to get all the benefits.