A Game to Make Games
11–20 of 23 posts
Re: A Game to Make Games
#12Hi, I've got a couple things I wanted to comment on. First, and the most obvious, I want to say that this looks like a very interesting and fun project. I wish you the best. Secondly, and I know I'm pointing out the elephant-in-the-post here, but I think if one is launching a product or revealing a project to a wide group of potential users, it would be best to utilize a speaker that is easy-to-understand. This has b…
Re: A Game to Make Games
#13Well produced video and website, simple and honest presentation. Seems to build a lot on the appeal of Minecraft, but considering how popular Minecraft is that's probably a very smart move. Hope it works out! I'd try it out if there were a Mac version. Looking at the time-lapse of using it [1] it's certainly not a "game"; you need to have patience and dedication to make anything serious. If there were any friendlier…
It also discusses why you normally need this "patience and dedication" -- you're often wrapping images around polygons and you have to tell the computer how to do that.
Re: A Game to Make Games
#14Re: A Game to Make Games
#15Edit: It's on the wiki, both are planned.
Re: A Game to Make Games
#16Hi, I've got a couple things I wanted to comment on. First, and the most obvious, I want to say that this looks like a very interesting and fun project. I wish you the best. Secondly, and I know I'm pointing out the elephant-in-the-post here, but I think if one is launching a product or revealing a project to a wide group of potential users, it would be best to utilize a speaker that is easy-to-understand. This has b…
Thanks for the criticism! I do realize my accent might be off-putting and did my best. My friends and I did many takes and kept the best of them, fully realizing the limitations we were working with.
I wanted the video to feel personal and also use this as an opportunity to improve my communication skills.
I subtitled the video in both English and French right away to mitigate the problem.
Re: A Game to Make Games
#17Well produced video and website, simple and honest presentation. Seems to build a lot on the appeal of Minecraft, but considering how popular Minecraft is that's probably a very smart move. Hope it works out! I'd try it out if there were a Mac version. Looking at the time-lapse of using it [1] it's certainly not a "game"; you need to have patience and dedication to make anything serious. If there were any friendlier…
You're right in saying CraftStudio isn't your regular game, but I do think it has a very gamey feeling to it, if only for the fact that editing is tailored to be simple and it's fully multiplayer.
There are quite a few people hopping on the public test project again and again with nothing special in mind but to join others in making something fun and cooperating.
I think using the word "game" lowers the barrier, some people are wary at the idea of _working_ on a game, using _tools_.
Re: A Game to Make Games
#18For those who don't watch the video, they're currently raising crowd funding via indiegogo (which is a bit like Kickstarter[1]) and have raised almost $10,000. Link here: http://www.indiegogo.com/craftstudio [1] IndieGoGo is like Kickstarter except instead of money being taken when they total is reached (with "pledging") it's taken straight away and provided whether or not the project succeeds in raising the total.
The main reason I wandered away from Kickstarter is that in order to start a campaign, you need to be a US citizen living in the US with a US id. Since I'm living in France, that's not happening.
Re: A Game to Make Games
#19Just woke up to a surge of visits & contributions and realized CraftStudio made it to the HN front page. Thanks for the love and criticism, I value it a lot coming from the Hacker News crowd.
A bit of technical background for those who might be interested: CraftStudio is built in C# using the XNA framework.
I will port it to MacOS X and Linux using Mono + MonoGame (https://github.com/mono/MonoGame), when MonoGame reaches enough 3D support. I already managed to get the UI to run under Linux so I'm pretty confident this will pan out well.
The network code uses the most amazing Lidgren.Network library (http://lidgren-network-gen3.googlecode.com/). Honestly I don't know that CraftStudio could have happened without it. It's entirely UDP-based and does such a great job of handling all the low-level bits while providing a great API.
The user interface uses a custom built library (which I open sourced under the MIT license over there, documentation is severely lacking for now though: http://nuclearwinter.codeplex.com/).
You can also find the Operational Transform library I built for real-time collaborative document editing (MIT too, https://bitbucket.org/elisee/nuclearot). It's only used for the text-editing support.
If you have any questions, please go ahead and ask :).
You can follow me on Twitter there: https://twitter.com/craftstudiodev if you want to be kept in the loop. I also do livecoding on CraftStudio every once in a while: http://www.twitch.tv/eliseegw
Re: A Game to Make Games
#20"CraftStudio will provide an easy-to-use scripting system catering to both beginners and power users" I hope that by supporting power users you mean CraftStudio will support, in addition to your visual scripting language, an existing (textual) programming language. A language has to be text-based for users to input the code with reasonable speed, unless your GUI is fantastic. And if you try to implement your own text…
It's very important for me to not hinder the productivity of people who already have scripting / game dev experience and as such I want the scripts to be fully editable with a keyboard. There will probably be a way to edit your scripts externally at some point too.
The details are still a bit blurry as I'm quite busy implementing all the other core features but it's coming together. I'm looking at a lot of what has been done, too.
CraftStudio has scenes, which are pretty similar to Unity 3D scenes. You have game objects in a hierarchy and you can add components to them to render stuff or add physics or script behaviors.
I plan on using Lua as the underlying scripting language, but I might change my mind by the time I get around to implementing it. I expect (just a wild guess) to have scripting support ready sometimes over the next 2-3 months.
There will be a library of "black box" scripts with a bunch of variables and nobs you can turn. People will be able to make more and share them with the community. You'll also be able to reveal the underlying code if you want to tweak it to your specific needs.
On that front, I think CraftStudio has the potential to get people into programming by starting with simple tools and then learning with the help of others thanks to the real-time collaborative editing capabilities. Being able to chat and interact about code will be pretty awesome I think.