197 {
198
200
201 G4String graphicsSystem, newName;
202 std::istringstream is (newValue);
203 is >> graphicsSystem >> newName;
204
205 const G4GraphicsSystemList& gsl =
207 std::size_t nSystems = gsl.size ();
208 if (nSystems <= 0) {
210 ed <<
211 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
212 " no graphics systems available."
213 "\n Did you instantiate any in"
214 " YourVisManager::RegisterGraphicsSystems()?";
216 return;
217 }
218 std::size_t iGS;
220 for (iGS = 0; iGS < nSystems; ++iGS) {
221 const auto& gs = gsl[iGS];
222 if (G4StrUtil::icompare(graphicsSystem, gs->GetName()) == 0) {
223 found = true;
224 break;
225 } else {
226 const auto& nicknames = gs->GetNicknames();
227 for (std::size_t i = 0; i < nicknames.size(); ++i) {
228 const auto& nickname = nicknames[i];
229 if (G4StrUtil::icompare(graphicsSystem, nickname) == 0) {
230 found = true;
231 break;
232 }
233 }
234 if (found) {
235 break;
236 }
237 }
238 }
239 if (!found) {
240 if (graphicsSystem == "NO_UI_SESSION") {
242 (
"G4VisCommandSceneHandlerCreate::SetNewValue",
"visman1001",
JustWarning,
243 "This looks like an attempt to use run-time vis driver selection."
244 "\nYou have issued \"/vis/open\" or \"/vis/sceneHandler/create\" without"
245 "\na parameter for the vis driver. This is allowed only if you instantiate"
246 "\na UI session, and only if it is instantiated *before* the first"
247 "\n\"/vis/open\" command. So:"
248 "\na) It is not allowed in batch mode. If you really want to create"
249 "\n some graphics with a file-writing driver in batch mode, you must"
250 "\n request a specific driver on the \"/vis/open\" command line, e.g.,"
251 "\n \"/vis/open TSG_OFFSCREEN\". See, examples/basic/B1/tsg_offscreen.mac."
252 "\nb) If you want to exploit this feature in interactive mode, simply move"
253 "\n the instantiation of the UI session earlier. In any case, this is good"
254 "\n practice in order to capture output in a GUI session.");
255 return;
256 }
257
259 ed <<
260 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
261 "\n Invalid graphics system \""
262 << graphicsSystem
263 << "\" requested."
264 << "\n Candidates are:";
265 fpVisManager->PrintAvailableGraphicsSystems(verbosity,ed);
267 return;
268 }
269
270
272 G4int loopCounter = 0;
273 while (!gsl[iGS]->IsUISessionCompatible()) {
274 std::size_t iGSBeingTested = iGS;
275
276 fallback = false;
277 G4String fallbackNickname = gsl[iGS]->GetNickname() + "_FALLBACK";
278 for (iGS = 0; iGS < nSystems; iGS++) {
279 const auto& nicknames = gsl[iGS]->GetNicknames();
280 for (std::size_t i = 0; i < nicknames.size(); ++i) {
281 const auto& nickname = nicknames[i];
282 if (G4StrUtil::icompare(fallbackNickname, nickname) == 0) {
283 fallback = true;
284 break;
285 }
286 }
287 if (fallback) {
288 break;
289 }
290 }
291 if (iGS >= nSystems || loopCounter >=3) {
293 ed << "\"" << gsl[iGSBeingTested]->GetNickname()
294 << "\" is not compatible with the session,"
295 "\nand no fallback system found. Make sure your session is"
296 "\ninstantiated _before_ you create a graphics system.";
297 G4Exception(
"G4VisCommandSceneHandlerCreate::SetNewValue",
299 return;
300 }
301
302 ++loopCounter;
303 }
304
305
306 G4VGraphicsSystem* pSystem = gsl [iGS];
307
309 G4warn <<
"WARNING: G4VisCommandSceneHandlerCreate::SetNewValue:"
310 "\n Using fallback graphics system: "
311 << pSystem -> GetName ()
312 << " ("
313 << pSystem -> GetNickname ()
314 << ')'
316 }
317
318
319 G4String nextName = NextName ();
320 if (newName == "") {
321 newName = nextName;
322 }
323 if (newName == nextName) fId++;
324
325 const G4SceneHandlerList& list =
fpVisManager -> GetAvailableSceneHandlers ();
326 std::size_t iScene;
327 for (iScene = 0; iScene < list.size (); ++iScene) {
328 G4VSceneHandler* sceneHandler = list [iScene];
329 if (sceneHandler -> GetName () == newName) {
331 ed <<
332 "ERROR: Scene handler \"" << newName
333 << "\" already exists.";
335 return;
336 }
337 }
338
339
345 }
346
347
348
351 G4cout <<
"Graphics system set to "
352 << pSystem -> GetName ()
353 << " ("
354 << pSystem -> GetNickname ()
355 << ')'
357 }
358
359
361 if (
fpVisManager -> GetCurrentSceneHandler () -> GetName () != newName) {
363 ed <<
364 "ERROR: G4VisCommandSceneHandlerCreate::SetNewValue:"
365 " Curious name mismatch."
366 "\n Current name \""
367 <<
fpVisManager -> GetCurrentSceneHandler () -> GetName ()
368 << "\" is not the new name \""
369 << newName
370 << "\".\n Please report to vis coordinator.";
372 return;
373 }
374
376 G4cout <<
"New scene handler \"" << newName <<
"\" created." <<
G4endl;
377
380 if (errorCode) {
382 ed << "sub-command \"/vis/sceneHandler/attach\" failed.";
384 return;
385 }
386 }
387}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
void CommandFailed(G4int errCode, G4ExceptionDescription &ed)
static G4UImanager * GetUIpointer()
static G4ViewParameters fExistingVP
static G4SceneTreeItem fExistingSceneTree
static G4bool fThereWasAViewer