Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shenweiyan/catchthecat
捉住那只小猫,一个有趣同时也很难的游戏,通过围堵的方式阻止小猫跑到边缘处。
https://github.com/shenweiyan/catchthecat
Last synced: about 1 month ago
JSON representation
捉住那只小猫,一个有趣同时也很难的游戏,通过围堵的方式阻止小猫跑到边缘处。
- Host: GitHub
- URL: https://github.com/shenweiyan/catchthecat
- Owner: shenweiyan
- Created: 2023-03-20T07:17:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-17T03:44:29.000Z (6 months ago)
- Last Synced: 2024-05-18T03:36:33.300Z (6 months ago)
- Language: HTML
- Homepage: https://shenweiyan.github.io/CatchTheCAT/
- Size: 739 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 捉住小猫
## 游戏玩法
* 点击小圆点,围住小猫。
* 你点击一次,小猫走一次。
* 直到你把小猫围住(赢),或者小猫走到边界并逃跑(输)。## 部署
首先引入游戏框架 `phaser.min.js`
```html
```
然后引入游戏代码 `catch-the-cat.js`
```html
```
然后在指定的 div 中新建一个游戏的 canvas,并开始游戏
```html
window.game = new CatchTheCatGame({
w: 11,
h: 11,
r: 20,
initialWallCount: 8,
backgroundColor: 0xeeeeee,
parent: 'catch-the-cat',
statusBarAlign: 'center',
credit: 'github.com/ganlvtech'
});```
参数列表:
| 参数 | 值 | 说明 |
| :---: | :---: | :--------- |
| w | `11` | 横向格子数 |
| h | `11` | 竖向格子数 |
| r | `20` | 圆半径像素 |非必选参数:
| 参数 | 值 | 说明 |
| :-------------: | :--------------------- | :---------------------------------- |
| backgroundColor | `0xeeeeee` | 背景颜色 |
| parent | `catch-the-cat` | 父元素的 id 或 DOM 对象 |
| statusBarAlign | `center` | 状态栏左对齐 `left` 或居中 `center` |
| credit | `github.com/ganlvtech` | 右下角的备注信息 |## 自己编写算法
参考 `src/solvers/` 中提供的例子编写算法,并使用下列代码替换。
```js
window.game.solver = yourSolver;
```这个 solver 的返回值即为猫要往哪个方向走一步,如果撞墙则算玩家获胜
| 值 | 说明 |
| :--- | :---------------------- |
| -1 | 猫主动弃权 |
| 0 | 左 |
| 1 | 左上 |
| 2 | 右上 |
| 3 | 右 |
| 4 | 右下 |
| 5 | 左下 |猫站在星号的位置,数字代表每个方向的编号
```plain
1 2
0 * 3
5 4
```例如
```js
window.game.solver = function (blocksIsWall, i, j) {
return 0;
};
```即:一直向左走,直到撞墙。
## 说明
* 游戏的思路和小猫的图片来源于 [www.gamedesign.jp](https://www.gamedesign.jp/flash/chatnoir/chatnoir.html),原来的游戏名叫 Chat Noir,我只是尝试用 javascript 重写一遍。
* Html 源码来源于 [ganlvtech/phaser-catch-the-cat](https://github.com/ganlvtech/phaser-catch-the-cat)。
## License
MIT License