You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.7 KiB
118 lines
3.7 KiB
2 years ago
|
C Copyright(C) 1999-2020 National Technology & Engineering Solutions
|
||
|
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
||
|
C NTESS, the U.S. Government retains certain rights in this software.
|
||
|
C
|
||
|
C See packages/seacas/LICENSE for details
|
||
|
C=======================================================================
|
||
|
SUBROUTINE RIXWRD (INLINE, IFLD, INTYP, CFIELD,
|
||
|
& SELMSG, LLIST, LIST, NUMSEL, IXSEL, *)
|
||
|
C=======================================================================
|
||
|
|
||
|
C --*** RIXWRD *** (BLOT) Parse selection command
|
||
|
C --
|
||
|
C --RIXWRD selects the items listed in the command. If there are no
|
||
|
C --fields, all items are selected. If the first field is ADD, the
|
||
|
C --items are added to the items already selected, otherwise
|
||
|
C --only the listed items are selected.
|
||
|
C --
|
||
|
C --Parameters:
|
||
|
C -- INLINE - IN/OUT - the parsed input line for the log file
|
||
|
C -- IFLD - IN/OUT - the number of the next entry to scan, incremented
|
||
|
C -- INTYP - IN - the free-format field types
|
||
|
C -- -1 = none, 0 = name, 1 = real, 2 = integer, 3 = character
|
||
|
C -- CFIELD - IN - the scanned character line entries
|
||
|
C -- SELMSG - IN - the type of item for error messages
|
||
|
C -- LLIST - IN - the number of words in LIST
|
||
|
C -- LIST - IN - the list of words which may be in the range
|
||
|
C -- NUMSEL - OUT - the number of selected words
|
||
|
C -- IXSEL - OUT - the indices of the selected words
|
||
|
C -- * - return statement if error before any items selected
|
||
|
|
||
|
include 'exodusII.inc'
|
||
|
CHARACTER*(*) INLINE
|
||
|
INTEGER INTYP(*)
|
||
|
CHARACTER*(*) CFIELD(*)
|
||
|
CHARACTER*(*) SELMSG
|
||
|
CHARACTER*(*) LIST(*)
|
||
|
INTEGER IXSEL(*)
|
||
|
|
||
|
LOGICAL FFEXST, FFMATC
|
||
|
CHARACTER*80 ERRMSG
|
||
|
CHARACTER*(MXNAME) WORD
|
||
|
LOGICAL REMOVE
|
||
|
|
||
|
REMOVE = .FALSE.
|
||
|
IF (.NOT. FFEXST (IFLD, INTYP)) THEN
|
||
|
|
||
|
C --Select all items if no fields
|
||
|
|
||
|
NUMSEL = LLIST
|
||
|
DO 100 I = 1, LLIST
|
||
|
IXSEL(I) = I
|
||
|
100 CONTINUE
|
||
|
|
||
|
ELSE IF (FFMATC (IFLD, INTYP, CFIELD, 'OFF', 3)) THEN
|
||
|
|
||
|
C --Select no items if OFF
|
||
|
|
||
|
CALL FFADDC ('OFF', INLINE)
|
||
|
NUMSEL = 0
|
||
|
|
||
|
ELSE
|
||
|
|
||
|
C --Reset to none selected unless ADD
|
||
|
|
||
|
IF (FFMATC (IFLD, INTYP, CFIELD, 'ADD', 3)) THEN
|
||
|
CALL FFADDC ('ADD', INLINE)
|
||
|
ELSE IF (FFMATC (IFLD, INTYP, CFIELD, 'REMOVE', 3)) THEN
|
||
|
CALL FFADDC ('REMOVE', INLINE)
|
||
|
REMOVE = .TRUE.
|
||
|
NUMSEL = LLIST
|
||
|
DO 110 I = 1, LLIST
|
||
|
IXSEL(I) = I
|
||
|
110 CONTINUE
|
||
|
ELSE
|
||
|
NUMSEL = 0
|
||
|
END IF
|
||
|
|
||
|
200 CONTINUE
|
||
|
IF (FFEXST (IFLD, INTYP)) THEN
|
||
|
|
||
|
C --Read word of range
|
||
|
|
||
|
CALL FFCHAR (IFLD, INTYP, CFIELD, ' ', WORD)
|
||
|
|
||
|
C --Find word in list and set range
|
||
|
|
||
|
IX = LOCSTR (WORD, LLIST, LIST)
|
||
|
IF (IX .LE. 0) THEN
|
||
|
ERRMSG = '"' // WORD(:LENSTR(WORD)) //
|
||
|
& '" is an invalid ' // SELMSG // ', ignored'
|
||
|
CALL PRTERR ('CMDERR', ERRMSG(:LENSTR(ERRMSG)))
|
||
|
GOTO 200
|
||
|
END IF
|
||
|
iloc = LOCINT (IX, NUMSEL, IXSEL)
|
||
|
IF (iloc .LE. 0) THEN
|
||
|
CALL FFADDC (WORD, INLINE)
|
||
|
NUMSEL = NUMSEL + 1
|
||
|
IXSEL(NUMSEL) = IX
|
||
|
ELSE IF (REMOVE) THEN
|
||
|
CALL FFADDC (WORD, INLINE)
|
||
|
DO 120 i = iloc, numsel-1
|
||
|
ixsel(i) = ixsel(i+1)
|
||
|
120 continue
|
||
|
NUMSEL = NUMSEL - 1
|
||
|
END IF
|
||
|
|
||
|
GOTO 200
|
||
|
END IF
|
||
|
|
||
|
IF (NUMSEL .EQ. 0) THEN
|
||
|
ERRMSG = 'No ' // SELMSG // 's are selected'
|
||
|
CALL PRTERR ('CMDWARN', ERRMSG(:LENSTR(ERRMSG)))
|
||
|
END IF
|
||
|
END IF
|
||
|
|
||
|
RETURN
|
||
|
END
|