Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror

Submission + - TypeScript vs Haxe (onthewings.net)

lars_doucet writes: Released in 2012, Microsoft's TypeScript is perhaps the best-known "compile to JS" language, but it wasn't the first. One of the earliest was Haxe, whose JS target first appeared in 2006.

In his illuminating article, TypeScript vs Haxe, Andy Li gives an excellent rundown of the two languages' various merits, but the bottom line is:

"Existing JS developers will favor TypeScript as they are more similar in many ways. They can utilize their existing skills immediately. Non-JS developers with backgrounds like Java/C# or even from the functional programming world will appreciate Haxe more since it fixes a lot of weirdness of JS."

The full article includes an excellent rundown of the type systems, syntax, scope handling, compilers, and overall language design philosophy.

Comment Re:So, not FOSS anymore? (Score 4, Interesting) 20

That's actually a concern of ours and we've designed the architecture around it to leave as much code as possible open source. To be clear we are NOT creating a new, non-open-source fork. We're using the existing public stack of OpenFL and Lime you can find today. However, as you can read in the article, we're building console-specific "batteries" that slot into the very last mile of the console stack as a separable library that can be safely distributed under the terms of console NDA's, without putting any burden on the existing public codebase.

Comment Re:Flash for consoles? (Score 2) 20

What you're basically asking for is the underlying Lime layer which is a part of this solution. The "OpenFL" part -- the Flash API implementation, is a convenience layer that would, yes, make it possible to port flash games to consoles, but the underlying Lime layer is pretty close to the metal and does as little as possible while unifying things like asset management and providing direct access to a consistent rendering API.

This compiles down to native C++ output making hardware calls and unlike Unity, does NOT rely on a virtual machine.

Submission + - Open Source Haxe/OpenFL platform will support home game consoles (fortressofdoors.com)

lars_doucet writes: At last week's World Wide Haxe conference, a coalition of game developers announced that the open source platform Haxe/OpenFL is coming soon to home game consoles. The first three games that will ship using the technology are Yummy Circus , Defender's Quest (HD edition) , and the award-winning Papers, Please.

Haxe is a programming language that compiles to other programming languages (everything from C++ to Javascript to Python), has been around for about 10 years and is quite powerful. OpenFL is a hardware-accelerated cross-platform reimplementation of the Flash API, built on top of Haxe (but does not have the Flash player's performance and security limitations and has nothing to do with Adobe), and is built on a low-level cross-platform layer called Lime, which can be used separately for those who have no need for a Flash-like API. This could eventually lead to console compatibility for engines that are built on top of Haxe/OpenFL, such as Away3D, Stencyl, HaxeFlixel, and HaxePunk.

Six console targets are planned: WiiU, PS4, XBox One, PSVita, 3DS, and PS3; footage of demos running on the WiiU was presented at the talk and are included in the linked article.

Submission + - Flash IDE will integrate with open source, cross-platform Haxe/OpenFL platform

lars_doucet writes: Flash CC now has an SDK for creating custom project file formats; this lets you use the Flash IDE to prepare and publish content for (not-the-flash-player) compile targets.

Among these new platforms is OpenFL, a fully open-source re-implementation of the Flash API that exports to Javascript and C++ (no Flash Player!), among other targets:
http://www.openfl.org/blog/201...

When Adobe demoed the custom project feature at Adobe MAX the other night, they brought out Joshua Granick (lead maintainer of OpenFL) to show off a custom OpenFL project format that lets you make Flash Art in Flash CC, then compile it out to Flash, HTML5, and native C++ (desktop+mobile) targets.

Maybe Adobe heard us after all?

Submission + - Fixing Steam's User Rating Charts (fortressofdoors.com)

lars_doucet writes: Steam's new search page lets you sort by "user rating," but the algorithm they're using is broken.

For instance, a DLC pack with a single positive review appears above a major game with a 74% score and 15,000+ ratings.

The current "user rating" ranking system seems to divide everything into big semantic buckets ("Overwhelmingly Positive","Positive","Mixed",etc), stack those in order, then sort each bucket's contents by the total number of reviews per game. Given that Steam reviews skew massively positive, ( half are "very positive" or higher), this is virtually indistinguishable from a standard "most popular" chart.

Luckily, there's a known solution to this problem — use statistical sampling to account for disparate numbers of user reviews, which gives "hidden gems" with statistically significant high positive ratings, but less popularity, a fighting chance against games that are already dominating the charts.

More details: Fixing Steam's User Rating Charts

Comment Re:Lets Clarify....... (Score 1, Offtopic) 29

Actually, several of the developers are major contributors to open source projects: Here's open-source libraries that are DIRECTLY the result of Defender's Quest development:
http://github.com/HaxeFlixel/f...
http://github.com/HaxeFlixel/f...
http://github.com/larsiusprime...
And here's my open-source report card:
http://osrc.dfm.io/larsiusprim... Nicolas Canasse, developer of Evoland, *created* the Haxe programming language. It's totally open source. Here's his open-source report card:
http://osrc.dfm.io/ncannasse Here's Sean Hogan (Anodyne/Even The Ocean)'s contributions:
http://osrc.dfm.io/seanhogan That's just off the top of my head.

Submission + - Latest Humble Bundle Supports Open Source GameDev Tools (humblebundle.com)

lars_doucet writes: The latest Humble Weekly Bundle is titled "Celebrating Open Source" features eight indie games, with charity going to the open source tools used to develop them.

The open-source programming language Haxe is strongly represented: three of the charities include the Haxe Foundation itself, OpenFL (recently featured on Slashdot), and FlashDevelop, the most popular open-source Haxe/ActionScript IDE. The fourth is Ren'Py, the Python-based visual novel engine used in award-winning games like Long Live the Queen and Analogue: A Hate Story.

The games themselves are Magical Diary, NEO Scavenger, Offspring Fling!, Planet Stronghold, and for those who pay $6 or more, Anodyne, Defender's Quest, Evoland, and Incredipede, as well as 6 soundtracks.

7 of the 8 games are cross-platform across Mac/Win/Linux, and all are DRM-Free.

Comment Re:To Clarify (Score 1) 166

There's a few things here and there, not sure if there's an actual list. If you target flash, obviously you have all flash functionality available, but certain things (such as super-advanced international text field support) still need to be added on various targets. HTML5 is a brand new target so that's the least mature, whereas mobile and desktop targets have really good coverage. A "list of gaps we need to fill" would definitely a good feature to add to the OpenFL site, though.

Slashdot Top Deals

Between infinite and short there is a big difference. -- G.H. Gonnet

Working...