Fixed layers
This commit is contained in:
parent
07a959f777
commit
02b8ec54ad
5
presets/a6000.rin
Normal file
5
presets/a6000.rin
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
frame.resize 795x450
|
||||||
|
source.load /target.jpg x450
|
||||||
|
source:format jpg
|
||||||
|
source:quality 0.9
|
||||||
|
source.save
|
@ -1,7 +1,9 @@
|
|||||||
frame.resize 300x300
|
frame.resize 300x300
|
||||||
frame.select main
|
frame.select background
|
||||||
layer.fill #eeeeee
|
layer.fill #eeeeee
|
||||||
|
frame.select stencil
|
||||||
render.stencil 45' #cccccc
|
render.stencil 45' #cccccc
|
||||||
|
frame.select logo
|
||||||
path:line_width 43
|
path:line_width 43
|
||||||
path:line_color #000000
|
path:line_color #000000
|
||||||
path:line_cap square
|
path:line_cap square
|
||||||
|
@ -65,12 +65,12 @@ function Keyboard()
|
|||||||
|
|
||||||
this.key_arrow_up = function()
|
this.key_arrow_up = function()
|
||||||
{
|
{
|
||||||
if(ronin.module){ ronin.module.key_arrow_up(); }
|
ronin.frame.select_layer(ronin.frame.layer_above());
|
||||||
}
|
}
|
||||||
|
|
||||||
this.key_arrow_down = function()
|
this.key_arrow_down = function()
|
||||||
{
|
{
|
||||||
if(ronin.module){ ronin.module.key_arrow_down(); }
|
ronin.frame.select_layer(ronin.frame.layer_below());
|
||||||
}
|
}
|
||||||
|
|
||||||
this.key_arrow_left = function()
|
this.key_arrow_left = function()
|
||||||
|
@ -17,7 +17,7 @@ function Frame(rune)
|
|||||||
this.install = function()
|
this.install = function()
|
||||||
{
|
{
|
||||||
this.blink();
|
this.blink();
|
||||||
this.select(new Command("frame.select main"));
|
this.select(new Command("frame.select background"));
|
||||||
|
|
||||||
// Canvas
|
// Canvas
|
||||||
var starting_canvas = new Rect();
|
var starting_canvas = new Rect();
|
||||||
@ -60,11 +60,12 @@ function Frame(rune)
|
|||||||
return 1, "Resized to "+this.size.render();
|
return 1, "Resized to "+this.size.render();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.select = function(params, preview = false)
|
this.select = function(cmd, preview = false)
|
||||||
{
|
{
|
||||||
if(preview){ return; }
|
if(preview){ return; }
|
||||||
|
|
||||||
var layer_name = "main";
|
var layer_name = cmd.values();
|
||||||
|
|
||||||
if(!ronin.frame.layers[layer_name]){
|
if(!ronin.frame.layers[layer_name]){
|
||||||
this.add_layer(new Layer(layer_name));
|
this.add_layer(new Layer(layer_name));
|
||||||
}
|
}
|
||||||
@ -72,7 +73,7 @@ function Frame(rune)
|
|||||||
ronin.modules["layer"] = this.layers[layer_name];
|
ronin.modules["layer"] = this.layers[layer_name];
|
||||||
ronin.layer = this.layers[layer_name];
|
ronin.layer = this.layers[layer_name];
|
||||||
|
|
||||||
return 1, "ok";
|
return 1, "Selected "+this.active_layer.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.context = function()
|
this.context = function()
|
||||||
@ -98,6 +99,7 @@ function Frame(rune)
|
|||||||
|
|
||||||
this.select_layer = function(layer)
|
this.select_layer = function(layer)
|
||||||
{
|
{
|
||||||
|
if(!layer){ return; }
|
||||||
this.active_layer = layer;
|
this.active_layer = layer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -117,22 +119,22 @@ function Frame(rune)
|
|||||||
|
|
||||||
// Commands
|
// Commands
|
||||||
|
|
||||||
this.layer_up = function()
|
this.layer_above = function()
|
||||||
{
|
{
|
||||||
var keys = Object.keys(ronin.frame.layers);
|
var keys = Object.keys(ronin.frame.layers);
|
||||||
var loc = keys.indexOf(this.active_layer.name);
|
var loc = keys.indexOf(this.active_layer.name);
|
||||||
|
|
||||||
if(loc >= keys.length-1){ console.log("Reached end"); return false; }
|
if(loc >= keys.length-1){ console.log("Reached end"); return false; }
|
||||||
|
|
||||||
if(keys[loc+1] != null){this.select_layer(ronin.frame.layers[keys[loc+1]]);}
|
if(keys[loc+1] != null){ return ronin.frame.layers[keys[loc+1]]; }
|
||||||
}
|
}
|
||||||
|
|
||||||
this.layer_down = function()
|
this.layer_below = function()
|
||||||
{
|
{
|
||||||
var keys = Object.keys(ronin.frame.layers);
|
var keys = Object.keys(ronin.frame.layers);
|
||||||
var loc = keys.indexOf(this.active_layer.name);
|
var loc = keys.indexOf(this.active_layer.name);
|
||||||
|
|
||||||
if(keys[loc-1] != null){this.select_layer(ronin.frame.layers[keys[loc-1]]);}
|
if(keys[loc-1] != null){ return ronin.frame.layers[keys[loc-1]]; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cursor
|
// Cursor
|
||||||
@ -182,6 +184,29 @@ function Frame(rune)
|
|||||||
|
|
||||||
html += user_layers+"&"+managed_layers+" ";
|
html += user_layers+"&"+managed_layers+" ";
|
||||||
|
|
||||||
|
html += this.widget_map()+" "
|
||||||
|
|
||||||
return html
|
return html
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.widget_map = function()
|
||||||
|
{
|
||||||
|
html = ""
|
||||||
|
var keys = Object.keys(ronin.frame.layers);
|
||||||
|
var loc = keys.indexOf(this.active_layer.name);
|
||||||
|
i = 0;
|
||||||
|
while(i < keys.length){
|
||||||
|
if(i == loc){
|
||||||
|
html += "<span style='color:white'>|</span>";
|
||||||
|
}
|
||||||
|
else if(this.layers[keys[i]].manager){
|
||||||
|
html += "<span style='color:red'>|</span>";
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
html += "|";
|
||||||
|
}
|
||||||
|
i += 1;
|
||||||
|
}
|
||||||
|
return html;
|
||||||
|
}
|
||||||
}
|
}
|
@ -90,8 +90,8 @@ function Magnet(rune)
|
|||||||
|
|
||||||
this.widget = function()
|
this.widget = function()
|
||||||
{
|
{
|
||||||
if(this.settings["grid"].width < 2 || this.settings["grid"].height < 2){ return ""; }
|
if(this.settings["grid"].to_rect().width < 2 || this.settings["grid"].to_rect().height < 2){ return ""; }
|
||||||
return this.settings["grid"].render();
|
return this.settings["grid"].value;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.key_escape = function()
|
this.key_escape = function()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user