Search:

Type: Posts; User: Ichmael™

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    4,007

    Ok, so I've created a scene graph sort of system...

    Ok, so I've created a scene graph sort of system I guess you would call it using all my own drawing functions which are as yet pretty well untested. All my operations should go onto a temporary DC...
  2. Replies
    5
    Views
    4,007

    I see, interesting. Thanks guys. That'll give me...

    I see, interesting. Thanks guys. That'll give me a start at least.
  3. Replies
    5
    Views
    4,007

    Drawing to HDC

    I was jst staring at my wall, it's covered in diagrams and various formulas from past projects, one of them was my opengl gui lib which I never even finished. All of a sudden I have an urge to start...
  4. Replies
    1
    Views
    918

    Ok, so I've just kept working at it. So tired...

    Ok, so I've just kept working at it. So tired now, but oh so close. Stuck again though. I have the server creating threads now, and I have each socket kept track of in a class instance which in turn...
  5. Replies
    1
    Views
    918

    Multithreaded server, where to start?

    Hi all,

    I've written a pretty basic server. However now I've ran into a problem (and well I'm on an extremely short deadline so hopefully you guys can help me out).

    Basically, I can connect...
  6. Thread: Gui

    by Ichmael™
    Replies
    4
    Views
    1,280

    Well, I've tried to obfuscate the programmer as...

    Well, I've tried to obfuscate the programmer as much as possible from the core of the system, for simplicity sake. They should never really have the need to actually modify the way that widgets are...
  7. Thread: Gui

    by Ichmael™
    Replies
    4
    Views
    1,280

    Yeah, that's a fair enough point.

    Yeah, that's a fair enough point.
  8. Thread: Gui

    by Ichmael™
    Replies
    4
    Views
    1,280

    Gui

    I'm looking into creating a GUI system for OpenGL, or whatever you want to render it with (it doesn't really matter for the question).

    I have a fundamental problem with the way to store widgets.
    ...
  9. Replies
    6
    Views
    2,174

    Oh bloody hell, I knew it'd be something stupid...

    Oh bloody hell, I knew it'd be something stupid like that. I think I'd best go to sleep, I've rewritten it and it's working now. Thanks guys.

    [edit:] I just wrote it how I have been writing all my...
  10. Replies
    9
    Views
    7,895

    Oops, I meant to add- Why not itoa, reverse...

    Oops, I meant to add-

    Why not itoa, reverse then atoi? Or I think you could use a bitset.
  11. Replies
    9
    Views
    7,895

    so you're saying, given a number (say 1234) you...

    so you're saying, given a number (say 1234) you want it to be returned last digit first and first last (4321)?
  12. Replies
    6
    Views
    2,174

    Alright, maybe I should have just posted the...

    Alright, maybe I should have just posted the whole glob of code in the first place (usually I would have, it's 4am, I'm hardly thinking straight).


    #include <iostream>

    struct LOGENTRY{
    ...
  13. Replies
    6
    Views
    2,174

    Writing strings to file

    Alright, I thought I had fully grasped strings but lately a lot of my work has required me to output strings and manipulate strings and I keep running into all sorts of trouble for such basic a...
  14. Replies
    6
    Views
    1,588

    I prefer FMOD, it's pretty easy to use. And it's...

    I prefer FMOD, it's pretty easy to use. And it's free if you're not selling your program.
    www.fmod.org



    FSOUND_Init( 32000, 64, 0 );
    FMUSIC_MODULE midi = FMUSIC_LoadSong( "song.midi" );...
  15. Replies
    9
    Views
    2,027

    Well I'd always assumed that sort of thing didn't...

    Well I'd always assumed that sort of thing didn't cause a leak, it keeps reference to the memory till the end of that statement doesn't it?
  16. Replies
    9
    Views
    2,027

    Ahh I have this problem of making things...

    Ahh I have this problem of making things unecesseraily complicated. I'll see how I go with that, but I can see the idea is much more logical.
  17. Replies
    9
    Views
    2,027

    Alright. Well now for the next problem. I'm...

    Alright. Well now for the next problem. I'm trying to use that function with the following to return string between 2 delimiters.


    char* strbetween( char* searchstr, char* delimiter1, char*...
  18. Replies
    9
    Views
    2,027

    Still doesn't seem to be working properly, the...

    Still doesn't seem to be working properly, the output is not always correct. Sometimes it will just output the char 's' and there wasn't a single one in the given string.. Any ideas? I've modified...
  19. Replies
    9
    Views
    2,027

    Ahh, of course.. Thanks champ.

    Ahh, of course.. Thanks champ.
  20. Replies
    9
    Views
    2,027

    memory problem with string manipulation

    I'm terrible when it comes to string manipulation, I always seem to find a way to segfaut or something. I'm trying to return the string between 2 offsets of another string but I'm getting weird...
  21. Replies
    3
    Views
    1,058

    I see. Well I tried your method for UTF16-LE and...

    I see. Well I tried your method for UTF16-LE and it seems to work. Except I am getting those little boxes [] where if I open in openoffice.org I'd be getting # (hash).. And now the junk at the...
  22. Replies
    3
    Views
    1,058

    Reading UNICODE into an edit

    I'm a n00b to unicode so go easy on me, I'm also the type who likes to code first and read documentation later.

    I'm trying to read a unicode file, and I've pretty much got it working. But there is...
  23. Replies
    2
    Views
    1,332

    Well I'm not exactly sure what you are doing but...

    Well I'm not exactly sure what you are doing but the Win32 API supplies several methods such as:

    LoadLibrary()
    LoadLibraryEx()

    And you can use GetProcAddress() and such to use functions.
  24. Replies
    1
    Views
    1,037

    Event base application framework

    I've been developing an event based application framework, in many respects its quite similar to MFC but with a much smaller overhead. Its designed to let you get a quick start to building an...
  25. Replies
    6
    Views
    5,559

    Oops- BOOL EnumChildWindows( HWND...

    Oops-


    BOOL EnumChildWindows(
    HWND hWndParent, // handle to parent window
    WNDENUMPROC lpEnumFunc, // pointer to callback function
    LPARAM lParam // application-defined...
Results 1 to 25 of 30
Page 1 of 2 1 2