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 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
|
/*!
\file GV2.c
\brief OGSF library - loading and manipulating vector sets (higher level functions)
GRASS OpenGL gsurf OGSF Library
(C) 1999-2008 by the GRASS Development Team
This program is free software under the
GNU General Public License (>=v2).
Read the file COPYING that comes with GRASS
for details.
\author Bill Brown USACERL, GMSL/University of Illinois
\author Doxygenized by Martin Landa <landa.martin gmail.com>
*/
#include <stdlib.h>
#include <string.h>
#include <grass/gis.h>
#include <grass/gstypes.h>
#include "gsget.h"
static int Vect_ID[MAX_VECTS];
static int Next_vect = 0;
/*!
\brief Check if vector set exists
\param id vector set id
\return 0 not found
\return 1 found
*/
int GV_vect_exists(int id)
{
int i, found = 0;
G_debug(3, "GV_vect_exists");
if (NULL == gv_get_vect(id)) {
return (0);
}
for (i = 0; i < Next_vect && !found; i++) {
if (Vect_ID[i] == id) {
found = 1;
}
}
return (found);
}
/*!
\brief Register new vector set
\return vector set id
\return -1 on error
*/
int GV_new_vector(void)
{
geovect *nv;
if (Next_vect < MAX_VECTS) {
nv = gv_get_new_vect();
gv_set_defaults(nv);
Vect_ID[Next_vect] = nv->gvect_id;
++Next_vect;
G_debug(3, "GV_new_vector(): id=%d", nv->gvect_id);
return (nv->gvect_id);
}
return (-1);
}
/*!
\brief Get number of available vector sets
\return number of vector sets
*/
int GV_num_vects(void)
{
return (gv_num_vects());
}
/*!
\brief Get list of vector sets
Must free when no longer needed!
\param numvects number of vector sets
\return pointer to list of point sets
\return NULL on error
*/
int *GV_get_vect_list(int *numvects)
{
int i, *ret;
*numvects = Next_vect;
if (Next_vect) {
ret = (int *)G_malloc(Next_vect * sizeof(int));
if (!ret) {
return (NULL);
}
for (i = 0; i < Next_vect; i++) {
ret[i] = Vect_ID[i];
}
return (ret);
}
return (NULL);
}
/*!
\brief Delete vector set from list
\param id vector set id
\return 1 on success
\return -1 on error
*/
int GV_delete_vector(int id)
{
int i, j, found = 0;
G_debug(3, "GV_delete_vect");
if (GV_vect_exists(id)) {
gv_delete_vect(id);
for (i = 0; i < Next_vect && !found; i++) {
if (Vect_ID[i] == id) {
found = 1;
for (j = i; j < Next_vect; j++) {
Vect_ID[j] = Vect_ID[j + 1];
}
}
}
if (found) {
--Next_vect;
return (1);
}
}
return (-1);
}
/*!
\brief Load vector set
Check to see if handle already loaded, if so - free before loading
new for now, always load to memory
\todo Load file handle & ready for reading instead of using
memory
\param id vector set id
\param filename filename
\return -1 on error (invalid vector set id)
\return 1 on success
*/
int GV_load_vector(int id, const char *filename)
{
geovect *gv;
if (NULL == (gv = gv_get_vect(id))) {
return (-1);
}
if (gv->lines) {
gv_free_vectmem(gv);
}
gv->filename = G_store(filename);
if ((gv->lines = Gv_load_vect(filename, &(gv->n_lines)))) {
return (1);
}
return (-1);
}
/*!
\brief Get vector map name
Note: char array is allocated by G_store()
\param id vector set id
\param filename &filename
\return -1 on error (invalid vector set id)
\return 1 on success
*/
int GV_get_vectname(int id, char **filename)
{
geovect *gv;
if (NULL == (gv = gv_get_vect(id))) {
return (-1);
}
*filename = G_store(gv->filename);
return (1);
}
/*!
\brief Set vector set mode
\param id vector set id
\param mem non-zero for use memory
\param color color value
\param width line width
\param flat non-zero for flat mode
\return -1 on error (invalid vector set id)
\return 1 on success
*/
int GV_set_vectmode(int id, int mem, int color, int width, int flat)
{
geovect *gv;
if (NULL == (gv = gv_get_vect(id))) {
return (-1);
}
gv->use_mem = mem;
gv->color = color;
gv->width = width;
gv->flat_val = flat;
return (1);
}
/*!
\brief Get vector set mode
\param id vector set id
\param[out] mem
\param[out] color color value
\param[out] width
\param[out] flat
\return -1 on error (invalid vector set id)
\return 1 on success
*/
int GV_get_vectmode(int id, int *mem, int *color, int *width, int *flat)
{
geovect *gv;
if (NULL == (gv = gv_get_vect(id))) {
return (-1);
}
*mem = gv->use_mem;
*color = gv->color;
*width = gv->width;
*flat = gv->flat_val;
return (1);
}
/*!
\brief Set trans ?
\param id vector set id
\param xtrans,ytrans,ztrans x/y/z trans values
*/
void GV_set_trans(int id, float xtrans, float ytrans, float ztrans)
{
geovect *gv;
G_debug(3, "GV_set_trans");
gv = gv_get_vect(id);
if (gv) {
gv->x_trans = xtrans;
gv->y_trans = ytrans;
gv->z_trans = ztrans;
}
return;
}
/*!
\brief Get trans ?
\param id vector set id
\param[out] xtrans,ytrans,ztrans x/y/z trans values
*/
int GV_get_trans(int id, float *xtrans, float *ytrans, float *ztrans)
{
geovect *gv;
gv = gv_get_vect(id);
if (gv) {
*xtrans = gv->x_trans;
*ytrans = gv->y_trans;
*ztrans = gv->z_trans;
return (1);
}
return (-1);
}
/*!
\brief Select surface identified by hs to have vector identified
by hv draped over it
\param hv vector set id
\param hs surface id
\return 1 on success
\return -1 on error
*/
int GV_select_surf(int hv, int hs)
{
geovect *gv;
if (GV_surf_is_selected(hv, hs)) {
return (1);
}
gv = gv_get_vect(hv);
if (gv && GS_surf_exists(hs)) {
gv->drape_surf_id[gv->n_surfs] = hs;
gv->n_surfs += 1;
return (1);
}
return (-1);
}
/*!
\brief Unselect surface
\param hv vector set id
\param hs surface id
\return 1 on success
\return -1 on error
*/
int GV_unselect_surf(int hv, int hs)
{
geovect *gv;
int i, j;
if (!GV_surf_is_selected(hv, hs)) {
return (1);
}
gv = gv_get_vect(hv);
if (gv) {
for (i = 0; i < gv->n_surfs; i++) {
if (gv->drape_surf_id[i] == hs) {
for (j = i; j < gv->n_surfs - 1; j++) {
gv->drape_surf_id[j] = gv->drape_surf_id[j + 1];
}
gv->n_surfs -= 1;
return (1);
}
}
}
return (-1);
}
/*!
\brief Check if surface is selected
\param hv vector set id
\param hs surface id
\return 1 selected
\return 0 not selected
*/
int GV_surf_is_selected(int hv, int hs)
{
int i;
geovect *gv;
gv = gv_get_vect(hv);
if (gv) {
for (i = 0; i < gv->n_surfs; i++) {
if (hs == gv->drape_surf_id[i]) {
return (1);
}
}
}
return (0);
}
/*!
\brief Draw vector set
\param vid vector set id
*/
void GV_draw_vect(int vid)
{
geosurf *gs;
geovect *gv;
int i;
gv = gv_get_vect(vid);
if (gv) {
for (i = 0; i < gv->n_surfs; i++) {
gs = gs_get_surf(gv->drape_surf_id[i]);
if (gs) {
gvd_vect(gv, gs, 0);
}
}
}
return;
}
/*!
\brief Draw all vector sets
*/
void GV_alldraw_vect(void)
{
int id;
for (id = 0; id < Next_vect; id++) {
GV_draw_vect(Vect_ID[id]);
}
return;
}
/*!
\brief Draw vector sets
\param vid vector set id
*/
void GV_draw_fastvect(int vid)
{
geosurf *gs;
geovect *gv;
int i;
gv = gv_get_vect(vid);
if (gv) {
for (i = 0; i < gv->n_surfs; i++) {
gs = gs_get_surf(gv->drape_surf_id[i]);
if (gs) {
gvd_vect(gv, gs, 1);
}
}
}
return;
}
/*!
\brief Set client data
\param id vector set id
\param clientd pointer to client data
\return 1 on success
\return -1 on error
*/
int GV_Set_ClientData(int id, void *clientd)
{
geovect *gv;
gv = gv_get_vect(id);
if (gv) {
gv->clientdata = clientd;
return (1);
}
return (-1);
}
/*!
\brief Get client data
\param id vector set id
\return pointer to client data
\return NULL on error
*/
void *GV_Get_ClientData(int id)
{
geovect *gv;
gv = gv_get_vect(id);
if (gv) {
return (gv->clientdata);
}
return (NULL);
}
|