1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
/*
* ion/ioncore/navi.c
*
* Copyright (c) Tuomo Valkonen 2006-2007.
*
* See the included file LICENSE for details.
*/
#include <string.h>
#include <libtu/objp.h>
#include "common.h"
#include "extlconv.h"
#include "region.h"
#include "navi.h"
WRegion *region_navi_first(WRegion *reg, WRegionNavi nh,
WRegionNaviData *data)
{
WRegion *ret=NULL;
CALL_DYN_RET(ret, WRegion*, region_navi_first, reg,
(reg, nh, data));
return ret;
}
WRegion *region_navi_next(WRegion *reg, WRegion *mgd, WRegionNavi nh,
WRegionNaviData *data)
{
WRegion *ret=NULL;
CALL_DYN_RET(ret, WRegion*, region_navi_next, reg,
(reg, mgd, nh, data));
return ret;
}
bool ioncore_string_to_navi(const char *str, WRegionNavi *nh)
{
if(str==NULL){
warn(TR("Invalid parameter."));
return FALSE;
}
if(!strcmp(str, "any")){
*nh=REGION_NAVI_ANY;
}else if (!strcmp(str, "end") ||
!strcmp(str, "last") ||
!strcmp(str, "next")){
*nh=REGION_NAVI_END;
}else if (!strcmp(str, "beg") ||
!strcmp(str, "first") ||
!strcmp(str, "prev")){
*nh=REGION_NAVI_BEG;
}else if(!strcmp(str, "left")){
*nh=REGION_NAVI_LEFT;
}else if(!strcmp(str, "right")){
*nh=REGION_NAVI_RIGHT;
}else if(!strcmp(str, "top") ||
!strcmp(str, "above") ||
!strcmp(str, "up")){
*nh=REGION_NAVI_TOP;
}else if(!strcmp(str, "bottom") ||
!strcmp(str, "below") ||
!strcmp(str, "down")){
*nh=REGION_NAVI_BOTTOM;
}else{
warn(TR("Invalid direction parameter."));
return FALSE;
}
return TRUE;
}
WRegionNavi ioncore_navi_reverse(WRegionNavi nh)
{
if(nh==REGION_NAVI_BEG)
return REGION_NAVI_END;
else if(nh==REGION_NAVI_END)
return REGION_NAVI_BEG;
else if(nh==REGION_NAVI_LEFT)
return REGION_NAVI_RIGHT;
else if(nh==REGION_NAVI_RIGHT)
return REGION_NAVI_LEFT;
else if(nh==REGION_NAVI_TOP)
return REGION_NAVI_BOTTOM;
else if(nh==REGION_NAVI_BOTTOM)
return REGION_NAVI_TOP;
else
return REGION_NAVI_ANY;
}
DECLSTRUCT(WRegionNaviData){
WRegionNavi nh;
bool descend;
ExtlFn ascend_filter;
ExtlFn descend_filter;
WRegion *startpoint;
bool nowrap;
Obj *no_ascend;
Obj *no_descend;
bool nofront;
};
static bool may_ascend(WRegion *to, WRegion *from, WRegionNaviData *data)
{
if(data->ascend_filter!=extl_fn_none()){
bool r, v;
extl_protect(NULL);
r=extl_call(data->ascend_filter, "oo", "b", to, from, &v);
extl_unprotect(NULL);
return (r && v);
}else if(data->no_ascend!=NULL){
return (data->no_ascend!=(Obj*)from);
}else{
/* Set to TRUE for cycling out of nested workspaces etc. */
return !OBJ_IS(from, WMPlex);
}
}
static bool may_descend(WRegion *to, WRegion *from, WRegionNaviData *data)
{
if(data->descend_filter!=extl_fn_none()){
bool r, v;
extl_protect(NULL);
r=extl_call(data->descend_filter, "oo", "b", to, from, &v);
extl_unprotect(NULL);
return (r && v);
}else if(data->no_descend!=NULL){
return (data->no_descend!=(Obj*)from);
}else{
/* Set to TRUE for cycling into nested workspaces etc. */
return !OBJ_IS(to, WMPlex);
}
}
static WRegion *region_navi_descend(WRegion *reg, WRegionNaviData *data)
{
if(data->descend){
return region_navi_first(reg, data->nh, data);
}else{
WRegion *nxt;
data->descend=TRUE;
data->nh=ioncore_navi_reverse(data->nh);
nxt=region_navi_first(reg, data->nh, data);
data->descend=FALSE;
data->nh=ioncore_navi_reverse(data->nh);
return nxt;
}
}
WRegion *region_navi_cont(WRegion *reg, WRegion *res, WRegionNaviData *data)
{
if(res==NULL){
if(data->descend){
return (reg==data->startpoint ? NULL : reg);
}else{
WRegion *mgr=REGION_MANAGER(reg);
WRegion *nxt=NULL;
if(mgr!=NULL && may_ascend(mgr, reg, data)){
if(data->nowrap){
/* tail-recursive case */
return region_navi_next(mgr, reg, data->nh, data);
}else{
nxt=region_navi_next(mgr, reg, data->nh, data);
}
}
if(nxt==NULL && !data->nowrap){
/* wrap */
nxt=region_navi_descend(reg, data);
}
return nxt;
}
}else{
if(may_descend(res, reg, data)){
return region_navi_descend(res, data);
}else{
return res;
}
}
}
static bool get_param(WRegionNaviData *data, const char *dirstr, ExtlTab param)
{
if(!ioncore_string_to_navi(dirstr, &data->nh))
return FALSE;
data->ascend_filter=extl_fn_none();
data->descend_filter=extl_fn_none();
data->no_ascend=NULL;
data->no_descend=NULL;
extl_table_gets_o(param, "no_ascend", &data->no_ascend);
extl_table_gets_o(param, "no_descend", &data->no_descend);
extl_table_gets_f(param, "ascend_filter", &data->ascend_filter);
extl_table_gets_f(param, "descend_filter", &data->descend_filter);
data->nowrap=extl_table_is_bool_set(param, "nowrap");
data->nofront=extl_table_is_bool_set(param, "nofront");
return TRUE;
}
static WRegion *release(WRegionNaviData *data, WRegion *res)
{
extl_unref_fn(data->ascend_filter);
extl_unref_fn(data->descend_filter);
return res;
}
/*EXTL_DOC
* Find region next from \var{reg} in direction \var{dirstr}
* (up/down/left/right/next/prev/any). The table \var{param} may
* contain the boolean field \var{nowrap}, instructing not to wrap
* around, and the \type{WRegion}s \var{no_ascend} and \var{no_descend},
* and boolean functions \var{ascend_filter} and \var{descend_filter}
* on \var{WRegion} pairs (\var{to}, \var{from}), are used to decide when
* to descend or ascend into another region.
*/
EXTL_EXPORT
WRegion *ioncore_navi_next(WRegion *reg, const char *dirstr, ExtlTab param)
{
WRegionNaviData data;
WRegion *mgr;
if(reg==NULL){
/* ??? */
return NULL;
}
if(!get_param(&data, dirstr, param))
return NULL;
mgr=REGION_MANAGER(reg);
if(mgr==NULL)
return FALSE;
data.startpoint=reg;
data.descend=FALSE;
return release(&data, region_navi_next(mgr, reg, data.nh, &data));
}
/*EXTL_DOC
* Find first region within \var{reg} in direction \var{dirstr}
* (up/down/left/right/beg/end/any). For information on \var{param},
* see \fnref{ioncore.navi_next}.
*/
EXTL_EXPORT
WRegion *ioncore_navi_first(WRegion *reg, const char *dirstr, ExtlTab param)
{
WRegionNaviData data;
if(reg==NULL)
return NULL;
if(!get_param(&data, dirstr, param))
return NULL;
data.startpoint=reg;
data.descend=TRUE;
return release(&data, region_navi_first(reg, data.nh, &data));
}
static WRegion *do_goto(WRegion *res)
{
if(res!=NULL)
region_goto(res);
return res;
}
/*EXTL_DOC
* Go to region next from \var{reg} in direction \var{dirstr}
* (up/down/left/right/next/prev/any). For information on \var{param},
* see \fnref{ioncore.navi_next}. Additionally this function supports
* the boolean \var{nofront} field, for not bringing the object to
* front.
*/
EXTL_EXPORT
WRegion *ioncore_goto_next(WRegion *reg, const char *dirstr, ExtlTab param)
{
return do_goto(ioncore_navi_next(reg, dirstr, param));
}
/*EXTL_DOC
* Go to first region within \var{reg} in direction \var{dirstr}
* (up/down/left/right/beg/end/any). For information on \var{param},
* see \fnref{ioncore.navi_next}. Additionally this function supports
* the boolean \var{nofront} field, for not bringing the object to
* front.
*/
EXTL_EXPORT
WRegion *ioncore_goto_first(WRegion *reg, const char *dirstr, ExtlTab param)
{
return do_goto(ioncore_navi_first(reg, dirstr, param));
}
|