[7d4fbcd] | 1 | #include <string.h> |
---|
[1aee7d9] | 2 | #include "owl.h" |
---|
| 3 | |
---|
[7d4fbcd] | 4 | #define SET_ACTIVE(ctx, new) ctx->mode = ((ctx->mode)&~OWL_CTX_ACTIVE_BITS)|new |
---|
| 5 | #define SET_MODE(ctx, new) ctx->mode = ((ctx->mode)&~OWL_CTX_MODE_BITS)|new |
---|
| 6 | |
---|
[53f421b] | 7 | int owl_context_init(owl_context *ctx) |
---|
| 8 | { |
---|
[7d4fbcd] | 9 | ctx->mode = OWL_CTX_STARTUP; |
---|
| 10 | ctx->data = NULL; |
---|
| 11 | return 0; |
---|
| 12 | } |
---|
| 13 | |
---|
| 14 | |
---|
| 15 | /* returns whether test matches the current context */ |
---|
[3f8514b] | 16 | int owl_context_matches(const owl_context *ctx, int test) |
---|
[53f421b] | 17 | { |
---|
[10b866d] | 18 | /*owl_function_debugmsg(", current: 0x%04x test: 0x%04x\n", ctx->mode, test);*/ |
---|
[7d4fbcd] | 19 | if ((((ctx->mode&OWL_CTX_MODE_BITS) & test) |
---|
| 20 | || !(test&OWL_CTX_MODE_BITS)) |
---|
| 21 | && |
---|
| 22 | (((ctx->mode&OWL_CTX_ACTIVE_BITS) & test) |
---|
| 23 | || !(test&OWL_CTX_ACTIVE_BITS))) { |
---|
| 24 | return 1; |
---|
| 25 | } else { |
---|
| 26 | return 0; |
---|
| 27 | } |
---|
| 28 | } |
---|
| 29 | |
---|
[3f8514b] | 30 | void *owl_context_get_data(const owl_context *ctx) |
---|
[53f421b] | 31 | { |
---|
[7d4fbcd] | 32 | return ctx->data; |
---|
| 33 | } |
---|
| 34 | |
---|
[3f8514b] | 35 | int owl_context_get_mode(const owl_context *ctx) |
---|
[53f421b] | 36 | { |
---|
[7d4fbcd] | 37 | return ctx->mode & OWL_CTX_MODE_BITS; |
---|
| 38 | } |
---|
| 39 | |
---|
[3f8514b] | 40 | int owl_context_get_active(const owl_context *ctx) |
---|
[53f421b] | 41 | { |
---|
[7d4fbcd] | 42 | return ctx->mode & OWL_CTX_ACTIVE_BITS; |
---|
| 43 | } |
---|
| 44 | |
---|
[3f8514b] | 45 | int owl_context_is_startup(const owl_context *ctx) |
---|
[53f421b] | 46 | { |
---|
[7d4fbcd] | 47 | return (ctx->mode & OWL_CTX_STARTUP)?1:0; |
---|
| 48 | } |
---|
| 49 | |
---|
[3f8514b] | 50 | int owl_context_is_interactive(const owl_context *ctx) |
---|
[53f421b] | 51 | { |
---|
[ecd5dc5] | 52 | return(ctx->mode & OWL_CTX_INTERACTIVE)?1:0; |
---|
| 53 | } |
---|
[7d4fbcd] | 54 | |
---|
[53f421b] | 55 | void owl_context_set_startup(owl_context *ctx) |
---|
| 56 | { |
---|
[7d4fbcd] | 57 | SET_MODE(ctx, OWL_CTX_STARTUP); |
---|
| 58 | } |
---|
| 59 | |
---|
[53f421b] | 60 | void owl_context_set_readconfig(owl_context *ctx) |
---|
| 61 | { |
---|
[7d4fbcd] | 62 | SET_MODE(ctx, OWL_CTX_READCONFIG); |
---|
| 63 | } |
---|
| 64 | |
---|
[53f421b] | 65 | void owl_context_set_interactive(owl_context *ctx) |
---|
| 66 | { |
---|
[7d4fbcd] | 67 | SET_MODE(ctx, OWL_CTX_INTERACTIVE); |
---|
| 68 | } |
---|
| 69 | |
---|
[53f421b] | 70 | void owl_context_set_popless(owl_context *ctx, owl_viewwin *vw) |
---|
| 71 | { |
---|
[4d86e06] | 72 | ctx->data = vw; |
---|
[7d4fbcd] | 73 | SET_ACTIVE(ctx, OWL_CTX_POPLESS); |
---|
| 74 | } |
---|
| 75 | |
---|
[53f421b] | 76 | void owl_context_set_recv(owl_context *ctx) |
---|
| 77 | { |
---|
[7d4fbcd] | 78 | SET_ACTIVE(ctx, OWL_CTX_RECV); |
---|
| 79 | } |
---|
| 80 | |
---|
[53f421b] | 81 | void owl_context_set_editmulti(owl_context *ctx, owl_editwin *ew) |
---|
| 82 | { |
---|
[4d86e06] | 83 | ctx->data = ew; |
---|
[7d4fbcd] | 84 | SET_ACTIVE(ctx, OWL_CTX_EDITMULTI); |
---|
| 85 | } |
---|
| 86 | |
---|
[53f421b] | 87 | void owl_context_set_editline(owl_context *ctx, owl_editwin *ew) |
---|
| 88 | { |
---|
[4d86e06] | 89 | ctx->data = ew; |
---|
[7d4fbcd] | 90 | SET_ACTIVE(ctx, OWL_CTX_EDITLINE); |
---|
| 91 | } |
---|
| 92 | |
---|
[cf83b7a] | 93 | void owl_context_set_editresponse(owl_context *ctx, owl_editwin *ew) |
---|
| 94 | { |
---|
[4d86e06] | 95 | ctx->data = ew; |
---|
[cf83b7a] | 96 | SET_ACTIVE(ctx, OWL_CTX_EDITRESPONSE); |
---|
| 97 | } |
---|
| 98 | |
---|