diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-08 17:39:03 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-01-08 17:39:03 (GMT) |
| commit | b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778 (patch) | |
| tree | 7d72e0509f4d2643d3be837a337d088ca5949c73 /elements/stkm2.cpp | |
| download | powder-b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778.zip powder-b0ea52690ba56a0d0602ad8674b7e5ab2ba3e778.tar.gz | |
Initial
Diffstat (limited to 'elements/stkm2.cpp')
| -rw-r--r-- | elements/stkm2.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/elements/stkm2.cpp b/elements/stkm2.cpp new file mode 100644 index 0000000..967bea2 --- /dev/null +++ b/elements/stkm2.cpp @@ -0,0 +1,29 @@ +#include "element.h" + +int update_SPAWN2(UPDATE_FUNC_ARGS) { + if (!sim->player2.spwn) + sim->create_part(-1, x, y, PT_STKM2); + + return 0; +} + +int update_STKM2(UPDATE_FUNC_ARGS) { + run_stickman(&sim->player2, UPDATE_FUNC_SUBCALL_ARGS); + return 0; +} + +int graphics_STKM2(GRAPHICS_FUNC_ARGS) +{ + /**pixel_mode = PSPEC_STICKMAN; + if ((int)sim->player2.elem<PT_NUM) + { + *colr = PIXR(ptypes[sim->player2.elem].pcolors); + *colg = PIXG(ptypes[sim->player2.elem].pcolors); + *colb = PIXB(ptypes[sim->player2.elem].pcolors); + } + else*/ + { + *colr = *colg = *colb = 255; + } + return 1; +} |
