Search found 204 matches

by tappatekie
Sun Apr 15, 2012 2:41 pm
Forum: General/Off-Topic
Topic: How did you stumble across the Elysian Shadows Project?
Replies: 32
Views: 34319

Re: How did you stumble across the Elysian Shadows Project?

Browsing for making games or something like that on youtube, stumbled across the "Game Development: Getting Started" video, and just browsed through the channel videos of which I got addicted to keep watching new videos and rewatching a few videos at times.
by tappatekie
Sun Apr 15, 2012 11:59 am
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 30588

Re: Development video on youtube

Falco Girgis wrote:You're developing your own scripting language? Hell yeah, we want to see it!
Il get cracking on the video development soon :D, once I have planned what to do in it :P and get the language to a degree where I am happy with it being shown off (e.g having cool functions and syntax)
by tappatekie
Sat Apr 14, 2012 6:39 pm
Forum: Programming Discussion
Topic: Scripting Language development
Replies: 120
Views: 30588

Scripting Language development

Hey guys, I would like to tell you about my new programming (scripting) language that I am developing, it is called Plywood and I am making a YouTube series "Programming Language Development" on Super4Programming channel. This project is now stale, you can download the source here: http://...
by tappatekie
Thu Apr 05, 2012 2:53 am
Forum: Programming Discussion
Topic: Question?
Replies: 6
Views: 1675

Re: Question?

Personally, I program for the sheer thrill of the application working or code segment doing what it should do, then I seek to write more code for another thrill (A bit like drugs...). When a problem occurs which is so bad that I just need to step back, I just write another part of the code/functions...
by tappatekie
Wed Apr 04, 2012 6:21 am
Forum: Programming Discussion
Topic: Some questions around game developement
Replies: 15
Views: 4617

Re: Some questions around game developement

Quick question, can I learn c++ using just qt? (with help from www for language). I mean, would you recommend me to learn c++ using just the QT IDE. Also, could QT Creator be used without the use of QT API's and only rely on Win32 api's
by tappatekie
Tue Apr 03, 2012 10:47 am
Forum: Programming Discussion
Topic: Some questions around game developement
Replies: 15
Views: 4617

Re: Some questions around game developement

If I was to go with a visual studio version, id go for 2008 (9) since it's less bloated and faster. I used to use 2008 just fine according to speed (on a netbook), but since my recent upgrade to 2010, I personally would not recommend it (unless you have a good PC) since it uses around 100mb of memor...
by tappatekie
Mon Apr 02, 2012 3:46 pm
Forum: Programming Discussion
Topic: Quick .Net Reflection question
Replies: 13
Views: 3481

Re: Quick .Net Reflection question

Lol im getting confused now... This is how the system works right now update.exe FileSystem class (these functions are'nt actually present but it sums it up...) byte[] Load(string reference); //outputs the byte data for the file string Create(Stream stream); //outputs the new file reference The file...
by tappatekie
Mon Apr 02, 2012 1:07 pm
Forum: Programming Discussion
Topic: Quick .Net Reflection question
Replies: 13
Views: 3481

Re: Quick .Net Reflection question

Well the main application and updater has to work both ways, I mean, the main application accesses update classes and the updater accesses application classes. There is two reasons I want to use reflection, one is that I won't need to depend on that assembly as a reference and 2, I would rather have...
by tappatekie
Sat Mar 31, 2012 7:26 pm
Forum: Programming Discussion
Topic: Quick .Net Reflection question
Replies: 13
Views: 3481

Re: Quick .Net Reflection question

Yes. But instead of using .net to manipulate the app, it's more like, using .net to manipulate the data and app.

Edit: Sorry it's late when I posted that. Yes, you pretty much summed it up
by tappatekie
Sat Mar 31, 2012 6:54 pm
Forum: Programming Discussion
Topic: Quick .Net Reflection question
Replies: 13
Views: 3481

Re: Quick .Net Reflection question

The mini file system in update.exe is essentially storing all the update data (update installation) files in 1 so essentially (sorry I did'nt mention this..), the system won't get clogged up with files and it's slightly secure (basic encryption). I don't really see how corruption can occur since .Ne...
by tappatekie
Sat Mar 31, 2012 4:02 pm
Forum: Programming Discussion
Topic: Quick .Net Reflection question
Replies: 13
Views: 3481

Re: Quick .Net Reflection question

Sure, the reason I want to do this is because I have an updater.exe which basically updates an application as well as having a neat little mini file system. I want to use reflection from the main application to use this file system feature but have the executable in a seperate directory or even have...
by tappatekie
Sat Mar 31, 2012 5:40 am
Forum: Programming Discussion
Topic: resource advice(book examples wont compile)
Replies: 8
Views: 1656

Re: resource advice(book examples wont compile)

I don't know much about C/C++ but I do know C# and at a guess, your NUM_FIELDS enum value needs to have a integer (numeric) value? e.g enum fields { WORD, HINT, NUM_FIELDS=2 }; Not sure on this but check it out.. Because if I did similar code in C# it would bitch like crazy saying that the enum fiel...
by tappatekie
Fri Mar 30, 2012 6:52 pm
Forum: Programming Discussion
Topic: Quick .Net Reflection question
Replies: 13
Views: 3481

Quick .Net Reflection question

Hey guys, just a quick question, how bad would it be if I make my application nearly completely dependent on .Net reflection assembly invokes to invoke, create or modify methods, properties etc... in a .Net assembly?. I was thinking of something like Assembly asm = LoadAssembly("./libs/math.dll...
by tappatekie
Sat Mar 03, 2012 7:14 pm
Forum: Programming Discussion
Topic: *nix open call in C
Replies: 2
Views: 1195

Re: *nix open call in C

At a guess... But maybe it's bitching about it not being the full path of that file e.g "C:\status.tmp".

As I said, its only a guess but my code usually does it sometimes and fixed it right up with that :P
by tappatekie
Sat Mar 03, 2012 7:09 pm
Forum: Programming Discussion
Topic: Homebew TextBox
Replies: 5
Views: 1384

Re: Homebew TextBox

Hi MadPumpkin, thanks for showing your interest in my project and yes I can tell you about the implementation code. Basically, the textbox is a .Net control component but that class handles pretty much every thing. It is implimented into a custom form with just Components.Add(new InputBox { Text = &...