ldmud-3.4.1/doc/
ldmud-3.4.1/doc/efun.de/
ldmud-3.4.1/doc/efun/
ldmud-3.4.1/doc/man/
ldmud-3.4.1/doc/other/
ldmud-3.4.1/mud/
ldmud-3.4.1/mud/heaven7/
ldmud-3.4.1/mud/lp-245/
ldmud-3.4.1/mud/lp-245/banish/
ldmud-3.4.1/mud/lp-245/doc/
ldmud-3.4.1/mud/lp-245/doc/examples/
ldmud-3.4.1/mud/lp-245/doc/sefun/
ldmud-3.4.1/mud/lp-245/log/
ldmud-3.4.1/mud/lp-245/obj/Go/
ldmud-3.4.1/mud/lp-245/players/lars/
ldmud-3.4.1/mud/lp-245/room/death/
ldmud-3.4.1/mud/lp-245/room/maze1/
ldmud-3.4.1/mud/lp-245/room/sub/
ldmud-3.4.1/mud/lp-245/secure/
ldmud-3.4.1/mud/morgengrauen/
ldmud-3.4.1/mud/morgengrauen/lib/
ldmud-3.4.1/mud/sticklib/
ldmud-3.4.1/mud/sticklib/src/
ldmud-3.4.1/mudlib/uni-crasher/
ldmud-3.4.1/pkg/
ldmud-3.4.1/pkg/debugger/
ldmud-3.4.1/pkg/diff/
ldmud-3.4.1/pkg/misc/
ldmud-3.4.1/src/autoconf/
ldmud-3.4.1/src/hosts/
ldmud-3.4.1/src/hosts/GnuWin32/
ldmud-3.4.1/src/hosts/amiga/
ldmud-3.4.1/src/hosts/win32/
ldmud-3.4.1/src/ptmalloc/
ldmud-3.4.1/src/util/
ldmud-3.4.1/src/util/erq/
ldmud-3.4.1/src/util/indent/hosts/next/
ldmud-3.4.1/src/util/xerq/
ldmud-3.4.1/src/util/xerq/lpc/
ldmud-3.4.1/src/util/xerq/lpc/www/
ldmud-3.4.1/test/t-030925/
ldmud-3.4.1/test/t-040413/
ldmud-3.4.1/test/t-041124/
NAME
        switch

SYNTAX
        switch (expr) block

DESCRIPTION
        Branch to the case label in statement that matches expr.
        If no matching case label is found (by value or by type),
        branch to the default label in statement.

        A case label has the form

                case expr_n :

        where expr_n must be constant, or the form

                case expr_n1 .. expr_n2 :

        where expr_n1 and expr_n2 must be numeric constants and
        expr_n1 < expr_n2.

        Either all case labels have to be strings or all have to be
        numeric. Only 0 is special: it is allowed in a switch
        statement where all other labels are strings.

        A default label has the form

                default :

        The default label defaults to the end of statement if not
        given explicitly.

        Whenever a 'break' statement is executed inside 'statement' a
        branch to the end of the switch statement is performed.

EXAMPLE
        Typical usage:

            switch(random(100)) {
              case 0 .. 22 : write("Nothing happens"); break;
              case 23 .. 27 :
                write("You are surrounded by a golden glow");
                this_player()->heal_self(random(3));
                break;
              case 28 .. 32 :
                write("The water was poisoned!\n");
                this_player()->add_exp(this_player()->hit_player(random(4)));
                break;
              case 33 : write("You hear a voice whispering: "+random_hint());
              /* fall through */
              case 34 :
                write("While you didn't pay attention, a water demon "
                      "snatches a coin out of your purse!\n");
                this_player()->add_money(-1);
                break;
              default : write "You hear some strange noises\n"; break;
              case 42 : return;
              case 99 : write("It tastes good.\n";
            }

BUGS
        In C, the grammar for switch() is

            switch (expr) block

        allowing constructs like

            switch (expr)
              while (expr2)
              {
              case 1: ...
              case 2: ...
              }

        The LPC compiler currently can't handle neither statements as switch
        body, nor case labels embedded in inner loops.

HISTORY
        LDMud 3.2.10 constrained the grammar to require a block for the
          switch() body, not just a statement. This differs from the C
          syntax, but was necessary as the compiler didn't handle
          the statement case correctly.
        LDMud 3.3 allowed to pass values of the wrong type to switch(), the
          driver would in that case use the default case. Before, values of
          the wrong type caused a runtime error.

SEE ALSO
        for(LPC), foreach(LPC), do-while(LPC), if(LPC), while(LPC)