Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zeroing-engine
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
劳工
zeroing-engine
Commits
8158cdcc
Commit
8158cdcc
authored
Mar 16, 2020
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加私有自定义事件触发
parent
6d5d91df
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
82 additions
and
16 deletions
+82
-16
engine.js
debug/engine.js
+74
-13
engine.js.map
debug/engine.js.map
+1
-1
manifest.json
manifest.json
+1
-1
events.ts
src/zeroing/decorators/events.ts
+6
-1
No files found.
debug/engine.js
View file @
8158cdcc
...
@@ -1168,6 +1168,18 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -1168,6 +1168,18 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
enumerable
:
true
,
enumerable
:
true
,
configurable
:
true
configurable
:
true
});
});
Object
.
defineProperty
(
DisplayObject
.
prototype
,
"frame"
,
{
get
:
function
()
{
return
{
x
:
this
.
x
,
y
:
this
.
y
,
width
:
this
.
_width
,
height
:
this
.
_height
,
};
},
enumerable
:
true
,
configurable
:
true
});
DisplayObject
.
prototype
.
attachVisibility
=
function
()
{
DisplayObject
.
prototype
.
attachVisibility
=
function
()
{
};
};
Object
.
defineProperty
(
DisplayObject
.
prototype
,
"_tempDisplayObjectParent"
,
{
Object
.
defineProperty
(
DisplayObject
.
prototype
,
"_tempDisplayObjectParent"
,
{
...
@@ -1677,7 +1689,6 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -1677,7 +1689,6 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
}
}
};
};
AdjustProxy
.
prototype
.
adjustLayout
=
function
()
{
AdjustProxy
.
prototype
.
adjustLayout
=
function
()
{
return
;
var
that
=
this
.
_host
;
var
that
=
this
.
_host
;
var
_a
=
that
.
parent
,
pWidth
=
_a
.
width
,
pHeight
=
_a
.
height
;
var
_a
=
that
.
parent
,
pWidth
=
_a
.
width
,
pHeight
=
_a
.
height
;
var
width
=
that
.
width
,
height
=
that
.
height
;
var
width
=
that
.
width
,
height
=
that
.
height
;
...
@@ -1962,10 +1973,14 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -1962,10 +1973,14 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
}
}
return
target
;
return
target
;
}
}
function
traverseViewNode
(
node
,
callback
)
{
function
traverseViewNode
(
node
,
callback
,
includeSelf
)
{
if
(
includeSelf
===
void
0
)
{
includeSelf
=
false
;
}
if
(
includeSelf
)
{
callback
(
node
);
}
for
(
var
_i
=
0
,
_a
=
node
.
children
;
_i
<
_a
.
length
;
_i
++
)
{
for
(
var
_i
=
0
,
_a
=
node
.
children
;
_i
<
_a
.
length
;
_i
++
)
{
var
child
=
_a
[
_i
];
var
child
=
_a
[
_i
];
callback
(
child
);
callback
(
child
,
node
);
if
(
child
.
children
&&
child
.
children
.
length
>
0
)
{
if
(
child
.
children
&&
child
.
children
.
length
>
0
)
{
traverseViewNode
(
child
,
callback
);
traverseViewNode
(
child
,
callback
);
}
}
...
@@ -2982,7 +2997,11 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -2982,7 +2997,11 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
EventsProxy
.
prototype
.
start
=
function
(
eventsConfig
)
{
EventsProxy
.
prototype
.
start
=
function
(
eventsConfig
)
{
this
.
_eventsConfig
=
eventsConfig
;
this
.
_eventsConfig
=
eventsConfig
;
for
(
var
name
in
eventsConfig
)
{
for
(
var
name
in
eventsConfig
)
{
globalEvent
.
addEventListener
(
name
,
this
.
onCustomEvent
,
this
);
var
config
=
eventsConfig
[
name
];
if
(
config
.
custom
)
{
var
target
=
config
.
private
?
this
.
host
:
globalEvent
;
target
.
addEventListener
(
name
,
this
.
onCustomEvent
,
this
);
}
}
}
this
.
invokeBehavior
(
'init'
,
this
.
host
);
this
.
invokeBehavior
(
'init'
,
this
.
host
);
};
};
...
@@ -3049,6 +3068,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -3049,6 +3068,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
_this
.
mouseChildren
=
true
;
_this
.
mouseChildren
=
true
;
_this
.
_instanceType
=
"Container"
;
_this
.
_instanceType
=
"Container"
;
_this
.
children
=
[];
_this
.
children
=
[];
_this
.
_transform
=
_this
.
transform
;
_this
.
afterConstructor
();
_this
.
afterConstructor
();
return
_this
;
return
_this
;
}
}
...
@@ -3289,7 +3309,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -3289,7 +3309,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
child
.
updateTransform
();
child
.
updateTransform
();
}
}
}
}
if
(
isUI
(
this
)
&&
this
.
_lastLocalID
!==
this
.
transform
.
localID
)
{
if
(
this
.
_transform
===
this
.
transform
&&
isUI
(
this
)
&&
this
.
_lastLocalID
!==
this
.
transform
.
localID
)
{
this
.
_lastLocalID
=
this
.
transform
.
localID
;
this
.
_lastLocalID
=
this
.
transform
.
localID
;
this
.
stage
.
layoutInvalid
=
true
;
this
.
stage
.
layoutInvalid
=
true
;
}
}
...
@@ -3456,6 +3476,8 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -3456,6 +3476,8 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
set
:
function
(
value
)
{
set
:
function
(
value
)
{
if
(
this
.
_width
!==
value
)
{
if
(
this
.
_width
!==
value
)
{
this
.
_width
=
value
;
this
.
_width
=
value
;
if
(
this
.
stage
)
this
.
stage
.
layoutInvalid
=
true
;
this
.
dispatchEvent
(
Event
.
RESIZE
);
this
.
dispatchEvent
(
Event
.
RESIZE
);
}
}
},
},
...
@@ -3469,6 +3491,8 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -3469,6 +3491,8 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
set
:
function
(
value
)
{
set
:
function
(
value
)
{
if
(
this
.
_height
!==
value
)
{
if
(
this
.
_height
!==
value
)
{
this
.
_height
=
value
;
this
.
_height
=
value
;
if
(
this
.
stage
)
this
.
stage
.
layoutInvalid
=
true
;
this
.
dispatchEvent
(
Event
.
RESIZE
);
this
.
dispatchEvent
(
Event
.
RESIZE
);
}
}
},
},
...
@@ -7999,8 +8023,12 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -7999,8 +8023,12 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
else
{
else
{
cp
=
new
Point
();
cp
=
new
Point
();
}
}
cp
.
x
=
(
points
[
o
].
clientX
-
points
[
o
].
target
.
offsetLeft
+
window
.
pageXOffset
)
*
devicePixelRatio
;
var
doc
=
document
.
documentElement
;
cp
.
y
=
(
points
[
o
].
clientY
-
points
[
o
].
target
.
offsetTop
+
window
.
pageYOffset
)
*
devicePixelRatio
;
var
box
=
points
[
o
].
target
.
getBoundingClientRect
();
var
left
=
box
.
left
+
window
.
pageXOffset
-
doc
.
clientLeft
;
var
top
=
box
.
top
+
window
.
pageYOffset
-
doc
.
clientTop
;
cp
.
x
=
(
points
[
o
].
pageX
-
left
)
*
devicePixelRatio
;
cp
.
y
=
(
points
[
o
].
pageY
-
top
)
*
devicePixelRatio
;
sp
=
s
.
globalToLocal
(
cp
,
DisplayObject
.
_bp
);
sp
=
s
.
globalToLocal
(
cp
,
DisplayObject
.
_bp
);
if
(
EventDispatcher
.
getMouseEventCount
()
>
0
)
{
if
(
EventDispatcher
.
getMouseEventCount
()
>
0
)
{
if
(
!
s
.
_ml
[
eLen
])
{
if
(
!
s
.
_ml
[
eLen
])
{
...
@@ -8286,11 +8314,6 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -8286,11 +8314,6 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
}
}
};
};
Stage
.
prototype
.
afterUpdateTransform
=
function
()
{
Stage
.
prototype
.
afterUpdateTransform
=
function
()
{
this
.
calculateBounds
();
if
(
this
.
layoutInvalid
)
{
this
.
dispatchEvent
(
Event
.
LAYOUT_INVALID
);
this
.
layoutInvalid
=
false
;
}
};
};
Stage
.
prototype
.
destroy
=
function
()
{
Stage
.
prototype
.
destroy
=
function
()
{
var
s
=
this
;
var
s
=
this
;
...
@@ -19328,6 +19351,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -19328,6 +19351,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
tslib_1
.
__extends
(
Toast
,
_super
);
tslib_1
.
__extends
(
Toast
,
_super
);
function
Toast
(
gameStage
)
{
function
Toast
(
gameStage
)
{
var
_this
=
_super
.
call
(
this
)
||
this
;
var
_this
=
_super
.
call
(
this
)
||
this
;
_this
.
name
=
'toast'
;
_this
.
_gameStage
=
gameStage
;
_this
.
_gameStage
=
gameStage
;
_this
.
mouseEnabled
=
_this
.
mouseChildren
=
false
;
_this
.
mouseEnabled
=
_this
.
mouseChildren
=
false
;
_this
.
horizonCenter
=
0
;
_this
.
horizonCenter
=
0
;
...
@@ -19434,6 +19458,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -19434,6 +19458,7 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
_this
.
addChild
(
blackLayer
);
_this
.
addChild
(
blackLayer
);
_this
.
addChild
(
_this
.
_popupContainer
=
new
StackContainer
());
_this
.
addChild
(
_this
.
_popupContainer
=
new
StackContainer
());
_this
.
addChild
(
_this
.
_toast
=
new
Toast
(
_this
));
_this
.
addChild
(
_this
.
_toast
=
new
Toast
(
_this
));
blackLayer
.
name
=
'blackLayer'
;
blackLayer
.
percentWidth
=
100
;
blackLayer
.
percentWidth
=
100
;
blackLayer
.
percentHeight
=
100
;
blackLayer
.
percentHeight
=
100
;
blackLayer
.
visible
=
false
;
blackLayer
.
visible
=
false
;
...
@@ -19693,7 +19718,43 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
...
@@ -19693,7 +19718,43 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
_stage
.
addEventListener
(
Event
.
LAYOUT_INVALID
,
onLayoutInvalid
);
_stage
.
addEventListener
(
Event
.
LAYOUT_INVALID
,
onLayoutInvalid
);
}
}
function
onLayoutInvalid
()
{
function
onLayoutInvalid
()
{
console
.
log
(
'onLayoutInvalid'
);
console
.
time
(
'adjustLayout'
);
var
layoutTree
=
duplicateLayoutTree
(
_stage
);
console
.
log
(
layoutTree
);
console
.
timeEnd
(
'adjustLayout'
);
}
function
duplicateLayoutTree
(
node
)
{
var
tree
=
{};
getLayoutTreeOnce
(
node
,
tree
,
true
);
return
tree
;
}
function
getLayoutTreeOnce
(
node
,
tree
,
includeSelf
)
{
if
(
includeSelf
===
void
0
)
{
includeSelf
=
false
;
}
if
(
includeSelf
)
{
tree
.
name
=
node
.
name
;
tree
.
frame
=
node
.
frame
;
tree
.
constraint
=
node
.
adjustProxy
.
data
;
tree
.
children
=
[];
if
(
node
.
isUI
)
{
tree
.
isUI
=
true
;
}
}
for
(
var
_i
=
0
,
_a
=
node
.
children
;
_i
<
_a
.
length
;
_i
++
)
{
var
child
=
_a
[
_i
];
var
layoutNode
=
{
name
:
child
.
name
,
frame
:
child
.
frame
,
constraint
:
child
.
adjustProxy
.
data
,
children
:
[],
};
if
(
child
.
isUI
)
{
layoutNode
.
isUI
=
true
;
}
tree
.
children
.
push
(
layoutNode
);
if
(
child
.
children
&&
child
.
children
.
length
>
0
)
{
getLayoutTreeOnce
(
child
,
layoutNode
);
}
}
}
}
function
launch
(
url
,
loadingDelegate
,
onStart
)
{
function
launch
(
url
,
loadingDelegate
,
onStart
)
{
...
...
debug/engine.js.map
View file @
8158cdcc
This diff is collapsed.
Click to expand it.
manifest.json
View file @
8158cdcc
{
"id"
:
"engine"
,
"url"
:
"engine.56879c475b493bdd1b4fa1522bad7ad2a4d454e7.js"
}
{
"id"
:
"engine"
,
"url"
:
"engine.5afff35dbf1a3f35d5d37785f6235b47b9f6cedd.js"
}
\ No newline at end of file
\ No newline at end of file
src/zeroing/decorators/events.ts
View file @
8158cdcc
...
@@ -63,7 +63,12 @@ class EventsProxy extends HashObject {
...
@@ -63,7 +63,12 @@ class EventsProxy extends HashObject {
start
(
eventsConfig
)
{
start
(
eventsConfig
)
{
this
.
_eventsConfig
=
eventsConfig
;
this
.
_eventsConfig
=
eventsConfig
;
for
(
let
name
in
eventsConfig
)
{
for
(
let
name
in
eventsConfig
)
{
globalEvent
.
addEventListener
(
name
,
this
.
onCustomEvent
,
this
);
let
config
=
eventsConfig
[
name
];
if
(
config
.
custom
){
let
target
=
config
.
private
?
this
.
host
:
globalEvent
;
target
.
addEventListener
(
name
,
this
.
onCustomEvent
,
this
);
}
}
}
this
.
invokeBehavior
(
'init'
,
this
.
host
);
this
.
invokeBehavior
(
'init'
,
this
.
host
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment