trAInsported
Re: trAInsported: Alpha testers needed
Hi, I have another problem: if I go on Compete I have no AI to choose from.
- Robin
- The Omniscient
- Posts: 6506
- Joined: Fri Feb 20, 2009 4:29 pm
- Location: The Netherlands
- Contact:
Re: trAInsported: Alpha testers needed
Even better than do ... end.Germanunkol wrote:Good point.
I was going to use functions instead of do ... end blocks, because that way a object oriented approach in the form of:would not be destroyed.Code: Select all
object = {} function object.new() ... end return object
That would be better than that including thing.Germanunkol wrote:How about this approach: The upload script looks for all the require calls and then automatically zips those files and uploads the zipped file? That way users wouldn't have to deal with it...
You'll either need to use native tools for zipping (which might be a problem on Windows), or use some sort of LuaZip library that probably exists. I guess.Germanunkol wrote:No idea how to do this though.
Help us help you: attach a .love.
-
- Party member
- Posts: 712
- Joined: Fri Jun 22, 2012 4:54 pm
- Contact:
Re: trAInsported: Alpha testers needed
Could you try running the attached .love file and tell me your console output? I really need to get access to a win PC -.-gennn wrote:Hi, I have another problem: if I go on Compete I have no AI to choose from.
Edit: Never mind. The file wasn't working. I think I got it figured out now...
I guess I'll try to get the server to actually load the zip files first and run the AI in them. If that works I can still think about a way to automatically zip the files - maybe. Until then I can just let the users zip it...Robin wrote: You'll either need to use native tools for zipping (which might be a problem on Windows), or use some sort of LuaZip library that probably exists. I guess.
trAInsported - Write AI to control your trains
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
-
- Party member
- Posts: 712
- Joined: Fri Jun 22, 2012 4:54 pm
- Contact:
Re: trAInsported: Alpha testers needed
Update: Added a new file to the first post. This one should also work on windows now.
Most important changes:
Most important changes:
- Added "require" function (or at least an interface to it) to the AI API
- Added more sounds
- Fixed windows file loading/storing
- Updated the API.
trAInsported - Write AI to control your trains
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
Re: trAInsported: Alpha testers needed
Hi, I just looked at your homepage and I noticed that the download links are not yet working.
Seems that the only way to get your game is via github.
Just some days ago I finished a cgi bash script for my game that automatically builds a love archive each time something is commited to the github code.
I don't know how you host your game website, but if it's with Linux then it might be helpful.
You can find the cgi script here: https://github.com/humansarepuppies/suk ... itpush.cgi.
You also need to enable "WebHook URL" in github and point it to the cgi script address.
It works like this:
Each time you commit something to your project, github connects to the cgi script and sends the changes in JSON format as postdata.
The script reads the data and checks if something below /code has changed, that's a directory in my repo, you may not need this grep for your code.
If there's a change below /code it clones the current git repo from github to /tmp, then packs and moves it to the webserver location.
The script gives each "build" a new timestamp, but it should be easy to change the script to give it a version number or just the same name as previous builds.
Hope that you find this useful (or anyone else here).
Have fun,
vitaminx
Seems that the only way to get your game is via github.
Just some days ago I finished a cgi bash script for my game that automatically builds a love archive each time something is commited to the github code.
I don't know how you host your game website, but if it's with Linux then it might be helpful.
You can find the cgi script here: https://github.com/humansarepuppies/suk ... itpush.cgi.
You also need to enable "WebHook URL" in github and point it to the cgi script address.
It works like this:
Each time you commit something to your project, github connects to the cgi script and sends the changes in JSON format as postdata.
The script reads the data and checks if something below /code has changed, that's a directory in my repo, you may not need this grep for your code.
If there's a change below /code it clones the current git repo from github to /tmp, then packs and moves it to the webserver location.
The script gives each "build" a new timestamp, but it should be easy to change the script to give it a version number or just the same name as previous builds.
Hope that you find this useful (or anyone else here).
Have fun,
vitaminx
experimental art since 13.75 gigayears
https://github.com/humansarepuppies
http://stardiaries-lab.blogspot.com/
https://github.com/humansarepuppies
http://stardiaries-lab.blogspot.com/
Re: trAInsported: Alpha testers needed
Don't know if this has been mentioned already, but your list of screen sizes in the settings is impractical, if not buggy
I have 2 HD monitors which results in a large set of resolutions, they're just cut off in the window (should be up to 1920x1080).
I've attached a screenshot, should be obvious
I have 2 HD monitors which results in a large set of resolutions, they're just cut off in the window (should be up to 1920x1080).
I've attached a screenshot, should be obvious
experimental art since 13.75 gigayears
https://github.com/humansarepuppies
http://stardiaries-lab.blogspot.com/
https://github.com/humansarepuppies
http://stardiaries-lab.blogspot.com/
-
- Party member
- Posts: 712
- Joined: Fri Jun 22, 2012 4:54 pm
- Contact:
Re: trAInsported: Alpha testers needed
Hi, thanks for the script-Idea!
That might come in really handy, yes!
So far I have not posted the .love on the website, you can only get it from this forum (see first post in the thread for the newest version). I wanted to get the game tested by some lovers before I expose it to the broad public.
But when I do make it public, I'll check out your script - it's a good idea!
I did not yet figure out why the screen resolutions go off the screen, yes. I'll look into it... they're supposed to be wrapped around (and sometimes that works).
Edit: Fixed. I checked for the screen width instead of the screen height. My bad.
That might come in really handy, yes!
So far I have not posted the .love on the website, you can only get it from this forum (see first post in the thread for the newest version). I wanted to get the game tested by some lovers before I expose it to the broad public.
But when I do make it public, I'll check out your script - it's a good idea!
I did not yet figure out why the screen resolutions go off the screen, yes. I'll look into it... they're supposed to be wrapped around (and sometimes that works).
Edit: Fixed. I checked for the screen width instead of the screen height. My bad.
trAInsported - Write AI to control your trains
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
-
- Party member
- Posts: 712
- Joined: Fri Jun 22, 2012 4:54 pm
- Contact:
Re: trAInsported: Alpha testers needed
It's working!
I wrote a .svg file creator which will generate charts displaying the outcome of the last match ... all automatically! The result is then stored on the website. Now you can actually follow how badass phoenix is Check it out:
http://trainsportedgame.no-ip.org/index.php
I wrote a .svg file creator which will generate charts displaying the outcome of the last match ... all automatically! The result is then stored on the website. Now you can actually follow how badass phoenix is Check it out:
http://trainsportedgame.no-ip.org/index.php
trAInsported - Write AI to control your trains
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
- substitute541
- Party member
- Posts: 484
- Joined: Fri Aug 24, 2012 9:04 am
- Location: Southern Leyte, Visayas, Philippines
- Contact:
Re: trAInsported: Alpha testers needed
Could you put the download link in dropbox now. I want to download it in a downloader... And yes, I do have a crappy net.
Currently designing themes for WordPress.
Sometimes lurks around the forum.
Sometimes lurks around the forum.
- Taehl
- Dreaming in associative arrays
- Posts: 1025
- Joined: Mon Jan 11, 2010 5:07 am
- Location: CA, USA
- Contact:
Re: trAInsported: Alpha testers needed
I tried it out for the first time.
1) Loading was super-slow. Why make 19 threads generate images at the same time, instead of generating 1 image at a time?
2) The game brings my whole system to a crawl. Unless I minimize the window (to force-pause it), every action on my desktop takes like 30 seconds to happen.
3) I tried the first tutorial level. I got to the part where it tells you to print("Hello trAIns!"), and am stuck. It won't let me continue the tutorial, despite following its instructions.
1) Loading was super-slow. Why make 19 threads generate images at the same time, instead of generating 1 image at a time?
2) The game brings my whole system to a crawl. Unless I minimize the window (to force-pause it), every action on my desktop takes like 30 seconds to happen.
3) I tried the first tutorial level. I got to the part where it tells you to print("Hello trAIns!"), and am stuck. It won't let me continue the tutorial, despite following its instructions.
Earliest Love2D supporter who can't Love anymore. Let me disable pixel shaders if I don't use them, dammit!
Lenovo Thinkpad X60 Tablet, built like a tank. But not fancy enough for Love2D 0.10.0+.
Lenovo Thinkpad X60 Tablet, built like a tank. But not fancy enough for Love2D 0.10.0+.
Who is online
Users browsing this forum: No registered users and 1 guest