Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xiaoxiaole
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
wildfirecode13
xiaoxiaole
Commits
08c0f4ad
Commit
08c0f4ad
authored
May 14, 2020
by
zjz1994
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
地图暂存
parent
7b478ad5
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
62 additions
and
7 deletions
+62
-7
MapBottomPart.ts
egret/src/mapScene/MapBottomPart.ts
+6
-0
MapRpeatPart.ts
egret/src/mapScene/MapRpeatPart.ts
+1
-1
MapScene.ts
egret/src/mapScene/MapScene.ts
+43
-5
MapStarComp.ts
egret/src/mapScene/MapStarComp.ts
+1
-1
MapTopPart.ts
egret/src/mapScene/MapTopPart.ts
+11
-0
No files found.
egret/src/mapScene/MapBottomPart.ts
View file @
08c0f4ad
...
@@ -18,6 +18,12 @@ export default class MapBottomPart extends ComponentBase {
...
@@ -18,6 +18,12 @@ export default class MapBottomPart extends ComponentBase {
star
.
loadSkin
();
star
.
start
();
star
.
loadSkin
();
star
.
start
();
const
icon
=
this
.
getIcon
(
i
);
const
icon
=
this
.
getIcon
(
i
);
icon
.
addChild
(
star
);
icon
.
addChild
(
star
);
icon
.
show
=
()
=>
{
this
.
addChild
(
icon
)};
icon
.
hide
=
()
=>
{
this
.
removeChild
(
icon
)};
icon
[
'nums'
]
=
icon
.
getChildAt
(
0
);
icon
[
'bmptxt'
]
=
icon
.
getChildAt
(
1
);
icon
[
'starsp'
]
=
star
;
}
}
// const repeatCount =getRepeatCount();
// const repeatCount =getRepeatCount();
// for (let i = 0; i < MapBottomPart.LEVEL_NUMS; i++) {
// for (let i = 0; i < MapBottomPart.LEVEL_NUMS; i++) {
...
...
egret/src/mapScene/MapRpeatPart.ts
View file @
08c0f4ad
...
@@ -28,7 +28,7 @@ export default class MapRpeatPart extends ComponentBase {
...
@@ -28,7 +28,7 @@ export default class MapRpeatPart extends ComponentBase {
icon
.
hide
=
()
=>
{
this
.
removeChild
(
icon
)};
icon
.
hide
=
()
=>
{
this
.
removeChild
(
icon
)};
icon
[
'nums'
]
=
icon
.
getChildAt
(
0
);
icon
[
'nums'
]
=
icon
.
getChildAt
(
0
);
icon
[
'bmptxt'
]
=
icon
.
getChildAt
(
1
);
icon
[
'bmptxt'
]
=
icon
.
getChildAt
(
1
);
icon
[
'starsp'
]
=
star
;
icon
.
hide
();
icon
.
hide
();
}
}
...
...
egret/src/mapScene/MapScene.ts
View file @
08c0f4ad
...
@@ -39,6 +39,7 @@ import getAdBtn from "./getAdBtn";
...
@@ -39,6 +39,7 @@ import getAdBtn from "./getAdBtn";
import
getInviteBtn
from
"./getInviteBtn"
;
import
getInviteBtn
from
"./getInviteBtn"
;
import
{
play2
,
play1
}
from
"../panels/help/svgaTool"
;
import
{
play2
,
play1
}
from
"../panels/help/svgaTool"
;
import
{
snpmAdStatic
}
from
"../statics/snpmAdStatic"
;
import
{
snpmAdStatic
}
from
"../statics/snpmAdStatic"
;
import
MapStarComp
from
"./MapStarComp"
;
let
doHelpFlag
=
false
;
let
doHelpFlag
=
false
;
// let doScratchHelpFlag = false;
// let doScratchHelpFlag = false;
...
@@ -282,14 +283,20 @@ export default class MapScene extends Scene {
...
@@ -282,14 +283,20 @@ export default class MapScene extends Scene {
console
.
log
(
"玩家level"
,
nowlevel
);
console
.
log
(
"玩家level"
,
nowlevel
);
this
.
maptoppart
.
y
=
this
.
scrollMapy
[
0
];
this
.
maptoppart
.
y
=
this
.
scrollMapy
[
0
];
this
.
scrollGroup
.
addChild
(
this
.
maptoppart
);
this
.
scrollGroup
.
addChild
(
this
.
maptoppart
);
this
.
onemapreppart
.
y
=
this
.
scrollMapy
[
1
];
this
.
onemapreppart
.
y
=
0
;
//
this.scrollMapy[1];
this
.
scrollGroup
.
addChild
(
this
.
onemapreppart
);
this
.
scrollGroup
.
addChild
(
this
.
onemapreppart
);
this
.
twomapreppart
.
y
=
this
.
scrollMapy
[
2
];
this
.
twomapreppart
.
y
=
0
;
//
this.scrollMapy[2];
this
.
scrollGroup
.
addChild
(
this
.
twomapreppart
);
this
.
scrollGroup
.
addChild
(
this
.
twomapreppart
);
this
.
mapbotpart
.
y
=
this
.
scrollMapy
[
this
.
scrollMapy
.
length
-
2
];
this
.
mapbotpart
.
y
=
this
.
scrollMapy
[
this
.
scrollMapy
.
length
-
2
];
console
.
log
(
'底部位置'
,
this
.
mapbotpart
.
y
);
console
.
log
(
'底部位置'
,
this
.
mapbotpart
.
y
);
this
.
scrollGroup
.
addChild
(
this
.
mapbotpart
);
this
.
scrollGroup
.
addChild
(
this
.
mapbotpart
);
//设置顶部和底部关卡显示
this
.
changePartLevelShow
(
this
.
maptoppart
,
0
,
"top"
);
var
botlevelstart
=
maptop_level
+
repeatnum
*
maprep_level
;
this
.
changePartLevelShow
(
this
.
mapbotpart
,
botlevelstart
,
"bot"
);
// console.log('地图数据-----',this._data);
// console.log('地图数据-----',this._data);
// this.topPart = this._data.top;
// this.topPart = this._data.top;
// this.repeatsPart = this._data.list;
// this.repeatsPart = this._data.list;
...
@@ -766,7 +773,7 @@ export default class MapScene extends Scene {
...
@@ -766,7 +773,7 @@ export default class MapScene extends Scene {
if
(
i3map
.
y
!=
i3mapy
){
if
(
i3map
.
y
!=
i3mapy
){
i3map
.
y
=
i3mapy
;
i3map
.
y
=
i3mapy
;
var
i3startlevel
=
MapTopPart
.
LEVEL_NUMS
+
(
i3
-
1
)
*
MapRpeatPart
.
LEVEL_NUMS
;
var
i3startlevel
=
MapTopPart
.
LEVEL_NUMS
+
(
i3
-
1
)
*
MapRpeatPart
.
LEVEL_NUMS
;
this
.
changePartLevelShow
(
i3map
,
i3startlevel
);
this
.
changePartLevelShow
(
i3map
,
i3startlevel
,
"mid"
);
console
.
log
(
"局部显示"
,
i3
,
i3mapy
,
i3startlevel
);
console
.
log
(
"局部显示"
,
i3
,
i3mapy
,
i3startlevel
);
}
}
}
}
...
@@ -781,9 +788,18 @@ export default class MapScene extends Scene {
...
@@ -781,9 +788,18 @@ export default class MapScene extends Scene {
* @param mappart
* @param mappart
* @param startlevel
* @param startlevel
*/
*/
changePartLevelShow
(
mappart
:
any
,
startlevel
:
number
){
changePartLevelShow
(
mappart
:
any
,
startlevel
:
number
,
mappartype
:
string
){
var
mapnums
:
number
;
if
(
mappartype
==
"top"
){
mapnums
=
MapTopPart
.
LEVEL_NUMS
;
}
else
if
(
mappartype
==
"mid"
){
mapnums
=
MapRpeatPart
.
LEVEL_NUMS
;
}
else
if
(
mappartype
==
"bot"
){
mapnums
=
MapBottomPart
.
LEVEL_NUMS
;
}
var
last_level
=
window
[
'last_level'
];
var
last_level
=
window
[
'last_level'
];
for
(
var
i
=
0
;
i
<
MapRpeatPart
.
LEVEL_NUMS
;
i
++
){
var
homeData
=
getHomeData
();
for
(
var
i
=
0
;
i
<
mapnums
;
i
++
){
const
levelOrder
=
startlevel
+
i
+
1
;
const
levelOrder
=
startlevel
+
i
+
1
;
let
icon
=
mappart
.
getIcon
(
i
);
let
icon
=
mappart
.
getIcon
(
i
);
icon
.
removeEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
showToastQd
);
icon
.
removeEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
showToastQd
);
...
@@ -791,8 +807,30 @@ export default class MapScene extends Scene {
...
@@ -791,8 +807,30 @@ export default class MapScene extends Scene {
if
(
levelOrder
>
last_level
){
if
(
levelOrder
>
last_level
){
setGray
(
icon
);
setGray
(
icon
);
icon
.
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
showToastQd
,
this
);
icon
.
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
showToastQd
,
this
);
}
else
if
(
levelOrder
<
homeData
.
levels
.
length
){
var
leveldata
=
homeData
.
levels
[
levelOrder
];
(
icon
[
'nums'
]
as
eui
.
Image
).
source
=
'icon_png'
;
(
icon
[
'bmptxt'
]
as
eui
.
BitmapLabel
).
visible
=
true
;
(
icon
[
'bmptxt'
]
as
eui
.
BitmapLabel
).
font
=
'nums_fnt'
;
(
icon
[
'startsp'
]
as
MapStarComp
).
setStar
(
leveldata
.
stars
);
(
icon
[
'startsp'
]
as
MapStarComp
).
visible
=
true
;
}
else
if
(
levelOrder
==
homeData
.
levels
.
length
+
1
){
(
icon
[
'nums'
]
as
eui
.
Image
).
source
=
'iconnow_png'
;
(
icon
[
'bmptxt'
]
as
eui
.
BitmapLabel
).
visible
=
true
;
(
icon
[
'bmptxt'
]
as
eui
.
BitmapLabel
).
font
=
'nums_fnt'
;
(
icon
[
'startsp'
]
as
MapStarComp
).
setStar
(
0
);
(
icon
[
'startsp'
]
as
MapStarComp
).
visible
=
true
;
}
if
(
!
icon
.
hasEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
)){
icon
.
addEventListener
(
egret
.
TouchEvent
.
TOUCH_TAP
,
this
.
clickIcon
,
this
);
}
}
}
}
}
//点击
clickIcon
(
e
){
let
icon
=
e
.
target
as
eui
.
Group
;
let
txt
=
icon
[
'bmptxt'
]
as
eui
.
BitmapLabel
;
console
.
log
(
'关卡点击'
,
txt
.
text
);
}
}
showToastQd
(){
showToastQd
(){
showToast
(
'敬请期待更多关卡~'
);
showToast
(
'敬请期待更多关卡~'
);
...
...
egret/src/mapScene/MapStarComp.ts
View file @
08c0f4ad
...
@@ -7,8 +7,8 @@ export default class MapStarComp extends ComponentBase {
...
@@ -7,8 +7,8 @@ export default class MapStarComp extends ComponentBase {
this
.
y
=
67
;
this
.
y
=
67
;
this
.
setStar
(
0
);
this
.
setStar
(
0
);
}
}
setStar
(
num
:
number
)
{
setStar
(
num
:
number
)
{
this
[
'star1'
].
visible
=
false
;
this
[
'star1'
].
visible
=
false
;
this
[
'star2'
].
visible
=
false
;
this
[
'star2'
].
visible
=
false
;
...
...
egret/src/mapScene/MapTopPart.ts
View file @
08c0f4ad
...
@@ -13,6 +13,13 @@ export default class MapTopPart extends ComponentBase {
...
@@ -13,6 +13,13 @@ export default class MapTopPart extends ComponentBase {
star
.
loadSkin
();
star
.
start
();
star
.
loadSkin
();
star
.
start
();
const
icon
=
this
.
getIcon
(
i
);
const
icon
=
this
.
getIcon
(
i
);
icon
.
addChild
(
star
);
icon
.
addChild
(
star
);
icon
.
show
=
()
=>
{
this
.
addChild
(
icon
)};
icon
.
hide
=
()
=>
{
this
.
removeChild
(
icon
)};
icon
[
'nums'
]
=
icon
.
getChildAt
(
0
);
icon
[
'bmptxt'
]
=
icon
.
getChildAt
(
1
);
icon
[
'starsp'
]
=
star
;
}
}
// for (let i = 0; i < MapTopPart.LEVEL_NUMS; i++) {
// for (let i = 0; i < MapTopPart.LEVEL_NUMS; i++) {
...
@@ -36,6 +43,10 @@ export default class MapTopPart extends ComponentBase {
...
@@ -36,6 +43,10 @@ export default class MapTopPart extends ComponentBase {
}
}
getIcon
(
i
)
{
return
this
[
`icon
${
i
}
`
];
}
getIcon
(
i
)
{
return
this
[
`icon
${
i
}
`
];
}
getTxt
(
i
):
eui
.
BitmapLabel
{
var
icon
=
this
.
getIcon
(
i
);
return
icon
.
getChildAt
(
1
);
}
get
skinKey
():
string
{
return
'MapTop'
}
get
skinKey
():
string
{
return
'MapTop'
}
}
}
\ No newline at end of file
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