Show Posts
|
|
Pages: [1] 2
|
|
1
|
Games Center / 4K Game Competition - 2013 / Re: Java4K 2013!
|
on: 2012-11-12 11:42:53
|
My preference would be to keep the existing J4K contest in its current format, and have a separate OpenGL nK contest - perhaps run at a different time of the year, to ensure that the two contests don't compete for entrants.
Agreed. Plus it would make the community alive throughout the year and not only from december to march.
|
|
|
|
|
2
|
Games Center / 4K Game Competition - 2013 / Re: Java4K 2013!
|
on: 2012-11-06 12:35:47
|
* Asking the judges to write a review for only part of the games (they'll still have to rate them all)
So judge A for graphics, B for other, like ludum dare? I was more thinking, for instance 4 judges would have to write reviews for half of the entries = 2 reviews per game
|
|
|
|
|
3
|
Games Center / 4K Game Competition - 2013 / Re: M4nkala
|
on: 2012-11-06 11:19:55
|
Nice work, plus it led me to finally learn how to play Mancala  The bouncing particles are a very nice aesthetic approach to the board game, it works quite well. The game is pretty intuitive to play on top of that. To make it better you could maybe improve the theme of the game: too much Java4K entries follow the "random flashy colors on a black background" theme, so if you have a few bytes left and feel inspired it might be worth giving it a try! EDIT: Also, the AI is good, but as a newbie I can't really tell up to which point ^^
|
|
|
|
|
4
|
Games Center / 4K Game Competition - 2013 / Re: Java4K 2013!
|
on: 2012-11-06 11:02:11
|
Good news to my ears! I'll probably enter again this year  Regarding the "10 year" thing, here is an idea: on top of the usual competition, there is a special "challenge" for devs, which is to produce a sequel to any previous Java4K entry. Optionally the entrants could not only compete in the normal compo, but also be ranked in this special "10 Year Challenge category", with specific rankings (based on special criteria ?). About the judging, while I enjoy the current system, I understand it might be a bit tiring for those judges. My opinion would be to slightly improve it by: * Asking the judges to write a review for only part of the games (they'll still have to rate them all) * Having more judges, so that every game can still get enough reviews - and even more ratings.
|
|
|
|
|
5
|
Games Center / 4K Game Competition - 2012 / Re: The Little Scientist 4K
|
on: 2012-05-22 16:59:47
|
I just noticed the "Show sources at end of contest" option doesn't seem to work, so I made them public ; while I'm at it, here is a package of the project sources (including the build script), I hope some will find it useful for next year. On a side note, I kinda started working on an Android remake of the game, nothing serious yet but I'll make sure to share it when I have something playable!
|
|
|
|
|
6
|
Games Center / 4K Game Competition - 2012 / Re: Judging panel results!
|
on: 2012-03-22 13:46:38
|
When you're judging 50 games and want to express an opinion on their relative merit you want at least 20 different scores to give them. Ranking 0-10 would mean giving 0 to some games just to get the differentiation, which would be quite discouraging for the people who made those games, and a lot of post-review agonising over games on the borderline between 6 and 7.
I guess you're right, if no one dares to give scores below 5 it's no finer than the bin system... Given that judges have a personal difference in scoring, this would distort the results. Every judge has his own personal "metric".
I was only suggesting to split the written reviews, not the scoring. Else the rankings would not make sense indeed.
|
|
|
|
|
7
|
Game Development / Networking & Multiplayer / Re: stream music with java
|
on: 2012-03-22 11:04:27
|
The thing is there's no way you can broadcast music without downloading it. You can broadcast music while downloading it though, and that's what streaming is  Now after some quick Googling I found a few leads for how to do it. For instance: http://stackoverflow.com/questions/6159138/streaming-music-files-in-java points to two existing projects for hosting audio broadcasting servers. Another common solution would be to use an independent broadcasting server (like IceCast) and make your server send data to it/control it. One thing that you should consider though is: are you sure you want to use the server to broadcast sound? An alternative would be to simply broadcast the command, and let clients process it themselves. On one hand using a server for the streaming is probably more flexible, as you can then easily add other sound-related commands without having to modify the clients, but on the other hand it might induce an important traffic.
|
|
|
|
|
8
|
Games Center / 4K Game Competition - 2012 / Re: Judging panel results!
|
on: 2012-03-22 10:27:31
|
Oh, Marwane, nice reference to Saint-Exupéry. I picked up on it after writing my review, and figured that someone else would be sure to mention it, but since no-one has I thought I'd let you know that it didn't go entirely unnoticed.
Haha congrats, you're the first one who mentioned the reference  I realize now that i focused too much on the music, forgetting to test the game properly which in turn lead to buggy physics on some platforms, damn  Then I guess I'm lucky, I didn't bother at all testing my applet in various environments... But luckily I had to work on the game alternatively on Linux & Windows x) Now regarding the ranking system, even if I understand that the current way to do it is time consuming for reviewers, I totally agree with Appel in that using 'bins' would make the ranking a bit shady for others. Now, I guess that what takes a lot of time is to write the reviews, so what about splitting the games between the judges? They would still have to give grades to everyone (else it wouldn't be fair), but only write reviews for a subset. For instance, 2 reviews per game would be fair enough. Another (smaller) suggestion: an alternative to the idea of bins would be to give notes between 0 and 10, they can easily be converted to percents once averaged, and are probably faster to choose.
|
|
|
|
|
9
|
Game Development / Newbie & Debugging Questions / Re: Datastructure for a lot of "People"
|
on: 2012-03-21 17:15:42
|
|
This seems like a common "data persistance" problem, what about this:
- You store everything on your DataBase - When you launch the server, at first its "active player list" is empty - When someone "becomes active", you fetch information about him from the DB and store him in your player list - When someone "becomes passive", you save the updated information to the DB and remove him from the player list - From times to times, you save everything to the DB, just in case
|
|
|
|
|
10
|
Game Development / Newbie & Debugging Questions / Re: Calculating Distance Interval
|
on: 2012-03-21 17:06:34
|
Ok I'm totally confusing myself here and drawing a blank...
If I have change in x and change in y (dx and dy) over a specified amount of time in milliseconds, and I calculate time intervals by (time / dx) and (time / dy), how do I calculate the distance intervals for each time period?
This is a stupid math question... but I'm seriously just blanking out here...
I think what you're looking for is: 1 2
| distanceintervalx = dx * time period / time distanceintervaly = dy * time period / time |
Example: dx = 5m, dy = 10m, dt = 2sIf you want a time period of 1s, then: distanceintervalx = 5 * 1 / 2 = 2.5 m/s distanceintervaly = 10 * 1 / 2 = 5 m/sThat's what we usually call speed 
|
|
|
|
|
12
|
Games Center / 4K Game Competition - 2012 / Re: Judging panel results!
|
on: 2012-03-20 23:56:23
|
Wow, 1st place, really? I didn't expect this at all, I'm glad you liked my game, thanks! Indeed I felt like The Little Scientist might be a good start for a real game... If I find the time maybe I'll start making a mobile app out of it, who knows  Anyway thank you Appel for setting up this contest, I learned a lot of things by taking part to it. See you next year 
|
|
|
|
|
14
|
Games Center / 4K Game Competition - 2012 / Re: Closed! :)
|
on: 2012-03-03 12:54:13
|
its 204 kilobytes of games, lots to look though. Fortunately I have a half empty Amiga floppy disk to save them all.
Indeed that's impressive. All games since the inception of Java4k would fit on a 3-1/2 inch floppy disk 
|
|
|
|
|
17
|
Discussions / Miscellaneous Topics / Re: Manga + Java = ?
|
on: 2012-02-24 17:25:47
|
|
Awesome.
From the wiki page:
"Exaclan (エグザクラン Eguzakuran?) is a virtual game [...] To win the game, one must collect all six "stars". The stars are weapons that, when used, display a bugged symbol consisting of a star and several Java[1] code snippets."
|
|
|
|
|
19
|
Games Center / 4K Game Competition - 2012 / Re: The Little Scientist 4K
|
on: 2012-02-14 14:43:12
|
I just made a new version of the game, by removing a few not-so-good ideas and making the game a bit more fun. Removed- The rocket direction being important when changing planets (now you always land on the next one) - The planet names - The antialiasing trigger (it didn't change anything performance-wise on my netbook actually) Added- Some diversity in the planets (rocks & uranium pillars) I now have like 80 bytes left, not sure yet what I should do with these 
|
|
|
|
|
20
|
Games Center / 4K Game Competition - 2012 / Re: Theseus vs Minotaur
|
on: 2012-01-31 17:13:07
|
Interesting maze game! The graphics are quite pleasing, the only thing is that the game is a bit too hard for me  I hardly passed the 2nd level, and I can't think of any working combination for the 3rd one  +1 for the solver, if you eventually have to choose between that and an editor, I would actually enjoy the solver more.
|
|
|
|
|
22
|
Games Center / 4K Game Competition - 2012 / Re: The Little Scientist 4K
|
on: 2012-01-27 09:36:41
|
I don't know how to finish it. I keep creating space ships, fly to another planet but it just keeps returning to the same planet I've been to before. ~Shazer2  Hmm it looks like everyone gets confused by this... I just added ra4king's hint to the game instructions 
|
|
|
|
|
24
|
Games Center / 4K Game Competition - 2012 / Re: The Little Scientist 4K
|
on: 2012-01-25 21:14:51
|
What I was wondering though: Is there always the same amount of wood on the planet right at the beginning? Because it seems to me as if some times there would be a bit more than other times.
It's randomly generated, but it should always be more or less the same.
|
|
|
|
|
25
|
Games Center / 4K Game Competition - 2012 / Re: The Little Scientist 4K
|
on: 2012-01-25 16:06:33
|
I guess I have to change my strategy^^ But I have absolutely no idea, how you can get close to 116...
There is a hack, press Alt+F4 to build a rocket instantly  Not sure how I did exactly... But what I can tell you is that I quickly made several laboratories!
|
|
|
|
|
27
|
Games Center / 4K Game Competition - 2012 / Re: The Little Scientist 4K
|
on: 2012-01-25 14:28:40
|
I meant they are as trustworthy as a text stating 'I beat the game in X seconds'.
You're right, but it's all about the ratio faking effort/worth of faking it ^^ EDIT:you could insert some validation-code generator on the screen, so you can check for fakes  You sir are a gentleman and a scholar. Totally doing that for my next entries. Now here is the author's score: 
|
|
|
|
|
30
|
Games Center / 4K Game Competition - 2012 / Re: Kobold 4k
|
on: 2012-01-25 09:47:03
|
The AI is actually the core feature here. Since the size is limited I have to kind of bruteforce the decisiontree. I planed to include adaptive learning too, but that would need a few more bytes then. Its also fully dynamic, working with all kinds of maps, or changes in the gameplay mechanics. (The AI basically just knows what actions it is allowed to do, and makes a propper activity-chain from thereon)
Impressive!
|
|
|
|
|
|
Add your game by posting it in the WIP section,
or publish it in Showcase.
The first screenshot will be displayed as a thumbnail.
|
|