1
0
Fork 0
mirror of https://gitlab.com/oloturia/fumcaso.git synced 2024-11-01 01:38:16 +01:00
Random Comic Generator/Bot
Find a file
2021-05-27 16:06:15 +02:00
oloeng French translation and some typos 2021-04-28 17:12:27 +02:00
olofra French translation and some typos 2021-04-28 17:12:27 +02:00
oloturia fixed B27 2021-05-25 12:22:54 +02:00
.gitignore added font size in config file 2021-03-13 18:57:12 +01:00
config.json French translation and some typos 2021-04-28 17:12:27 +02:00
LICENSE Initial commit 2019-09-09 17:24:27 +02:00
mastodon_main.py added text for post in Twitter and Mastodon 2020-12-29 02:13:29 +01:00
randstrip.py fixed pdf resolution 2021-05-11 15:23:53 +02:00
README.md added text for post in Twitter and Mastodon 2020-12-29 02:13:29 +01:00
telegram_main.py fixed file not closed 2021-05-27 16:06:15 +02:00
twitter_main.py added text for post in Twitter and Mastodon 2020-12-29 02:13:29 +01:00
ubuntu-font-licence-1.0.txt Add files via upload 2019-09-09 17:36:22 +02:00
ubuntu.ttf First Commit 2019-09-09 17:32:07 +02:00

fumcaso

Random Comic Generator/Bot

randstrip.py - Create a random strip and show it with ImageMagick.

mastodon_main.py - Publish a new strip on Mastodon.

twitter_main.py - Publish a new strip on Twitter.

telegram_main.py - Launches the Telegram bot.

Libraries needed:

twitter_main.py:

  • tweepy $ pip3 install tweepy

mastodon_main.py:

  • Mastodon.py $ pip3 install Mastodon.py

telegram_main.py:

  • libssl $ sudo apt-get install libssl-dev

  • python-telegram-bot $ pip3 install python-telegram-bot

Configuration file is a JSON with this tree: { defaultProfile: name of the profile used if not specified

"profile name" :{		name of the profile
	saveLocation: 		location for temporary files
	filename:		default filename used by function createStrip, if not specified (not used in any of the scripts, at the moment)
	imagesLocation:		folder where the different panels are stored
	csvLocation:		folder where the csv are stored
	csvTree:		name of file containing panel chains
	csvSpeech:		name of file containing speech
	csvSubs:		name of file containing substitutions in text
	csvObj:			name of file containing information about objects location
	xSize:			width of the final image
	ySize:			height of the final image
	panelLength:		length of a single panel (roughly panelLength * number-of-panels should be = xSize)
	font:			font used
	"application":{ 	special instruction for applications, like "twitter", "mastodon", "telegram"
		"token"		token location
		"filename"	filename used for the temporary image
		"text"		text for the post on Twitter and Mastodon (optional)
	}
}

}

There are four different csv files:

csvTree Contains the chain (markov-like) about how the different panels are combined. The first column is the previous panel, other columns are the different possible outcomes. It always starts with 000, if a file is not found it does nothing, it ends with END. The script adds ".png" to the entries.

	origin,	destination, destination, destination...

csvSpeech Contains the random text table. In the first column there is the name of the panel, then the number of actors, then the location (x and y) on the panel for text of each actor, then the random text. If there are more than one actors, the text is "1st location,2nd location" so if we have two characters speaking, that would be "question,answer". For silent panels, just put 0 in the 2nd column. For a line break put @. Different words can be randomly chosen with a substitution tag, tags are marked with a dollar sign, (like $TAG).

	name.png,0 				(silent panel name.png)
	name.png,1,100,200,Hello,Hi		(single character that says "Hello" or "Hi" placing text on x100 y200)
	name.png,2,100,200,300,200,Hello,Hi	(two characters, the first says "Hello" the second answers "Hi", the first has text on x100 y200, the second on x300 y200)
	name.png,1,100,200,$GREETING		(single character that says a random greeting defined in subs.csv)

csvSubs every $ tag is in the first column of this file, the tag is substituted with a random word in the following columns, it's possible to insert tags in the substitution text. This csv uses semicolons.

	$GREETING;Hi;Hello;Hallo		($GREETING is substituted with "Hi", "Hello" or "Hallo")
	$COLOUR;red;green;$GREETING		($COLOUR is substituted with "red", "green" or a random greeting)

csvObj Contains the location of random objects that can be placed on a panel. On the first column there is the name of the panel (like A00.png), then the x and y placement on the panel, then different image files of the objects to choose from. If a "R" is placed instead of the list, the last object used is repeated

	panel.png,100,200,obj00.png,obj01.png	(on panel.png a random object chosen among obj00.png and obj01.png is placed at x100 y200)
	panel2.png,100,200,R			(on panel2.png the object used in the previous panel  is placed at x100 y200)