forked from: typingcommand
/**
* Copyright Jiannisos.Sotiropoulos ( http://wonderfl.net/user/Jiannisos.Sotiropoulos )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/fbRi
*/
// forked from ABA's typingcommand
package {
import flash.display.Sprite;
[SWF(width="465", height="465", backgroundColor="0", frameRate="30")]
public class Main extends Sprite {
public const WIDTH:int = 465, HEIGHT:int = 465;
public function Main() { main = this; initializeFirst(); }
}
}
class Actor {
public static function update(s:*):void {
for (var i:int = 0; i < s.length; i++) if (!updateActor(s[i])) s.splice(i--, 1);
}
public static function updateActor(a:*):Boolean {
var f:Boolean = a.update();
a.move();
return f;
}
public var pos:Vec = new Vec, vel:Vec = new Vec;
public function move():void {
pos.incrementBy(vel);
}
}
//----------------------------------------------------------------
const TITLE:String = "typingcommand";
const DEBUG:Boolean = false;
function initialize():void {
missiles = new Vector.<Missile>;
explosions = new Vector.<Explosion>;
cities = new Vector.<City>;
for (var i:int = 0; i < 6; i++) {
cities.push(new City(screen.size.x * (0.1 + i * 0.16)));
}
enemyMissileAppTicks = 0;
if (isInGame) Message.addOnce("type incoming words",
new Vec(screen.center.x, screen.size.y * 0.8));
}
var colors:Array = [Color.red, Color.green, Color.blue,
Color.yellow, Color.magenta, Color.cyan, Color.white];
var colorsIndex:int;
var enemyMissileAppTicks:int;
function update():void {
if (++colorsIndex >= colors.length) colorsIndex = 0;
if (--enemyMissileAppTicks <= 0) {
var m:Missile = new Missile;
m.setEnemy();
missiles.push(m);
enemyMissileAppTicks = 60 / (1 + ticks * 0.001);
}
Actor.update(missiles);
Actor.update(explosions);
if (isInGame) {
Actor.update(cities);
if (cities.length <= 0) endGame();
}
screen.fillRect(screen.center.x, screen.size.y * 0.975, screen.size.x, screen.size.y * 0.05, Color.yellow.i);
}
var words:Array = ["a", "able", "about", "across", "after", "all", "almost", "also", "am", "among", "an", "and", "any", "are", "as", "at", "be", "because", "been", "but", "by", "can", "cannot", "could", "dear", "did", "do", "does", "either", "else", "ever", "every", "for", "from", "get", "got", "had", "has", "have", "he", "her", "hers", "him", "his", "how", "however", "i", "if", "in", "into", "is", "it", "its", "just", "least", "let", "like", "likely", "may", "me", "might", "most", "must", "my", "neither", "no", "nor", "not", "of", "off", "often", "on", "only", "or", "other", "our", "own", "rather", "said", "say", "says", "she", "should", "since", "so", "some", "than", "that", "the", "their", "them", "then", "there", "these", "they", "this", "tis", "to", "too", "twas", "us", "wants", "was", "we", "were", "what", "when", "where", "which", "while", "who", "whom", "why", "will", "with", "would", "yet", "you", "your"];
var missiles:Vector.<Missile>;
class Missile extends Actor {
public var isPlayers:Boolean;
public var isDestroyed:Boolean;
private var startPos:Vec = new Vec;
private var target:Vec = new Vec;
private var eticks:int;
private var text:String, addScore:int;
public function setEnemy():void {
pos.x = rand.sx(0.8, 0.1); pos.y = 0;
startPos.xy = pos;
vel.x = rand.sx() - pos.x; vel.y = screen.size.y;
var sp:Number = 300 / (1 + ticks * 0.0005);
vel.scaleBy(1 / rand.n(sp * 2, sp));
text = words[rand.i(words.length)];
addScore = text.length;
}
private var tp:Vec = new Vec;
public function setPlayer(tm:Missile):void {
pos.xy = cities[rand.i(cities.length)].pos;
startPos.xy = pos;
tp.xy = tm.pos;
eticks = vel.distance(pos) / 20;
tp.x += tm.vel.x * (eticks + 20);
tp.y += tm.vel.y * (eticks + 20);
target.xy = vel.xy = tp;
vel.decrementBy(pos);
vel.scaleBy(1 / eticks);
eticks++;
isPlayers = true;
}
public function update():Boolean {
var lc:uint;
if (isPlayers) {
lc = Color.blue.i;
if (--eticks <= 0) {
explosions.push(new Explosion(target));
return false;
}
screen.draw(function(g:Graphics):void {
g.lineStyle(1, colors[colorsIndex].i);
g.moveTo(-5, -5); g.lineTo(5, 5);
g.moveTo(5, -5); g.lineTo(-5, 5);
}, target);
} else {
lc = Color.red.i;
screen.drawText(text, pos.x, pos.y + 20);
for each (var e:Explosion in explosions) {
var d:Number = e.pos.distance(pos) - e.radius;
if (d <= 0) {
if (isInGame) {
var ads:int = addScore;
var st:String = String(ads);
if (e.multiplier > 1) {
st += " x " + e.multiplier;
ads *= e.multiplier;
}
Message.add(st, pos, 0, -50, 30);
score += ads;
}
e.multiplier++;
explosions.push(new Explosion(pos, e.multiplier));
isDestroyed = true;
return false;
}
}
if (pos.y >= screen.size.y * 0.95) {
explosions.push(new Explosion(pos));
isDestroyed = true;
return false;
}
}
screen.draw(function(g:Graphics):void {
g.lineStyle(1, lc);
g.moveTo(startPos.x, startPos.y);
g.lineTo(pos.x, pos.y);
});
screen.draw(function(g:Graphics):void {
g.beginFill(colors[colorsIndex].i);
g.drawCircle(pos.x, pos.y, 2);
});
return true;
}
public function checkKey(k:String):void {
if (isPlayers) return;
if (text.charAt(0) == k) {
text = text.substr(1, text.length - 1);
if (text.length <= 0) {
var m:Missile = new Missile;
m.setPlayer(this);
missiles.push(m);
}
}
}
}
var explosions:Vector.<Explosion>;
class Explosion extends Actor {
public var radius:Number = 0;
public var multiplier:int;
private var ticks:int;
function Explosion(p:Vec, mp:int = 1) {
pos.xy = p;
multiplier = mp;
}
public function update():Boolean {
if (ticks < 30) radius = ticks;
else radius = 60 - ticks;
radius *= 1.2;
screen.draw(function(g:Graphics):void {
g.beginFill(Color.white.getScatterd(32).i);
g.drawCircle(pos.x, pos.y, radius);
});
return ++ticks < 60;
}
}
var cities:Vector.<City>;
class City extends Actor {
function City(x:Number) {
pos.x = x; pos.y = screen.size.y * 0.95;
}
public function update():Boolean {
screen.draw(function(g:Graphics):void {
g.beginFill(Color.blue.i);
g.moveTo(-10, -10); g.lineTo(20, 0); g.lineTo(-20, 0);
g.endFill();
g.beginFill(Color.cyan.i);
g.moveTo(5, -8); g.lineTo(15, 0); g.lineTo(-17, 0);
g.endFill();
}, pos);
for each (var e:Explosion in explosions) {
if (e.pos.y > screen.size.y * 0.94 && abs(pos.x - e.pos.x) < e.radius) {
explosions.push(new Explosion(pos));
return false;
}
}
return true;
}
}
//----------------------------------------------------------------
import flash.display.*;
import flash.geom.*;
import flash.filters.*;
import flash.events.*;
import flash.text.*;
import flash.utils.getTimer;
var screen:Screen;
var mouse:Mouse;
var key:Key;
var main:Main, bd:BitmapData;
var blurBd:BitmapData, blurFilter:BlurFilter;
var baseSprite:Sprite;
function initializeFirst():void {
screen = new Screen;
bd = new BitmapData(screen.size.x, screen.size.y, true, 0);
blurBd = new BitmapData(screen.size.x, screen.size.y, true, 0);
blurFilter = new BlurFilter(7, 7, 2);
baseSprite = new Sprite;
baseSprite.addChild(new Bitmap(blurBd));
main.addChild(new Bitmap(new BitmapData(screen.size.x, screen.size.y, false, 0)));
main.addChild(baseSprite);
mouse = new Mouse(main.stage);
key = new Key(main.stage);
initialize();
if (DEBUG) beginGame();
else setScoreRecordViewer();
main.addEventListener(Event.ENTER_FRAME, updateFrame);
}
var zeroPoint:Point = new Point;
function updateFrame(event:Event):void {
bd.lock();
bd.fillRect(bd.rect, 0);
updateGame();
Actor.update(Message.s);
trace("INIT");
bd.unlock();
blurBd.lock();
blurBd.fillRect(bd.rect, 0);
blurBd.copyPixels(bd, bd.rect, zeroPoint, null, null, true);
blurBd.applyFilter(blurBd, blurBd.rect, zeroPoint, blurFilter);
blurBd.copyPixels(bd, bd.rect, zeroPoint, null, null, true);
blurBd.unlock();
}
var score:int, ticks:int;
var isInGame:Boolean;
var wasClicked:Boolean, wasReleased:Boolean;
function beginGame():void {
isInGame = true;
score = 0;
closeScoreForms();
initialize();
}
function endGame():void {
isInGame = false;
wasClicked = wasReleased = false;
ticks = 0;
recordScore(score);
setScoreRecordViewer();
}
function updateGame():void {
update();
screen.drawText(String(score), screen.size.x - 40, 20);
if (!isInGame) {
screen.drawText(TITLE, screen.size.x * 0.7, screen.center.y - 20);
screen.drawText("click to start", screen.size.x * 0.7, screen.center.y + 20);
if (mouse.isPressing) {
if (wasReleased) wasClicked = true;
} else {
if (wasClicked) beginGame();
wasReleased = true;
}
return;
}
ticks++;
}
class Vec extends Vector3D {
public function Vec(x:Number = 0, y:Number = 0) {
super(x, y);
}
public function clear():void {
x = y = 0;
}
public function distance(p:Vector3D):Number {
return getLength(p.x - x, p.y - y);
}
public function angle(p:Vector3D):Number {
return atan2(p.x - x, p.y - y);
}
public function addAngle(a:Number, s:Number):void {
x += sin(a) * s; y += cos(a) * s;
}
public function rotate(a:Number):void {
var px:Number = x;
x = x * cos(a) - y * sin(a);
y = px * sin(a) + y * cos(a);
}
public function set xy(v:Vector3D):void {
x = v.x; y = v.y;
}
}
class Color {
public var r:int, g:int, b:int;
public function Color(r:int = 0, g:int = 0, b:int = 0) {
this.r = r * 22;
this.g = g * 22;
this.b = b * 22;
}
public function get i():uint {
return r * 0x10000 + g * 0x100 + b;
}
private static var scatterdColor:Color = new Color;
public function getScatterd(w:int = 64):Color {
scatterdColor.r = r + rand.i(w * 2, -w);
scatterdColor.g = g + rand.i(w * 2, -w);
scatterdColor.b = b + rand.i(w * 2, -w);
scatterdColor.normalize();
return scatterdColor;
}
public function normalize():void {
r = clamp(r, 0, 255);
g = clamp(g, 0, 255);
b = clamp(b, 0, 255);
}
public function set rgb(v:Color):void {
r = v.r; g = v.g; b = v.b;
}
private static const WHITENESS:int = 2;
public static var black:Color = new Color(WHITENESS, WHITENESS, WHITENESS);
public static var red:Color = new Color(10, WHITENESS, WHITENESS);
public static var green:Color = new Color(WHITENESS, 10, WHITENESS);
public static var blue:Color = new Color(WHITENESS, WHITENESS, 10);
public static var yellow:Color = new Color(10, 10, WHITENESS);
public static var magenta:Color = new Color(10, WHITENESS, 10);
public static var cyan:Color = new Color(WHITENESS, 10, 10);
public static var white:Color = new Color(10, 10, 10);
}
class Message extends Actor {
public static var s:Vector.<Message> = new Vector.<Message>;
public static var shownMessages:Vector.<String> = new Vector.<String>;
public static function addOnce(text:String, p:Vec, vx:Number = 0, vy:Number = 0,
ticks:int = 90):Message {
if (shownMessages.indexOf(text) >= 0) return null;
shownMessages.push(text);
return add(text, p, vx, vy, ticks);
}
public static function add(text:String, p:Vec, vx:Number = 0, vy:Number = 0,
ticks:int = 90, color:uint = 0xffffff):Message {
var m:Message = new Message;
m.text = text;
m.pos.xy = p;
m.vel.x = vx; m.vel.y = vy / ticks;
m.ticks = ticks;
m.color = color;
s.push(m);
return m;
}
public var text:String, ticks:int, color:uint;
public function update():Boolean {
screen.drawText(text, pos.x, pos.y, color);
return --ticks > 0;
}
}
class Screen {
public var size:Vec = new Vec(main.WIDTH, main.HEIGHT);
public var center:Vec = new Vec(size.x / 2, size.y / 2);
private var textField:TextField = new TextField;
private var textFormat:TextFormat;
public function Screen() {
textFormat = new TextFormat("_typewriter");
textFormat.size = 14; textFormat.bold = true;
textFormat.align = TextFormatAlign.CENTER;
textField.width = 200; textField.height = 20;
}
private var matrix:Matrix = new Matrix;
public function drawText(text:String, x:int, y:int, color:uint = 0xffffff):void {
textFormat.color = color;
textField.defaultTextFormat = textFormat;
textField.text = text;
matrix.identity(); matrix.translate(x - 100, y - 20);
bd.draw(textField, matrix);
}
private var rectForFill:Rectangle = new Rectangle;
public function fillRect
(x:Number, y:Number, width:Number, height:Number, color:uint):void {
rectForFill.x = x - width / 2; rectForFill.y = y - height / 2;
rectForFill.width = width; rectForFill.height = height;
bd.fillRect(rectForFill, 0xff000000 + color);
}
private var shape:Shape = new Shape;
public function draw(gf:Function, p:Vector3D = null):void {
shape.graphics.clear();
gf(shape.graphics);
if (p) {
matrix.identity(); matrix.translate(p.x, p.y);
bd.draw(shape, matrix);
} else {
bd.draw(shape);
}
}
public function isIn(p:Vector3D, spacing:Number = 0):Boolean {
return (p.x >= -spacing && p.x <= size.x + spacing &&
p.y >= -spacing && p.y <= size.y + spacing);
}
}
class Mouse {
public var pos:Vec = new Vec;
public var isPressing:Boolean;
public function Mouse(stage:Stage) {
baseSprite.addEventListener(MouseEvent.MOUSE_MOVE, onMoved);
baseSprite.addEventListener(MouseEvent.MOUSE_DOWN, onPressed);
baseSprite.addEventListener(MouseEvent.MOUSE_UP, onReleased);
baseSprite.addEventListener(Event.MOUSE_LEAVE, onReleased);
}
private function onMoved(e:MouseEvent):void {
pos.x = e.stageX; pos.y = e.stageY;
}
private function onPressed(e:MouseEvent):void {
isPressing = true;
onMoved(e);
}
private function onReleased(e:Event):void {
isPressing = false;
}
}
class Key {
public var pressing:String;
public function Key(stage:Stage) {
stage.addEventListener(KeyboardEvent.KEY_DOWN, onDown);
}
private function onDown(e:KeyboardEvent):void {
if (!isInGame) return;
pressing = String.fromCharCode(e.keyCode).toLowerCase();
for each (var m:Missile in missiles) m.checkKey(key.pressing);
}
}
var rand:Rand = new Rand(int.MIN_VALUE);
class Rand {
public function n(v:Number = 1, s:Number = 0):Number { return get() * v + s; }
public function i(v:int, s:int = 0):int { return n(v, s); }
public function sx(v:Number = 1, s:Number = 0):Number { return n(v, s) * screen.size.x; }
public function sy(v:Number = 1, s:Number = 0):Number { return n(v, s) * screen.size.y; }
public function pm():int { return i(2) * 2 - 1; }
private var xorShiftX:int, xorShiftY:int, xorShiftZ:int, xorShiftW:int;
function Rand(v:int = int.MIN_VALUE):void {
var sv:int;
if (v == int.MIN_VALUE) sv = getTimer();
else sv = v;
xorShiftX = sv = 1812433253 * (sv ^ (sv >> 30));
xorShiftY = sv = 1812433253 * (sv ^ (sv >> 30)) + 1;
xorShiftZ = sv = 1812433253 * (sv ^ (sv >> 30)) + 2;
xorShiftW = sv = 1812433253 * (sv ^ (sv >> 30)) + 3;
}
public function get():Number {
var t:int = xorShiftX ^ (xorShiftX << 11);
xorShiftX = xorShiftY; xorShiftY = xorShiftZ; xorShiftZ = xorShiftW;
xorShiftW = (xorShiftW ^ (xorShiftW >> 19)) ^ (t ^ (t >> 8));
return Number(xorShiftW) / int.MAX_VALUE;
}
}
function getLength(x:Number, y:Number):Number {
return sqrt(x * x + y * y);
}
function clamp(v:Number, min:Number, max:Number):Number {
if (v > max) return max;
else if (v < min) return min;
return v;
}
var sin:Function = Math.sin, cos:Function = Math.cos, atan2:Function = Math.atan2;
var sqrt:Function = Math.sqrt, abs:Function = Math.abs;
var PI:Number = Math.PI, PI2:Number = PI * 2;
/*
function setScoreRecordViewer():void { }
function recordScore(s:int):void { }
function closeScoreForms():void { }
/*/
import net.wonderfl.score.basic.BasicScoreForm;
import net.wonderfl.score.basic.BasicScoreRecordViewer;
var scoreRecordViewer:BasicScoreRecordViewer;
var scoreForm:BasicScoreForm;
function setScoreRecordViewer():void {
scoreRecordViewer = new BasicScoreRecordViewer(main, 5, 220, "SCORE RANKING", 50);
}
function recordScore(s:int):void {
scoreForm = new BasicScoreForm(main, 5, 5, s);
scoreForm.onCloseClick = function():void {
closeScoreForms();
setScoreRecordViewer();
}
}
function closeScoreForms():void {
if (scoreRecordViewer) {
main.removeChild(scoreRecordViewer);
scoreRecordViewer = null;
}
if (scoreForm) {
main.removeChild(scoreForm);
scoreForm = null;
}
}
//*/