Page 115 of 180
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 7:08 am
by MadByte
Its intended to be a puzzle platformer with some deadly traps basically. Currently Im adding all various entities I need to create some cool levels. I try to keep everything as polished as possible to be able to release some kind of demo soon(ish). I actually released a very unpolished and content lagging version two years ago.
BOT-Brad wrote:MadByte wrote:-snip-
Wow, looks interesting!
Also, how did you make those animated gifs?
I recorded a lossless Video of the screenregion and used an online Video to GIF converter (bloggif i think) to create it
I couldn't find a working freeware tool to convert it unfurtunately :/
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 9:58 am
by Nixola
You could also use [wiki]love.graphics.newScreenshot[/wiki] to grab a screenshot every frame; then you can use ffmpeg to convert it from images to a single video or maybe even directly .gif file.
Code: Select all
local t = os.time() --take the time the program started, it'll be of course unique every run
local i = 1 --initialize this i variable
--do stuff
love.draw = function()
--draw stuff
lg.newScreenshot():encode(("cast/%d/%05d.png"):format(t, i)) --take a screenshot, save it in a folder with sequential file names
i = i + 1
end
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 1:42 pm
by I~=Spam
Nixola wrote:You could also use [wiki]love.graphics.newScreenshot[/wiki] to grab a screenshot every frame; then you can use ffmpeg to convert it from images to a single video or maybe even directly .gif file.
Code: Select all
local t = os.time() --take the time the program started, it'll be of course unique every run
local i = 1 --initialize this i variable
--do stuff
love.draw = function()
--draw stuff
lg.newScreenshot():encode(("cast/%d/%05d.png"):format(t, i)) --take a screenshot, save it in a folder with sequential file names
i = i + 1
end
I am not sure about this but doing that every frame has the potential to be very slow...
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 2:13 pm
by BOT-Brad
I~=Spam wrote:Nixola wrote:You could also use [wiki]love.graphics.newScreenshot[/wiki] to grab a screenshot every frame; then you can use ffmpeg to convert it from images to a single video or maybe even directly .gif file.
Code: Select all
local t = os.time() --take the time the program started, it'll be of course unique every run
local i = 1 --initialize this i variable
--do stuff
love.draw = function()
--draw stuff
lg.newScreenshot():encode(("cast/%d/%05d.png"):format(t, i)) --take a screenshot, save it in a folder with sequential file names
i = i + 1
end
I am not sure about this but doing that every frame has the potential to be very slow...
Yep, I just tried it and I was getting just 1 FPS
.
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 5:29 pm
by Nixola
If you've got a fairly nice pc and don't want to download any screencasting software you can do that; it's also a trick I use to generate animations in LÖVE
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 6:05 pm
by BOT-Brad
Another screen. Now have a little 'notice' system that pops up bottom-right (or wherever you set in the skin file). Will likely be used for screenshots notice (like below), achievements and other important info.
Nixola wrote:If you've got a fairly nice pc and don't want to download any screencasting software you can do that; it's also a trick I use to generate animations in LÖVE
Yeah, it actually runs at a reasonable framerate (20 FPS-ish) if I use .jpg instead of .png.
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 6:09 pm
by Nixola
If you need much much speed, you could use .bmp? .tga is available as well but I don't know anything about it
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 6:43 pm
by BOT-Brad
Nixola wrote:If you need much much speed, you could use .bmp? .tga is available as well but I don't know anything about it
Problem with .bmp is it produces HUGE file-sizes and quickly starts gobbling up my HDD space. Each 1920x1080 image hits around 7MB. If it halts my FPS to around 30 FPS (which it does), thats 210MB a SECOND!*
*
I think...
(.tga must be similar to .bmp, it produces exactly the same file-size as .bmp at least)
Re: What's everyone working on? (tigsource inspired)
Posted: Wed May 13, 2015 10:27 pm
by s-ol
BOT-Brad wrote:Nixola wrote:If you need much much speed, you could use .bmp? .tga is available as well but I don't know anything about it
Problem with .bmp is it produces HUGE file-sizes and quickly starts gobbling up my HDD space. Each 1920x1080 image hits around 7MB. If it halts my FPS to around 30 FPS (which it does), thats 210MB a SECOND!*
*
I think...
(.tga must be similar to .bmp, it produces exactly the same file-size as .bmp at least)
Both are uncompressed / bitmap data formats.
Re: What's everyone working on? (tigsource inspired)
Posted: Thu May 14, 2015 3:33 am
by I~=Spam
210 MB a second... hmmm I have a hard drive at 5200rpm I don't even think that it can sequentially write data fast enough. A SSD might be able to do it but they are pretty slow at writing sequentially (very fast at reading though). So unless a ramdisk is used it doesn't seem reasonable to do that...