aot_top_get_logical Subroutine

private subroutine aot_top_get_logical(val, ErrCode, L, default)

Interpret topmost entry on Lua stack as a single precision real.

Arguments

Type IntentOptional Attributes Name
logical, intent(out) :: val

Value of the Variable in the script

integer, intent(out) :: ErrCode

Error code to indicate what kind of problem might have occured.

type(flu_State) :: L

Handle to the Lua script

logical, intent(in), optional :: default

Some default value, that should be used, if the variable is not set in the Lua script.


Calls

proc~~aot_top_get_logical~~CallsGraph proc~aot_top_get_logical aot_top_get_logical proc~flu_isboolean flu_isBoolean proc~aot_top_get_logical->proc~flu_isboolean proc~flu_isnoneornil flu_isNoneOrNil proc~aot_top_get_logical->proc~flu_isnoneornil proc~flu_pop flu_pop proc~aot_top_get_logical->proc~flu_pop proc~flu_toboolean flu_toBoolean proc~aot_top_get_logical->proc~flu_toboolean interface~lua_type lua_type proc~flu_isboolean->interface~lua_type proc~flu_isnoneornil->interface~lua_type interface~lua_settop lua_settop proc~flu_pop->interface~lua_settop interface~lua_toboolean lua_toboolean proc~flu_toboolean->interface~lua_toboolean

Called by

proc~~aot_top_get_logical~~CalledByGraph proc~aot_top_get_logical aot_top_get_logical interface~aot_top_get_val aot_top_get_val interface~aot_top_get_val->proc~aot_top_get_logical

Source Code

  subroutine aot_top_get_logical(val, ErrCode, L, default)
    type(flu_State) :: L !! Handle to the Lua script

    !> Value of the Variable in the script
    logical, intent(out) :: val

    !> Error code to indicate what kind of problem might have occured.
    integer, intent(out) :: ErrCode

    !> Some default value, that should be used, if the variable is not set in
    !! the Lua script.
    logical, optional, intent(in) :: default

    logical :: not_retrievable

    ErrCode = 0
    not_retrievable = .false.

    if (flu_isNoneOrNil(L, -1)) then
      ErrCode = ibSet(ErrCode, aoterr_NonExistent)
      not_retrievable = .true.
    else
      if (flu_isBoolean(L, -1)) then
        val = flu_toBoolean(L, -1)
      else
        ErrCode = ibSet(ErrCode, aoterr_WrongType)
        ErrCode = ibSet(ErrCode, aoterr_Fatal)
        not_retrievable = .true.
      end if
    end if

    if (not_retrievable) then
      if (present(default)) then
        val = default
      else
        ErrCode = ibSet(ErrCode, aoterr_Fatal)
      end if
    end if
    call flu_pop(L)

  end subroutine aot_top_get_logical