Earth (6)
Earth (Sprite) [Papervision3D] [fullscreen] background うまく行っていないので、ボツ。
♥0 |
Line 312 |
Modified 2010-10-14 15:46:37 |
MIT License
archived:2017-03-30 01:30:51
| (replaced)
ActionScript3 source code
/**
* Copyright ProjectNya ( http://wonderfl.net/user/ProjectNya )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/nWMd
*/
////////////////////////////////////////////////////////////////////////////////
// Earth (6)
// Earth (Sprite) [Papervision3D] [fullscreen] background
//
// うまく行っていないので、ボツ。
////////////////////////////////////////////////////////////////////////////////
package {
import flash.display.Sprite;
import flash.display.StageScaleMode;
import flash.display.StageAlign;
import flash.display.StageDisplayState;
import flash.ui.Keyboard;
import flash.events.Event;
import flash.events.KeyboardEvent;
import flash.events.MouseEvent;
import flash.system.Security;
import flash.display.Loader;
import flash.net.URLRequest;
import flash.system.LoaderContext;
import org.papervision3d.scenes.Scene3D;
import org.papervision3d.cameras.Camera3D;
import org.papervision3d.view.Viewport3D;
import org.papervision3d.render.BasicRenderEngine;
import org.papervision3d.materials.BitmapFileMaterial;
import org.papervision3d.objects.primitives.Sphere;
[SWF(backgroundColor="#000000", width="465", height="465", frameRate="30")]
public class Main extends Sprite {
private var scene:Scene3D;
private var camera:Camera3D;
private var viewport:Viewport3D;
private var renderer:BasicRenderEngine;
//
private var basePath:String = "http://assets.wonderfl.net/images/related_images/";
private var filePath:String = "9/98/9880/98804c60f1a9b901909a93c2f28e384c8f70808c";
private var degrees_int:int = 60;
private var centerx_int:int = 0;
private var centerz_int:int = 0;
private var diameter_int:int = 2000;
private var speed_int:int = 1;
private var earth:Sphere;
//
private var controller:Sprite;
private var fullscreenBtn:Btn;
private var normalBtn:Btn;
//
private var back:Loader;
private var backPath:String = "1/12/12f6/12f658edaf472ae2a7a47fd698f53888b43b2696";
public function Main() {
Security.allowDomain("assets.wonderfl.net");
Security.allowDomain("swf.wonderfl.net");
Security.loadPolicyFile("http://assets.wonderfl.net/crossdomain.xml");
Security.loadPolicyFile("http://swf.wonderfl.net/crossdomain.xml");
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
init();
}
private function init():void {
graphics.beginFill(0x000000);
graphics.drawRect(0, 0, 465, 465);
graphics.endFill();
//
back = new Loader();
addChild(back);
back.load(new URLRequest(basePath + backPath), new LoaderContext(true));
//
scene = new Scene3D();
camera =new Camera3D();
camera.focus = 500;
camera.zoom = 3;
camera.x = 0;
camera.y = 0;
camera.z = -8000;
viewport = new Viewport3D(0, 0, true, false);
addChild(viewport);
renderer = new BasicRenderEngine();
addEventListener(Event.ENTER_FRAME, render, false, 0, true);
//
var material:BitmapFileMaterial = new BitmapFileMaterial(basePath + filePath);
earth = new Sphere(material, 100, 30, 30);
earth.useOwnContainer = true;
scene.addChild(earth);
//
stage.addEventListener(KeyboardEvent.KEY_DOWN, press, false, 0, true);
//
controller = new Sprite();
addChild(controller);
controller.x = 512;
controller.y = 748;
fullscreenBtn = new Btn();
controller.addChild(fullscreenBtn);
fullscreenBtn.init({label: "full screen", type: 2, width: 100});
fullscreenBtn.addEventListener(MouseEvent.CLICK, click, false, 0, true);
normalBtn = new Btn();
controller.addChild(normalBtn);
normalBtn.init({label: "normal", type: 2, width: 100});
normalBtn.addEventListener(MouseEvent.CLICK, click, false, 0, true);
normalBtn.visible = false;
//
stage.addEventListener(Event.RESIZE, resize, false, 0, true);
resize();
}
private function render(evt:Event):void {
earth.x = Math.sin(degrees_int * Math.PI/180) * diameter_int + centerx_int;
earth.z = Math.cos(degrees_int * Math.PI/180) * diameter_int + centerz_int;
earth.rotationY += 4;
degrees_int += speed_int;
degrees_int %= 360;
renderer.renderScene(scene, camera, viewport);
}
private function press(evt:KeyboardEvent):void {
switch (evt.keyCode) {
case 39 :
camera.y += 100;
break;
case 37 :
camera.y -=100;
break;
case 38 :
camera.z += 100;
break;
case 40 :
camera.z -= 100;
break;
}
}
private function resize(evt:Event = null):void {
var sw:uint = stage.stageWidth;
var sh:uint = stage.stageHeight;
update(sw, sh);
}
private function update(sw:uint, sh:uint):void {
var scale:Number = Math.max(sw/500, sh/500);
back.scaleX = back.scaleY = scale;
//viewport.scaleX = viewport.scaleY = scale;
//back.x = viewport.x = int((sw - 500*scale)/2);
//back.y = viewport.y = int((sh - 500*scale)/2);
controller.x = uint(sw/2);
controller.y = sh - 20;
if (stage.displayState == StageDisplayState.FULL_SCREEN) {
fullscreenBtn.visible = false;
normalBtn.visible = true;
} else {
fullscreenBtn.visible = true;
normalBtn.visible = false;
}
}
private function click(evt:Event):void {
if (stage.displayState == StageDisplayState.NORMAL) {
stage.displayState = StageDisplayState.FULL_SCREEN;
} else {
stage.displayState = StageDisplayState.NORMAL;
}
}
}
}
//////////////////////////////////////////////////
// Btnクラス
//////////////////////////////////////////////////
import flash.display.Sprite;
import flash.display.Shape;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.text.AntiAliasType;
import flash.text.TextFormat;
import flash.text.TextFormatAlign;
import flash.filters.GlowFilter;
import flash.events.MouseEvent;
class Btn extends Sprite {
public var id:uint;
private var shade:Shape;
private var bottom:Shape;
private var light:Shape;
private var base:Shape;
private var txt:TextField;
private var label:String = "";
private static var fontType:String = "_ゴシック";
private var _width:uint = 60;
private static var _height:uint = 20;
private static var corner:uint = 5;
private var type:uint = 1;
private static var bColor:uint = 0xFFFFFF;
private static var sColor:uint = 0x000000;
private static var upColor:uint = 0x666666;
private static var overColor:uint = 0x333333;
private static var offColor:uint = 0x999999;
private static var gColor:uint = 0x0099FF;
private var blueGlow:GlowFilter;
private var shadeGlow:GlowFilter;
private var _clicked:Boolean = false;
private var _enabled:Boolean = true;
public function Btn() {
}
public function init(option:Object):void {
if (option.id != undefined) id = option.id;
if (option.label != undefined) label = option.label;
if (option.width != undefined) _width = option.width;
if (option.type != undefined) type = option.type;
draw();
}
private function draw():void {
switch (type) {
case 1 :
bColor = 0xFFFFFF;
sColor = 0x000000;
upColor = 0x666666;
overColor = 0x333333;
offColor = 0x999999;
break;
case 2 :
bColor = 0x000000;
sColor = 0xFFFFFF;
upColor = 0x666666;
overColor = 0x999999;
offColor = 0x333333;
break;
}
blueGlow = new GlowFilter(gColor, 0.6, 5, 5, 2, 3, false, true);
shadeGlow = new GlowFilter(sColor, 0.3, 4, 4, 2, 3, false, true);
shade = new Shape();
bottom = new Shape();
light = new Shape();
base = new Shape();
txt = new TextField();
addChild(shade);
addChild(bottom);
addChild(light);
addChild(base);
addChild(txt);
createBase(shade, _width, _height, corner, sColor);
shade.filters = [shadeGlow];
createBase(bottom, _width, _height, corner, sColor, 0.3);
createBase(light, _width, _height, corner, gColor);
light.filters = [blueGlow];
createBase(base, _width, _height, corner, bColor);
txt.x = -_width*0.5;
txt.y = -_height*0.5;
txt.width = _width;
txt.height = _height - 1;
txt.type = TextFieldType.DYNAMIC;
txt.selectable = false;
//txt.embedFonts = true;
//txt.antiAliasType = AntiAliasType.ADVANCED;
var tf:TextFormat = new TextFormat();
tf.font = fontType;
tf.size = 12;
tf.align = TextFormatAlign.CENTER;
txt.defaultTextFormat = tf;
txt.text = label;
enabled = true;
mouseChildren = false;
}
private function rollOver(evt:MouseEvent):void {
_over();
}
private function rollOut(evt:MouseEvent):void {
_up();
}
private function press(evt:MouseEvent):void {
_down();
}
private function release(evt:MouseEvent):void {
_up();
}
private function click(evt:MouseEvent):void {
}
private function _up():void {
txt.y = -_height*0.5;
txt.textColor = upColor;
base.y = -1;
light.visible = false;
light.y = -1;
}
private function _over():void {
txt.y = -_height*0.5;
txt.textColor = overColor;
base.y = -1;
light.visible = true;
light.y = -1;
}
private function _down():void {
txt.y = -_height*0.5 + 1;
txt.textColor = overColor;
base.y = 0;
light.visible = true;
light.y = 0;
}
private function _off():void {
txt.y = -_height*0.5 + 1;
txt.textColor = offColor;
base.y = 0;
light.visible = false;
light.y = 0;
}
public function get clicked():Boolean {
return _clicked;
}
public function set clicked(param:Boolean):void {
_clicked = param;
enabled = !_clicked;
if (_clicked) {
_down();
} else {
_up();
}
}
public function get enabled():Boolean {
return _enabled;
}
public function set enabled(param:Boolean):void {
_enabled = param;
buttonMode = _enabled;
mouseEnabled = _enabled;
useHandCursor = _enabled;
if (_enabled) {
_up();
addEventListener(MouseEvent.MOUSE_OVER, rollOver, false, 0, true);
addEventListener(MouseEvent.MOUSE_OUT, rollOut, false, 0, true);
addEventListener(MouseEvent.MOUSE_DOWN, press, false, 0, true);
addEventListener(MouseEvent.MOUSE_UP, release, false, 0, true);
addEventListener(MouseEvent.CLICK, click, false, 0, true);
} else {
_off();
removeEventListener(MouseEvent.MOUSE_OVER, rollOver);
removeEventListener(MouseEvent.MOUSE_OUT, rollOut);
removeEventListener(MouseEvent.MOUSE_DOWN, press);
removeEventListener(MouseEvent.MOUSE_UP, release);
removeEventListener(MouseEvent.CLICK, click);
}
}
private function createBase(target:Shape, w:uint, h:uint, c:uint, color:uint, alpha:Number = 1):void {
target.graphics.beginFill(color, alpha);
target.graphics.drawRoundRect(-w*0.5, -h*0.5, w, h, c*2);
target.graphics.endFill();
}
}