This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Inspired by | |
// http://www.jorisdormans.nl/pdf/dormans2010_AdventuresInLevelDesign.pdf | |
// http://larc.unt.edu/ian/pubs/pcg2011.pdf | |
// http://larc.unt.edu/ian/pubs/DoranParberryQuests2015.pdf | |
// Idea: Use a macro to extract Symbol and Terminal information and populate enums | |
enum Symbol { | |
Quest; | |
SubQuest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Inspired by http://www.jorisdormans.nl/pdf/dormans2010_AdventuresInLevelDesign.pdf | |
enum Symbol { | |
Dungeon; | |
Obstacle; | |
} | |
enum Terminal { | |
Treasure; | |
Key; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Script { | |
var program :hscript.Expr; | |
var interp :hscript.Interp; | |
public function new(source :haxe.io.Input) { | |
var parser = new hscript.Parser(); | |
interp = new hscript.Interp(); | |
try { | |
program = parser.parse(source); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.blazingmammothgames.util; | |
#if neko | |
import neko.vm.Thread; | |
import neko.vm.Mutex; | |
#elseif cpp | |
import cpp.vm.Thread; | |
import cpp.vm.Mutex; | |
#end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { | |
public function new( val ) x = val; | |
public var x : Int; | |
} | |
abstract ConstFoo(Foo) from Foo { | |
public var x(get, never) : Int; | |
function get_x() return this.x; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if macro | |
import haxe.macro.Context; | |
#end | |
class Main { | |
macro static function load_json(file :String) { | |
var data = sys.io.File.getContent(file); | |
var json = haxe.Json.parse(data); | |
return Context.makeExpr(json, Context.currentPos()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import haxe.ds.Option; | |
using Test.OptionTools; | |
class OptionTools { | |
static public function fmap<T>(m :Option<T>, f :T->T) :Option<T> { | |
switch m { | |
case Some(x): return Some(f(x)); | |
case None: return None; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MainTest { | |
static public function main() { | |
trace("Hello world!"); | |
trace('Fibonacci of 7 is: ${fibonacci(7)}'); | |
} | |
static function fibonacci(n) { | |
if (n == 0) return 0; | |
else if (n == 1) return 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Haxe implementation ported from https://gist.github.com/Flafla2/f0260a861be0ebdeef76 | |
// Related article: http://flafla2.github.io/2014/08/09/perlinnoise.html | |
class Perlin { | |
public var repeat :Int; | |
public function new(repeat :Int = -1) { | |
this.repeat = repeat; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Markov { | |
var cache :Map<String, Array<String>>; | |
var starting_keys :Array<Array<String>>; | |
public function new() { | |
cache = new Map<String, Array<String>>(); | |
starting_keys = []; | |
} | |
public function train(input :String) { |