2019-09-12 19:53:57 +02:00
|
|
|
#!/usr/bin/env python3
|
2019-09-09 17:32:07 +02:00
|
|
|
from PIL import Image
|
|
|
|
from PIL import ImageFont
|
|
|
|
from PIL import ImageDraw
|
|
|
|
import csv
|
|
|
|
import random
|
2019-09-24 13:26:31 +02:00
|
|
|
import os
|
|
|
|
|
|
|
|
fileDir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
fileDir = fileDir +"/"
|
|
|
|
|
2019-09-09 17:32:07 +02:00
|
|
|
|
2019-09-17 17:52:21 +02:00
|
|
|
def replaceText(text):
|
2019-09-24 13:26:31 +02:00
|
|
|
"""This function replace $WILDCARD with a word found in subs.csv
|
|
|
|
subs.csv definition is 1st colum $WILDCARD, subsequent columns, possible values (chosen at random), delimiter is ;"""
|
|
|
|
with open(fileDir+"subs.csv") as rtext:
|
|
|
|
csvReader = csv.reader(rtext,delimiter=";")
|
2019-09-17 17:52:21 +02:00
|
|
|
for row in csvReader:
|
|
|
|
if text.find(row[0]) != -1:
|
2019-10-28 23:56:31 +01:00
|
|
|
text = text.replace(row[0],row[random.randint(1,len(row)-1)],1)
|
2019-11-19 13:24:20 +01:00
|
|
|
text = text.replace('@','\n')
|
2019-09-17 17:52:21 +02:00
|
|
|
return text
|
|
|
|
|
2019-10-28 23:56:31 +01:00
|
|
|
#def fetchText(indText):
|
|
|
|
# """This function fetch the text for the image with just only one character
|
|
|
|
# rtext.csv definition is: 1st column the name of the file (i.e. A001.png), 2nd x-coord, 3rd y-coord, 4th and subsequent, the possible outcomes
|
|
|
|
# Delimiter is ; and line feeds @, if there aren't any options, it returns 0 (no text)
|
|
|
|
# It returns a tuple (x,y,text)"""
|
|
|
|
# with open(fileDir+"rtext.csv") as rtext:
|
|
|
|
# csvReader = csv.reader(rtext,delimiter=';')
|
|
|
|
# for row in csvReader:
|
|
|
|
# if row[0]==indText:
|
|
|
|
# if len(row)>2:
|
|
|
|
# return row[1],row[2],row[random.randint(3,len(row)-1)].replace('@','\n')
|
|
|
|
# else:
|
|
|
|
# return 0
|
2019-09-24 13:26:31 +02:00
|
|
|
|
2019-10-28 23:56:31 +01:00
|
|
|
def fetchText(indText):
|
2019-09-24 13:26:31 +02:00
|
|
|
"""This function fetch the text for the image with two characters
|
|
|
|
rtext.csv definition is: 1st column the name of the file (i.e. B001.png), 2nd x-coord, 3rd y-coord of the first string
|
|
|
|
4th x-coord, 5th y-coord of the second string, 6th and subsequent are the outcomes, alternated as the odd one is an
|
|
|
|
answer to the even one
|
|
|
|
Delimiter is ; and line feeds @, if there aren't any options, it returns 0 (no text)
|
|
|
|
It returns a tuple(x1,y1,x2,y2,text1,text2)"""
|
2019-10-28 23:56:31 +01:00
|
|
|
with open(fileDir+"rtext.csv") as rtext:
|
2019-09-24 13:26:31 +02:00
|
|
|
csvReader = csv.reader(rtext,delimiter=';')
|
|
|
|
for row in csvReader:
|
|
|
|
if row[0]==indText:
|
|
|
|
if len(row)>2:
|
|
|
|
rand1 = random.randint(5,len(row)-1)
|
|
|
|
if rand1 %2 == 0:
|
|
|
|
rand1 -=1
|
|
|
|
rand2 = rand1+1
|
|
|
|
return row[1],row[2],row[3],row[4],row[rand1].replace('@','\n'),row[rand2].replace('@','\n')
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
2019-09-09 17:32:07 +02:00
|
|
|
def fetchVign():
|
2019-09-24 13:26:31 +02:00
|
|
|
"""This functions fetch an image, randomly, chosen from a markov tree defined in ram.csv
|
|
|
|
ram.csv definition is: 1st column the name of the image (without extension), subsequent columns, possible outcomes chosen randomly
|
|
|
|
It returns an array with the file names"""
|
2019-09-09 17:32:07 +02:00
|
|
|
starts = []
|
|
|
|
startdest = []
|
|
|
|
nvign = 0
|
|
|
|
currVign = "000"
|
|
|
|
story = []
|
2019-09-24 13:26:31 +02:00
|
|
|
with open(fileDir+"ram.csv") as ram:
|
2019-09-09 17:32:07 +02:00
|
|
|
csvReader = csv.reader(ram)
|
|
|
|
for row in csvReader:
|
|
|
|
starts.append(row[0])
|
|
|
|
startdest.append(row)
|
2020-06-29 23:48:05 +02:00
|
|
|
while nvign <100:
|
2019-09-09 17:32:07 +02:00
|
|
|
story.append(startdest[starts.index(currVign)][random.randint(1,len(startdest[starts.index(currVign)])-1)])
|
|
|
|
currVign = story[nvign]
|
2020-06-29 23:48:05 +02:00
|
|
|
if currVign == "END":
|
|
|
|
return story
|
2019-09-17 00:20:30 +02:00
|
|
|
story[nvign]+=".png"
|
2019-09-09 17:32:07 +02:00
|
|
|
nvign +=1
|
2020-06-29 23:48:05 +02:00
|
|
|
print("tree with no END")
|
|
|
|
quit()
|
2019-09-09 17:32:07 +02:00
|
|
|
|
2019-09-17 16:33:43 +02:00
|
|
|
def addThing(indVign):
|
2019-09-24 13:26:31 +02:00
|
|
|
"""This function adds a small image (object) to a larger image
|
|
|
|
obj.csv definition is: name of the image (i.e. A001.png), x-coord, y-coord, subsequent columns possible outcomes
|
|
|
|
It returns a tuple (object file name, x, y)"""
|
|
|
|
with open(fileDir+"obj.csv") as obj:
|
2019-09-17 16:33:43 +02:00
|
|
|
csvReader = csv.reader(obj)
|
|
|
|
for row in csvReader:
|
|
|
|
if row[0] == indVign:
|
|
|
|
return row[random.randint(3,len(row)-1)],row[1],row[2]
|
|
|
|
return 0
|
2019-09-13 16:08:09 +02:00
|
|
|
|
2019-11-26 19:06:50 +01:00
|
|
|
def writeStrip(story,fontSize):
|
2019-09-24 13:26:31 +02:00
|
|
|
"""This function creates the strip returning an image object that could be saved or viewed. It takes an array with filenames as parameter
|
2020-11-24 02:30:42 +01:00
|
|
|
The first image is always 000, then appends to strip the files, then decorates it fetching text and adding objects. If the object is an R, then
|
|
|
|
repeats the last object."""
|
2019-09-17 00:20:30 +02:00
|
|
|
strip = []
|
2019-09-12 19:53:57 +02:00
|
|
|
for indVign in story:
|
2020-06-29 23:48:05 +02:00
|
|
|
#if indVign!="000":
|
|
|
|
try:
|
2019-09-24 13:26:31 +02:00
|
|
|
vign = Image.open(fileDir+indVign).convert('RGBA')
|
2019-09-12 19:53:57 +02:00
|
|
|
addtext = ImageDraw.Draw(vign)
|
2019-11-26 19:06:50 +01:00
|
|
|
fnt = ImageFont.truetype(fileDir+"ubuntu.ttf",fontSize)
|
2019-10-28 23:56:31 +01:00
|
|
|
textVign = fetchText(indVign)
|
|
|
|
if textVign!=0:
|
|
|
|
text1 = textVign[4]
|
|
|
|
text2 = textVign[5]
|
|
|
|
while text1.find('$') != -1:
|
|
|
|
text1 = replaceText(text1)
|
|
|
|
while text2.find('$') != -1:
|
|
|
|
text2 = replaceText(text2)
|
|
|
|
addtext.multiline_text((int(textVign[0]),int(textVign[1])),text1,fill="#000000",font=fnt,align="center")
|
|
|
|
addtext.multiline_text((int(textVign[2]),int(textVign[3])),text2,fill="#000000",font=fnt,align="center")
|
|
|
|
|
2019-09-13 16:08:09 +02:00
|
|
|
obj = addThing(indVign)
|
2019-09-17 16:33:43 +02:00
|
|
|
if obj!=0:
|
2020-11-24 02:30:42 +01:00
|
|
|
if obj[0] == 'R':
|
|
|
|
objImg = Image.open(fileDir+prevObj[0])
|
|
|
|
else:
|
|
|
|
prevObj = obj
|
|
|
|
objImg = Image.open(fileDir+obj[0])
|
2019-09-17 16:33:43 +02:00
|
|
|
vign.paste(objImg,(int(obj[1]),int(obj[2])))
|
2019-09-17 00:20:30 +02:00
|
|
|
strip.append(vign)
|
2020-06-29 23:48:05 +02:00
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
2019-09-17 16:33:43 +02:00
|
|
|
image = Image.new('RGBA',(2400,500))
|
2019-09-17 00:20:30 +02:00
|
|
|
xshift=0
|
|
|
|
for vign in strip:
|
|
|
|
image.paste(vign,(xshift,0))
|
|
|
|
xshift += 600
|
|
|
|
return image
|
2019-09-09 17:32:07 +02:00
|
|
|
|
2019-11-26 19:06:50 +01:00
|
|
|
def createStrip(name,fontSize=22):
|
2019-09-24 13:26:31 +02:00
|
|
|
"""Create strip and save it
|
|
|
|
createStrip(str path/filename)"""
|
2019-09-19 01:59:13 +02:00
|
|
|
try:
|
|
|
|
story = fetchVign()
|
2019-11-26 19:06:50 +01:00
|
|
|
finalStrip = writeStrip(story,fontSize)
|
2019-12-23 17:50:59 +01:00
|
|
|
if name == "android":
|
|
|
|
return finalStrip
|
|
|
|
else:
|
|
|
|
finalStrip.save(fileDir+name)
|
|
|
|
return 0
|
2019-09-19 01:59:13 +02:00
|
|
|
except Exception as err:
|
|
|
|
return err
|
|
|
|
|
2019-09-09 17:32:07 +02:00
|
|
|
if __name__ == "__main__":
|
2020-02-28 17:34:49 +01:00
|
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('-s','--story',metavar='story',default='',nargs=4,help='name of the images')
|
|
|
|
args = parser.parse_args()
|
|
|
|
if (args.story == ''):
|
|
|
|
story = fetchVign()
|
|
|
|
else:
|
|
|
|
story = []
|
|
|
|
for x in args.story:
|
|
|
|
story.append(x)
|
2019-12-23 17:50:59 +01:00
|
|
|
print(story)
|
2020-02-28 17:34:49 +01:00
|
|
|
finalStrip = writeStrip(story,22)
|
2019-09-17 00:20:30 +02:00
|
|
|
finalStrip.show()
|