Search:

Type: Posts; User: aanderse; Keyword(s):

Page 1 of 3 1 2 3

Search: Search took 0.07 seconds.

  1. [SOLVED] Re: [Vala] How to print all letters from a (UTF) string?

    i'm not sure how to properly print a single unichar so just ignore the printing part... but this accomplishes what you want:



    void main () {

    string content = "天安門廣場";

    if...
  2. Thread: VALA: Signals

    by aanderse
    Replies
    4
    Views
    1,102

    Re: VALA: Signals

    what version of valac are you using?

    i've found some references on the internet that say sighandler_t is a gnu extension
    your c compiler isn't including the definition of sighandler_t for some...
  3. Thread: VALA: Signals

    by aanderse
    Replies
    4
    Views
    1,102

    Re: VALA: Signals

    like so:

    void main () {
    Posix.signal (Posix.SIGUSR1, (s) => {
    stdout.printf ("In SIGUSR1 handler!");
    });
  4. Replies
    7
    Views
    425

    Re: A* with moving target

    If you mean "stop clicking the mouse repeatedly" when you say "stand still" then I do assume my players are willing to do that. If you click on location X and your character starts moving towards...
  5. Replies
    7
    Views
    425

    Re: A* with moving target

    The server does all of the "real" work. The client is sent the path so that the server doesn't need to send updates "10 times per second (or something like that)".

    If I send a position 10 times a...
  6. Replies
    7
    Views
    425

    Re: A* with moving target

    Yes.



    Yes.



    Agreed. I do.
  7. Replies
    7
    Views
    425

    A* with moving target

    I've been using A* pathfinding algorithm to find paths between 2 positions in an online game I'm working on for fun.
    The attached image shows a representation of my A* nodes and how they are...
  8. Replies
    5
    Views
    2,149

    Re: Network text game in Lua, Genie or Vala

    do you want players to have to download a client to play your game, or just browse to a web site? from your description it sounds like you can go either way here.

    i think any of vala, genie, lua,...
  9. Re: c++ multiple inheritance casting (binding to c)

    Thanks for your responses!
  10. c++ multiple inheritance casting (binding to c)

    i have a few c++ classes (multiple inheritance) lets say:



    class A { ... }
    class B { ... }
    class C : public A, public B { ... }


    and lets say i want to export these to c so i make some...
  11. Replies
    18
    Views
    3,086

    Re: MapleStory for Linux?? (using wine) HELP!

    somewhat related, i suppose:
    http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=33223
  12. Replies
    39
    Views
    8,318

    Re: Java vs Mono on desktop

    Maybe you should take a look at Vala as well. Vala has no runtime or additional libraries (over the existing c libraries). All vala code is compiled down to raw c code and the language was designed...
  13. Replies
    170
    Views
    24,548

    Re: Ubuntu PPA for Gnote (C++ port of Tomboy)

    slightly off topic, but this seemed like a good place to post...

    for people who were involved in the pro/anti mono debate: have any of you ever tried using vala yet? if so, did you like it? if...
  14. Replies
    6
    Views
    6,699

    Re: Creating a C-like language parser in C/C++

    Flex and Bison are great. I've just recently started learning them and am really impressed at how powerful they are. I bought the Lex and Yacc book and have started going through it (internet...
  15. Re: Java certification - effect of Sun buyout?

    I'll add to the positive comments here: I don't have any real computer education but work in the technology department. There's 3 of us in the tech department who never had any official...
  16. Re: Superdeb! Install programs in ubuntu sans Internet

    You also may want to read over this post: http://odzangba.wordpress.com/2006/10/13/how-to-build-local-apt-repositories/ for interests sake.
  17. Re: Superdeb! Install programs in ubuntu sans Internet

    I commend you for what you are trying to do then! I'm not entirely sure of all the technical aspects of your project, but from your description it sounds like it is attempting to achieve the same...
  18. Re: Superdeb! Install programs in ubuntu sans Internet

    I think the most important thing to bring up here is the fact that you should not be downloading and installing programs from the internet- it breaks the entire free software inherent security...
  19. Replies
    11
    Views
    858

    Re: laptop choices

    A friend of mine just recently pointed me to zareason for a laptop I'll be purchasing in January. They seem like a pretty decent company and the price is right. Check it out.
    ...
  20. Replies
    4
    Views
    309

    [all variants] Re: D language code segfaults

    ok, sorry...
    was just taking a guess based on c
  21. Replies
    4
    Views
    309

    [all variants] Re: D language code segfaults

    i don't know D but shouldn't it be:

    writefln("Magic number: %d", magicNumber);
    writefln("Password: %s", password);

    ?
  22. Replies
    1
    Views
    556

    vala + gedit snippets

    any vala programmers care to share their gedit code snippets for vala? since there is no official ide and i'm just starting to learn it, code snippets would be a help...

    so if anyone has any...
  23. Replies
    2
    Views
    397

    [ubuntu] Re: HELP! ARGGGGGGGGGGggg

    redo that but type "build-essential" instead of "build-essentials"
    that will solve your current problem i believe.

    careful of those typos :)
  24. Replies
    10
    Views
    920

    [all variants] Re: variant desktop summary

    i've attached a document with some tables explaining some stuff.
    you're not the only person to have these questions... if any user is coming to gnu/linux from windows this can be a pretty confusing...
  25. Replies
    10
    Views
    920

    [all variants] Re: variant desktop summary

    desktop environments are usually comprised of the following core components:

    window manager
    session manager
    file manager
    desktop manager
    settings daemon
    panel
Results 1 to 25 of 56
Page 1 of 3 1 2 3