8 Star 62 Fork 16

Futrime / 康威生命游戏

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
translator.py 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
Futrime 提交于 2020-07-07 20:02 . 添加了样式集和样式集生成器
# Copyright 2020 Zijian Zhang
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# 用于将生命游戏的Plaintext文件(.cells)转换为本项目支持的Javascript Collection脚本文件
# Plaintext文件介绍:https://www.conwaylife.com/wiki/Plaintext
#
import json
import os
const dest_file = 'dest.js' # 目标JS文件
const src = 'src' # 源文件夹
const name = 'custom' # Collection名称
files = {i[:-6]: [j for j in open(src + '/' + i).readlines() if j[0] != '!'] for i in os.listdir(src)}
for i in files:
for j in range(len(files[i])):
tmp = []
for k in files[i][j]:
if k == '.':
tmp.append(0)
elif k == 'O':
tmp.append(1)
files[i][j] = tmp
open(dest_file, 'w').write('const = ' + json.dumps(files, sort_keys=True) + ';')
JavaScript
1
https://gitee.com/futrime/Game-of-Life.git
git@gitee.com:futrime/Game-of-Life.git
futrime
Game-of-Life
康威生命游戏
master

搜索帮助