1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/futrime-Game-of-Life

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
translator.py 1.3 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Futrime Отправлено 07.07.2020 15:02 7121ca3
# 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) + ';')

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/futrime-Game-of-Life.git
git@api.gitlife.ru:oschina-mirror/futrime-Game-of-Life.git
oschina-mirror
futrime-Game-of-Life
futrime-Game-of-Life
master