/** * @brief Toggles the jump point for the selected systems. */ static void uniedit_toggleJump( StarSystem *sys ) { int i, j, rm; StarSystem *isys, *target; for (i=0; i<uniedit_nsys; i++) { isys = uniedit_sys[i]; rm = 0; for (j=0; j<isys->njumps; j++) { target = isys->jumps[j].target; /* Target already exists, remove. */ if (target == sys) { uniedit_jumpRm( isys, sys ); uniedit_jumpRm( sys, isys ); rm = 1; break; } } /* Target doesn't exist, add. */ if (!rm) { uniedit_jumpAdd( isys, sys ); uniedit_jumpAdd( sys, isys ); } } /* Reconstruct jumps just in case. */ systems_reconstructJumps(); }
/** * @brief Toggles the jump point for the selected systems. */ static void uniedit_toggleJump( StarSystem *sys ) { int i, j, rm; StarSystem *isys, *target; for (i=0; i<uniedit_nsys; i++) { isys = uniedit_sys[i]; rm = 0; for (j=0; j<isys->njumps; j++) { target = isys->jumps[j].target; /* Target already exists, remove. */ if (target == sys) { uniedit_jumpRm( isys, sys ); uniedit_jumpRm( sys, isys ); rm = 1; break; } } /* Target doesn't exist, add. */ if (!rm) { uniedit_jumpAdd( isys, sys ); uniedit_jumpAdd( sys, isys ); } } /* Reconstruct jumps just in case. */ systems_reconstructJumps(); /* Reconstruct universe presences. */ space_reconstructPresences(); if (conf.devautosave) { dsys_saveSystem( sys ); dsys_saveSystem( isys ); } /* Update sidebar text. */ uniedit_selectText(); }