Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
f4283728
Commit
f4283728
authored
6 years ago
by
Aya Morisawa
Committed by
syuilo
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Refactor effects function (#2639)
parent
5dd2feba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/games/reversi/core.ts
+31
-63
31 additions, 63 deletions
src/games/reversi/core.ts
tslint.json
+1
-0
1 addition, 0 deletions
tslint.json
with
32 additions
and
63 deletions
src/games/reversi/core.ts
+
31
−
63
View file @
f4283728
...
...
@@ -238,87 +238,55 @@ export default class Reversi {
/**
* 指定のマスに石を置いた時の、反転させられる石を取得します
* @param color 自分の色
* @param
p
os 位置
* @param
initP
os 位置
*/
public
effects
(
color
:
Color
,
p
os
:
number
):
number
[]
{
public
effects
(
color
:
Color
,
initP
os
:
number
):
number
[]
{
const
enemyColor
=
!
color
;
// ひっくり返せる石(の位置)リスト
let
stones
:
number
[]
=
[];
const
initPos
=
pos
;
// 走査
const
iterate
=
(
fn
:
(
i
:
number
)
=>
number
[])
=>
{
let
i
=
1
;
const
found
=
[];
const
diffVectors
:
[
number
,
number
][]
=
[
[
0
,
-
1
],
// 上
[
+
1
,
-
1
],
// 右上
[
+
1
,
0
],
// 右
[
+
1
,
+
1
],
// 右下
[
0
,
+
1
],
// 下
[
-
1
,
+
1
],
// 左下
[
-
1
,
0
],
// 左
[
-
1
,
-
1
]
// 左上
];
const
effectsInLine
=
([
dx
,
dy
]:
[
number
,
number
]):
number
[]
=>
{
const
nextPos
=
(
x
:
number
,
y
:
number
):
[
number
,
number
]
=>
[
x
+
dx
,
y
+
dy
];
const
found
:
number
[]
=
[];
// 挟めるかもしれない相手の石を入れておく配列
let
[
x
,
y
]
=
this
.
transformPosToXy
(
initPos
);
while
(
true
)
{
let
[
x
,
y
]
=
fn
(
i
);
// 座標が指し示す位置がボード外に出たとき
if
(
this
.
opts
.
loopedBoard
)
{
if
(
x
<
0
)
x
=
this
.
mapWidth
-
((
-
x
)
%
this
.
mapWidth
);
if
(
y
<
0
)
y
=
this
.
mapHeight
-
((
-
y
)
%
this
.
mapHeight
);
if
(
x
>=
this
.
mapWidth
)
x
=
x
%
this
.
mapWidth
;
if
(
y
>=
this
.
mapHeight
)
y
=
y
%
this
.
mapHeight
;
// for debug
//if (x < 0 || y < 0 || x >= this.mapWidth || y >= this.mapHeight) {
// console.log(x, y);
//}
x
=
((
x
%
this
.
mapWidth
)
+
this
.
mapWidth
)
%
this
.
mapWidth
;
y
=
((
y
%
this
.
mapHeight
)
+
this
.
mapHeight
)
%
this
.
mapHeight
;
// 一周して自分に帰ってきたら
if
(
this
.
transformXyToPos
(
x
,
y
)
==
initPos
)
{
// ↓のコメントアウトを外すと、「現時点で自分の石が隣接していないが、
// そこに置いたとするとループして最終的に挟んだことになる」というケースを有効化します。(Test4のマップで違いが分かります)
// このケースを有効にした方が良いのか無効にした方が良いのか判断がつかなかったためとりあえず無効としておきます
// (あと無効な方がゲームとしておもしろそうだった)
stones
=
stones
.
concat
(
found
);
break
;
// 盤面の境界でループし、自分が石を置く位置に戻ってきたとき、挟めるようにしている (ref: Test4のマップ)
return
found
;
}
}
else
{
if
(
x
==
-
1
||
y
==
-
1
||
x
==
this
.
mapWidth
||
y
==
this
.
mapHeight
)
break
;
if
(
x
==
-
1
||
y
==
-
1
||
x
==
this
.
mapWidth
||
y
==
this
.
mapHeight
)
{
return
[];
// 挟めないことが確定 (盤面外に到達)
}
}
const
pos
=
this
.
transformXyToPos
(
x
,
y
);
//#region 「配置不能」マスに当たった場合走査終了
const
pixel
=
this
.
mapDataGet
(
pos
);
if
(
pixel
==
'
null
'
)
break
;
//#endregion
// 石取得
if
(
this
.
mapDataGet
(
pos
)
===
'
null
'
)
return
[];
// 挟めないことが確定 (配置不可能なマスに到達)
const
stone
=
this
.
board
[
pos
];
if
(
stone
===
null
)
return
[];
// 挟めないことが確定 (石が置かれていないマスに到達)
if
(
stone
===
enemyColor
)
found
.
push
(
pos
);
// 挟めるかもしれない (相手の石を発見)
if
(
stone
===
color
)
return
found
;
// 挟めることが確定 (対となる自分の石を発見)
// 石が置かれていないマスなら走査終了
if
(
stone
===
null
)
break
;
// 相手の石なら「ひっくり返せるかもリスト」に入れておく
if
(
stone
===
enemyColor
)
found
.
push
(
pos
);
// 自分の石なら「ひっくり返せるかもリスト」を「ひっくり返せるリスト」に入れ、走査終了
if
(
stone
===
color
)
{
stones
=
stones
.
concat
(
found
);
break
;
}
i
++
;
[
x
,
y
]
=
nextPos
(
x
,
y
);
}
};
const
[
x
,
y
]
=
this
.
transformPosToXy
(
pos
);
iterate
(
i
=>
[
x
,
y
-
i
]);
// 上
iterate
(
i
=>
[
x
+
i
,
y
-
i
]);
// 右上
iterate
(
i
=>
[
x
+
i
,
y
]);
// 右
iterate
(
i
=>
[
x
+
i
,
y
+
i
]);
// 右下
iterate
(
i
=>
[
x
,
y
+
i
]);
// 下
iterate
(
i
=>
[
x
-
i
,
y
+
i
]);
// 左下
iterate
(
i
=>
[
x
-
i
,
y
]);
// 左
iterate
(
i
=>
[
x
-
i
,
y
-
i
]);
// 左上
return
stones
;
return
[].
concat
(...
diffVectors
.
map
(
effectsInLine
));
}
/**
...
...
This diff is collapsed.
Click to expand it.
tslint.json
+
1
−
0
View file @
f4283728
...
...
@@ -17,6 +17,7 @@
"no-empty"
:
false
,
"ordered-imports"
:
[
false
],
"arrow-parens"
:
false
,
"array-type"
:
false
,
"object-literal-shorthand"
:
false
,
"object-literal-key-quotes"
:
false
,
"triple-equals"
:
[
false
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment