config / .fgfs / fgfs_function /
Newer Older
478 lines | 25.852kb
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
1
#!/bin/zsh
2

            
3
#FGDIR=$HOME/scripts/flightgear
4
#FGADDON=$HOME/.fgfs/flightgear-fgaddon
5
function fgfs () {
6
    local fgfs_source=$FGDIR/source
7
    local fgfs_build=$FGDIR/build
8
    local fgfs_install=$FGDIR/install
9
    function update_fg () {
10
        case $1 in
ajout de gestion de bdd pour...
Sébastien MARQUE authored on 2020-08-24
11
            fgaddon)
12
                DB=$FGADDON/fgaddon.db $HOME/.fgfs/fgaddon
code rearrangement
Sébastien MARQUE authored on 2020-09-27
13
                ;;
14
            check)
15
                test -r $HOME/.fgfs/jenkins-status && bash $HOME/.fgfs/jenkins-status
16
                ;;
add RSS reader for FG code
Sébastien MARQUE authored on 2020-10-19
17
            rss)
18
                test -r $HOME/.fgfs/fgcoderss && bash $HOME/.fgfs/fgcoderss
19
                ;;
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
20
            data)
ajout de gestion de bdd pour...
Sébastien MARQUE authored on 2020-08-24
21
                for control_system update_command in ${(kv)control_system_data}; do
22
                    find $FGADDON \
23
                        -maxdepth 3 \
24
                        -mindepth 1 \
25
                        -type d \
26
                        -name .${control_system} \
27
                        -printf "\n[ %h ]\n" \
28
                        -execdir ${control_system} ${update_command} \;
29
                done
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
30
                ;;
31
            source)
code rearrangement
Sébastien MARQUE authored on 2020-09-27
32
                for component in $(<$fgfs_source/.$2); do
33
                    for control_system update_command in ${(kv)control_system_data}; do
34
                        find $fgfs_source/$component \
35
                            -maxdepth 1 \
36
                            -type d \
37
                            -name .${control_system} \
38
                            -printf "\n[ %h ]\n" \
39
                            -execdir ${control_system} ${update_command} \;
40
                    done
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
41
                done
42
                ;;
43
            build)
44
                local simultaneous=$(nproc)
45
                local previously_installed=()
46
                mkdir -p $fgfs_install
make possible to compile dif...
Sébastien MARQUE authored on 2020-09-23
47
                for component in $(<$fgfs_source/.$2); do
code rearrangement
Sébastien MARQUE authored on 2020-09-27
48
                    if test -d $fgfs_source/$component/.git; then
49
                        local branch=$(git -C $fgfs_source/$component name-rev --name-only --no-undefined --always HEAD)
50
                    elif test -d $fgfs_source/${component}/.svn; then
51
                        local branch=${${(s:/:)$(svn info --show-item relative-url $fgfs_source/$component)}[2]}
52
                    fi
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
53

            
code rearrangement
Sébastien MARQUE authored on 2020-09-27
54
# TODO: prendre en compte les cas sans cmake
55
                    if test -r $fgfs_source/$component/CMakeLists.txt; then
56
                        local cmake_options=("-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_INSTALL_PREFIX=$fgfs_install/$component")
57
                        test -e $fgfs_source/${component}.specific && source $fgfs_source/${component}.specific
58
                        if test ${#previously_installed[@]} -gt 0; then
59
                            cmake_options+=(${(j. .)${:--DCMAKE_PREFIX_PATH=$fgfs_install/${^previously_installed}}})
60
                            cmake_options+=(${(j. .)${:--DCMAKE_INCLUDE_PATH=$fgfs_install/${^previously_installed}/include}})
61
                        fi
62
                        cmake_options+=("-j$simultaneous")
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
63

            
some cosmetics
Sébastien MARQUE authored on 2020-11-07
64
                        title="*** ${component:u}${branch:+ [$branch]} ***"
65
                        printf "\n%s\n%s\n%s\n" "${(l:${#title}::*:)}" "$title" "${(l:${#title}::*:)}"
code rearrangement
Sébastien MARQUE authored on 2020-09-27
66
                        mkdir -p $fgfs_build/$component
67
                        cd $fgfs_build/$component
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
68

            
$HOME replacement
Sébastien MARQUE authored on 2021-03-14
69
                        echo cmake ${cmake_options[@]//$HOME/\$HOME} ${fgfs_source/#$HOME/\$HOME}/$component
code rearrangement
Sébastien MARQUE authored on 2020-09-27
70

            
71
                        cmake ${cmake_options[@]} $fgfs_source/$component > /dev/null \
72
                        && make -j$simultaneous > /dev/null \
filter installation log
Sébastien MARQUE authored on 2020-12-05
73
                        && {
74
                            make install | grep --color=always -v '^-- Up-to-date:'
75
                        } \
code rearrangement
Sébastien MARQUE authored on 2020-09-27
76
                        || {
77
                            echo "erreur construction $component"
78
                            cd $FGDIR
79
                            return
80
                        }
fix return to path
Sébastien MARQUE authored on 2020-11-07
81

            
82
                        cd - > /dev/null
code rearrangement
Sébastien MARQUE authored on 2020-09-27
83
                    fi
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
84

            
85
                    previously_installed+=($component)
86
                done
87
                unset component
88
                ;;
89
        esac
90
    }
91
    function ld_library_path () {
smarter use of IFS
Sébastien MARQUE authored on 2020-09-23
92
        local IFS=$'\n'
fix multiple instances on LD...
Sébastien MARQUE authored on 2020-07-01
93
        for lib in $(ls -d $FGDIR/install/*/lib); do
94
            egrep -q "(^|:)$lib(:|$)" <<< "${LD_LIBRARY_PATH}" || LD_LIBRARY_PATH="${lib}${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH}"
95
        done
96
        export LD_LIBRARY_PATH
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
97
    }
98
    local aircrafts="$FGADDON/Aircraft"
99
    local fgfs_args=("--fg-root=$FGDIR/source/fgdata")
100
    local aircraft=
101
    local airport=
102
    if [[ -o BASH_REMATCH ]]; then
103
        local bash_rematch_set=1
104
    fi
105

            
106
    for fgfs_arg in $@; do
107
        if test ${fgfs_arg#--} = ${fgfs_arg}; then
108
############ APPAREIL DANS FGADDON ?
109
            if test -n "$(find $aircrafts -maxdepth 2 -type f -name ${fgfs_arg}-set.xml -print -quit)"; then
110
                fgfs_args+=("--aircraft=$fgfs_arg")
111
                fgfs_args+=("--fg-aircraft=$FGADDON/Aircraft")
112

            
113
############ APPAREIL DANS FGDIR/source/fgdata ?
114
            elif official_aircraft=$(find "$fgfs_source/fgdata/Aircraft" -maxdepth 2 -type f -name ${fgfs_arg}-set.xml -printf "%h" -quit) && test -n "$official_aircraft"; then
115
                fgfs_args+=("--aircraft=$fgfs_arg")
116
                fgfs_args+=("--aircraft-dir=$official_aircraft")
117
                unset official_aircraft
118

            
small fix
Sébastien MARQUE authored on 2020-11-14
119
############ APPAREIL DISPONIBLE DANS UN HANGAR CONNU ?
ajout de gestion de bdd pour...
Sébastien MARQUE authored on 2020-08-24
120
            elif which sqlite3 > /dev/null 2>&1 \
121
            && test -r $FGADDON/fgaddon.db \
allow installation of aircra...
Sébastien MARQUE authored on 2020-11-13
122
            && test $(sqlite3 $FGADDON/fgaddon.db <<< "select count(file) from setxml where file is '${fgfs_arg}'") -gt 0; then
123
                local PS3='which aircraft ? (Ctrl-D to quit) '
124
                local IFS=$'\n'
125
                select ac in $(sqlite3 $FGADDON/fgaddon.db <<< "select distinct printf('%s [%s, %s]',
126
                                                               aircrafts.name,
127
                                                               hangars.name,
128
                                                               date(aircrafts.date, 'unixepoch'))
129
                                                 from aircrafts
130
                                                 inner join setxml, hangars
131
                                                 where
132
                                                   aircrafts.hangar = hangars.id
133
                                                 and
134
                                                   setxml.variantof = aircrafts.id
135
                                                 and
136
                                                     setxml.file = '${fgfs_arg}'
137
                                                 order by aircrafts.date desc"); do
138
                    test -z "$ac" && continue
139
                    read -q "REPLY?download ${${(@s/ /)ac}[1]} ? (y/N) "
140
                    if test -n "$REPLY" && test ${REPLY:l} = "y"; then
141
                        declare -A hangar
142
                        eval $(sqlite3 $FGADDON/fgaddon.db <<< "select printf('hangar[type]=%s;hangar[url]=%s;', type, url)
143
                                                                from hangars where name = '${${(@s/ /)ac}[2]:1:-1}'")
144
                        case ${hangar[type]} in
145
                            git)
small fix
Sébastien MARQUE authored on 2020-11-14
146
                                git -C $FGADDON/Aircraft clone ${hangar[url]}/${${(@s/ /)ac}[1]}.git;;
allow installation of aircra...
Sébastien MARQUE authored on 2020-11-13
147
                            svn)
148
                                svn checkout ${hangar[url]}/${${(@s/ /)ac}[1]} $FGADDON/Aircraft/${${(@s/ /)ac}[1]};;
149
                        esac
150
                        fgfs_args+=("--aircraft=$fgfs_arg")
151
                        fgfs_args+=("--fg-aircraft=$FGADDON/Aircraft")
152
                        unset -v hangar
153
                    else
154
                        echo "falling back to default"
155
                    fi
156
                    break
157
                done
ajout de gestion de bdd pour...
Sébastien MARQUE authored on 2020-08-24
158

            
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
159
############ SERVEUR MULTIPLAY ?
160
            elif set -o BASH_REMATCH && [[ $fgfs_arg =~ "^mp([0-9]+)$" ]]; then
161
                fgfs_args+=("--multiplay=out,10,mpserver${BASH_REMATCH[2]}.flightgear.org,5000")
fix some fgfs options
Sébastien MARQUE authored on 2020-06-21
162
                fgfs_args+=("--callsign=f-zakh")
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
163
                test -z "$bash_rematch_set" && set +o BASH_REMATCH
164

            
ajout trace de vol
Sébastien MARQUE authored on 2020-04-18
165
############ DEMANDE DE TRACE DE VOL ?
166
            elif [[ $fgfs_arg == "log" ]]; then
167
                # option construite plus tard avec nom de l'appareil
168
                local log_requested=1
169

            
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
170
############ AEROPORT ?
171
            else 
172
                local candidate_airport=${fgfs_arg%:*}; [[ $candidate_airport == $fgfs_arg ]] && candidate_airport=${fgfs_arg%+*}
173
                local candidate_parking=${fgfs_arg#*:}; [[ $candidate_parking == $fgfs_arg ]] && unset candidate_parking
174
                local candidate_runway=${fgfs_arg#*+};  [[ $candidate_runway  == $fgfs_arg ]] && unset candidate_runway
175
                local terrafs=${candidate_airport#-}
176

            
177
                if [[ $terrafs != $candidate_airport && -x $HOME/.fgfs/terrafs && -d $HOME/.fgfs/terrafs.d ]]; then
178
                    candidate_airport=$terrafs
179
                    $HOME/.fgfs/terrafs $HOME/.fgfs/terrafs.d
180
                    fgfs_args+=(--fg-scenery=$HOME/.fgfs/terrafs.d)
181
                    fgfs_args+=(--disable-terrasync)
182
                    local scenes_dir=$HOME/.fgfs/terrafs.d
183
                else
184
                    fgfs_args+=(--terrasync-dir=$HOME/.fgfs/TerraSync)
185
                    fgfs_args+=(--enable-terrasync)
186
                    local scenes_dir=$HOME/.fgfs/TerraSync
187
                fi
188

            
189
                local airport_data="$scenes_dir/Airports/$candidate_airport[1]:u/$candidate_airport[2]:u/$candidate_airport[3]:u/${candidate_airport:u}"
allow airport search for par...
Sébastien MARQUE authored on 2021-02-13
190
                if ! test -r "${airport_data}.threshold.xml"; then
191
                    echo "airport ${candidate_airport:u} not found !"
192
                fi
193

            
194
                if test -n "$candidate_parking" && test "$candidate_parking" = '?'; then
195
                    if test -r "${airport_data}.groundnet.xml"; then
196
                        echo "Parkings ${candidate_airport:u}:"
197
                        sed -rn "/<parkingList/,/parkingList>/s/^.* name=\"([^\"]+).*$/\1/p" "${airport_data}.groundnet.xml"
198
                    else
199
                        echo "no information for parkings available on ${candidate_airport:u}"
200
                    fi
201
                    return
202
                elif test -n "$candidate_runway" && test "$candidate_runway" = '?'; then
203
                    if test -r "${airport_data}.threshold.xml"; then
204
                        echo "Runways ${candidate_airport:u}:"
205
                        sed -rn 's|^.*<rwy>(.+)</rwy>.*$|\1|p' "${airport_data}.threshold.xml"
206
                    else
207
                        echo "no information for runways available on ${candidate_airport:u}"
208
                    fi
209
                    return
210
                fi
211

            
212
                if test -r "${airport_data}.threshold.xml"; then
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
213
                    fgfs_args+=(--airport=$candidate_airport)
214
                    if [[ -a "${airport_data}.groundnet.xml" && -n "$candidate_parking" ]]; then
allow airport search for par...
Sébastien MARQUE authored on 2021-02-13
215
                        if sed -rn "/<parkingList/,/parkingList>/p" "${airport_data}.groundnet.xml" | grep -q "name=\"${candidate_parking}\""; then
fix some fgfs options
Sébastien MARQUE authored on 2020-06-21
216
                            fgfs_args+=("--parkpos='$candidate_parking'")
allow airport search for par...
Sébastien MARQUE authored on 2021-02-13
217
                        else
218
                            echo "$candidate_parking isn't a valid parking position"
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
219
                        fi
220
                    elif test -n "$candidate_runway"; then
allow airport search for par...
Sébastien MARQUE authored on 2021-02-13
221
                        if grep -q "<rwy>${candidate_runway}</rwy>" "${airport_data}.threshold.xml"; then
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
222
                            fgfs_args+=("--runway=$candidate_runway")
allow airport search for par...
Sébastien MARQUE authored on 2021-02-13
223
                        else
224
                            echo "$candidate_runway isn't a valid runway"
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
225
                        fi
226
                    fi
227
                fi
228
            fi
229

            
230
######## AUTRE OPTION
231
        else
232
            case $fgfs_arg in
code rearrangement
Sébastien MARQUE authored on 2020-09-27
233
                --update(-data|-source|-build|))
234
                    if test -z "$2" || test ! -r $fgfs_source/.$2; then
235
                        echo "${2:+unknown set $2\n}usage: --update|--update-data|--update-source|--update-build <set>"
236
                        echo "available sets :" ${$(find $fgfs_source -maxdepth 1 -type f -name ".*" -printf "%f ")//#.}
237
                        return 1
238
                    fi
239
                    for component in $(<$fgfs_source/.$2); do
240
                        if ! test -d $fgfs_source/$component; then
241
                            echo component $component not found
242
                            return 1
243
                        fi
244
                    done
245
                    typeset -A control_system_data=(
246
                        git pull
247
                        svn up
248
                    )
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
249
                    for up in ${${=${fgfs_arg#--update}:-data source build}#-}; do
make possible to compile dif...
Sébastien MARQUE authored on 2020-09-23
250
                        update_fg $up ${2:-flightgear}
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
251
                    done
code rearrangement
Sébastien MARQUE authored on 2020-09-27
252
                    unset control_system_data control_system update_command up
253
                    return
254
                    ;;
add RSS reader for FG code
Sébastien MARQUE authored on 2020-10-19
255
                --update-(fgaddon|check|rss))
code rearrangement
Sébastien MARQUE authored on 2020-09-27
256
                    update_fg ${fgfs_arg#--update-}
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
257
                    return
258
                    ;;
259
                --(show-aircraft|help))
ajout trace de vol
Sébastien MARQUE authored on 2020-04-18
260
                    local -A complement=(
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
261
                        --show-aircraft --fg-aircraft=$FGADDON/Aircraft
262
                        --help          --verbose
263
                    )
fix multiple instances on LD...
Sébastien MARQUE authored on 2020-07-01
264
                    ld_library_path
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
265
                    $FGDIR/install/flightgear/bin/fgfs $fgfs_arg ${complement[$fgfs_arg]} 2>/dev/null | pager
266
                    return
267
                    ;;
add --show-thumbnail
Sébastien MARQUE authored on 2020-11-07
268
                --show-thumbnail)
269
                    local PS3='which aircraft ? (Ctrl-D to quit) '
270
                    local IFS=$'\n'
271
                    select ac in $(sqlite3 $FGADDON/fgaddon.db <<< "select distinct printf('%s [%s, %s]',
272
                                                                   aircrafts.name,
273
                                                                   hangars.name,
274
                                                                   date(aircrafts.date, 'unixepoch'))
275
                                                     from aircrafts
276
                                                     inner join setxml, hangars
277
                                                     where
278
                                                       aircrafts.hangar = hangars.id
279
                                                     and
280
                                                       setxml.variantof = aircrafts.id
281
                                                     and (
282
                                                         setxml.file like '%$2%'
283
                                                       or
284
                                                         aircrafts.name like '%$2%'
285
                                                     )
286
                                                     order by aircrafts.date desc"); do
287
                        test -z "$ac" && continue
288
                        local url=$(sqlite3 $FGADDON/fgaddon.db <<< "select printf('%s/${${(@s/ /)ac}[1]}', url)
289
                                                                     from hangars where name = '${${(@s/ /)ac}[2]:1:-1}'")
290
                        if test ${${(@s/ /)ac}[2]:1:-1} = 'FGMEMBERS'; then
291
                            url="https://raw.githubusercontent.com/FGMEMBERS/${${(@s/ /)ac}[1]}/master"
292
                        fi
293
                        if wget --quiet --spider "$url/thumbnail.jpg"; then
294
                            curl -s "$url/thumbnail.jpg" \
295
                            | convert - -resize '200%' -normalize -sharpen '0.0x1.0' - \
296
                            | display
297
                        else
298
                            echo "can't find or get thumbnail for ${${(@s/ /)ac}[1]} (${${(@s/ /)ac}[2]:1:-1}'s hangar)"
299
                        fi
300
                    done
301
                    return
302
                    ;;
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
303
                --search)
304
                    command -v sqlite3 > /dev/null || return
some cosmetics
Sébastien MARQUE authored on 2020-11-07
305
                    sqlite3 $FGADDON/fgaddon.db <<< "select printf('[%s, %s] %s (%s): %s ',
306
                                                                   hangars.name,
307
                                                                   date(aircrafts.date, 'unixepoch'),
308
                                                                   setxml.file,
309
                                                                   setxml.\`/sim/flight-model\`,
310
                                                                   setxml.\`/sim/description\`)
311
                                                     from setxml
312
                                                     inner join aircrafts, hangars
313
                                                     where
314
                                                       aircrafts.hangar = hangars.id
315
                                                     and
316
                                                       setxml.variantof = aircrafts.id
317
                                                     and (
318
                                                         setxml.file like '%$2%'
319
                                                       or
320
                                                         aircrafts.name like '%$2%'
321
                                                     )
322
                                                     order by aircrafts.date desc"
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
323
                    return
324
                    ;;
325
                --mp-list)
326
                    local mplist=$(mktemp --dry-run /dev/shm/XXXXXXXXX)
327
                    declare -A installed_model fgaddon_model unknown_model
328
                    local ac_name=
329
                    telnet mpserver01.flightgear.org 5001 2>/dev/null > $mplist
print number of online pilot...
Sébastien MARQUE authored on 2020-09-28
330
                    grep 'pilot(s) online' $mplist
331
                    echo
show connected pilots for ea...
Sébastien MARQUE authored on 2020-10-25
332
                    local IFS=$'\n'
333
                    for model in $(awk '/@/{a[$NF]++}END{for (i in a) printf("%s (%i)\n", i, a[i])}' $mplist); do
334
                        if test -r $FGADDON/${model% *} \
335
                             -o -r $FGDIR/source/fgdata/${model% *}; then
336

            
337
                            ((++installed_model[${${(s:/:)model}[2]} ${model#* }]))
338

            
339
                        elif test -r $FGDIR/source/fgdata/AI/${model% *}; then
340

            
341
                            ((++installed_model[*${${(s:/:)model}[2]} ${model#* }]))
342

            
separation AI/real models, a...
Sébastien MARQUE authored on 2020-09-28
343
                        elif test -n "$(command -v sqlite3)" -a -r $FGADDON/fgaddon.db; then
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
344
                            ac_name=$(sqlite3 $FGADDON/fgaddon.db <<< 'select     printf("%s/%s", aircrafts.name, setxml.file)
345
                                                                       from       aircrafts
346
                                                                       inner join setxml
347
                                                                       where      aircrafts.id = setxml.variantof
show connected pilots for ea...
Sébastien MARQUE authored on 2020-10-25
348
                                                                       and        setxml.`/sim/model/path` = "'${model% *}'"
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
349
                                                                       limit      1')
350
                            if test -n "$ac_name"; then
show connected pilots for ea...
Sébastien MARQUE authored on 2020-10-25
351
                                ((++fgaddon_model[${ac_name} ${model#* }]))
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
352
                            else
show connected pilots for ea...
Sébastien MARQUE authored on 2020-10-25
353
                                ((++unknown_model[${model}]))
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
354
                            fi
show connected pilots for ea...
Sébastien MARQUE authored on 2020-10-25
355

            
separation AI/real models, a...
Sébastien MARQUE authored on 2020-09-28
356
                        else
show connected pilots for ea...
Sébastien MARQUE authored on 2020-10-25
357
                            ((++unknown_model[${model}]))
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
358
                        fi
359
                    done
360
                    if test ${#installed_model[@]} -gt 0; then
improve output
Sébastien MARQUE authored on 2020-09-27
361
                        echo "${(j:\n:)${(Ok)installed_model[@]}}" > $mplist
improve mplist output
Sébastien MARQUE authored on 2020-10-19
362
                        echo -e "${#installed_model[@]} models installed (*AI model only):\n$(column -c$(tput cols) $mplist)\n"
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
363
                    fi
364
                    if test ${#fgaddon_model[@]} -gt 0; then
improve output
Sébastien MARQUE authored on 2020-09-27
365
                        echo "${(j:\n:)${(Ok)fgaddon_model[@]}}" > $mplist
improve mplist output
Sébastien MARQUE authored on 2020-10-19
366
                        echo -e "${#fgaddon_model[@]} models available in FGADDON:\n$(column -c$(tput cols) $mplist)\n"
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
367
                    fi
368
                    if test ${#unknown_model[@]} -gt 0; then
improve output
Sébastien MARQUE authored on 2020-09-27
369
                        echo "${(j:\n:)${(Ok)unknown_model[@]}}" > $mplist
improve mplist output
Sébastien MARQUE authored on 2020-10-19
370
                        echo -e "${#unknown_model[@]} unknown models:\n$(column -c$(tput cols) $mplist)"
add --search and --mp-list o...
Sébastien MARQUE authored on 2020-09-27
371
                    fi
372
                    unset installed_model unknown_model fgaddon_model
373
                    rm $mplist
374
                    return
375
                    ;;
add --install option
Sébastien MARQUE authored on 2020-11-23
376
                --install)
377
                    local PS3='which aircraft ? (Ctrl-D to quit) '
378
                    local IFS=$'\n'
379
                    select ac in $(sqlite3 $FGADDON/fgaddon.db <<< "select distinct printf('%s [%s, %s]',
380
                                                                   aircrafts.name,
381
                                                                   hangars.name,
382
                                                                   date(aircrafts.date, 'unixepoch'))
383
                                                     from aircrafts
384
                                                     inner join setxml, hangars
385
                                                     where
386
                                                       aircrafts.hangar = hangars.id
387
                                                     and
388
                                                       setxml.variantof = aircrafts.id
389
                                                     and (
390
                                                         setxml.file like '%$2%'
391
                                                       or
392
                                                         aircrafts.name like '%$2%'
393
                                                     )
394
                                                     order by aircrafts.date desc"); do
395
                        test -z "$ac" && continue
396
                    done
397
                    test -z "$ac" && return
398
                    declare -A hangar
399
                    eval $(sqlite3 $FGADDON/fgaddon.db <<< "select printf('hangar[type]=%s;hangar[url]=%s;', type, url)
400
                                                            from hangars where name = '${${(@s/ /)ac}[2]:1:-1}'")
401
                    case ${hangar[type]} in
402
                        git)
403
                            git -C $FGADDON/Aircraft clone ${hangar[url]}/${${(@s/ /)ac}[1]}.git;;
404
                        svn)
405
                            svn checkout ${hangar[url]}/${${(@s/ /)ac}[1]} $FGADDON/Aircraft/${${(@s/ /)ac}[1]};;
406
                    esac
407
                    unset hangar
408
                    return
409
                    ;;
add --fgcom option to launch...
Sébastien MARQUE authored on 2020-11-22
410
                --fgcom)
411
                    if test \
use fgcom-mumble addon direc...
Sébastien MARQUE authored on 2021-02-13
412
                        -r $FGADDON/Addons/fgcom-mumble/FGData/Protocol/fgcom-mumble.xml \
add --fgcom option to launch...
Sébastien MARQUE authored on 2020-11-22
413
                     -a -r $HOME/.local/share/Mumble/Mumble/Plugins/fgcom-mumble.so \
414
                     -a -h $fgfs_install/mumble/lib/libPocoZip.so \
415
                     -a -x $fgfs_install/mumble/bin/mumble; then
416
                        nohup sh -c "LD_LIBRARY_PATH=$fgfs_install/mumble/lib $fgfs_install/mumble/bin/mumble" > /dev/null 2>&1 &
use fgcom-mumble addon direc...
Sébastien MARQUE authored on 2021-02-13
417
                        fgfs_args+=("--addon=$FGADDON/Addons/fgcom-mumble")
add --fgcom option to launch...
Sébastien MARQUE authored on 2020-11-22
418
                        fgfs_args+=("--generic=socket,out,10,localhost,16661,udp,fgcom-mumble")
419
                    else
420
                        echo "can't find protocol definition, or fgcom-mumble plugin"
421
                        return 1
422
                    fi
add Little Navmap connector
Sébastien MARQUE authored on 2021-01-29
423
                    ;;
424
                --map|--lnm)
avoid multiple littlefgconne...
Sébastien MARQUE authored on 2021-02-13
425
                    if ! pgrep -u $USER -fx "$fgfs_install/littlefgconnect/Little\ FGconnect/littlefgconnect" > /dev/null; then
426
                        if test \
427
                            -x $fgfs_install/littlefgconnect/"Little FGconnect"/littlefgconnect \
428
                         -a -r $FGADDON/Addons/littlenavmap/FGData/Protocol/littlenavmap.xml; then
429
                                nohup sh -c "$fgfs_install/littlefgconnect/Little\ FGconnect/littlefgconnect" > /dev/null 2>&1 &
430
                        else
431
                            echo "can't find Little FGconnect"
432
                            return 1
433
                        fi
add Little Navmap connector
Sébastien MARQUE authored on 2021-01-29
434
                    else
avoid multiple littlefgconne...
Sébastien MARQUE authored on 2021-02-13
435
                        echo "Little FGconnect already lauched"
add Little Navmap connector
Sébastien MARQUE authored on 2021-01-29
436
                    fi
avoid multiple littlefgconne...
Sébastien MARQUE authored on 2021-02-13
437
                    fgfs_args+=("--addon=$FGADDON/Addons/littlenavmap")
add --fgcom option to launch...
Sébastien MARQUE authored on 2020-11-22
438
                    ;;
allow the use on just addon ...
Sébastien MARQUE authored on 2021-02-13
439
                --addon=*)
440
                    addon_path="${fgfs_arg#*=}"
441
                    if test -d "$addon_path"; then
442
                        fgfs_args+=("--addon=$addon_path")
443
                    elif test -d "$FGADDON/Addons/$addon_path"; then
444
                        fgfs_args+=("--addon=$FGADDON/Addons/$addon_path")
445
                    else
446
                        echo "can't find requested addon in $addon_path or $FGADDON/$addon_path !"
447
                    fi
448
                    ;;
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
449
                *)
450
                    fgfs_args+=($fgfs_arg);;
451
            esac
452
        fi
453
    done
454
    unset fgfs_arg
ajout trace de vol
Sébastien MARQUE authored on 2020-04-18
455
    if [[ -n "$log_requested" && -z "${fgfs_args[(r)--igc=*]}" ]]; then
ajout trace de vol (2)
Sébastien MARQUE authored on 2020-04-18
456
        fgfs_args+=(--igc=file,out,1,$(date +%Y%m%d-%H%M-${${${fgfs_args[(r)--aircraft=*]}#--aircraft=}:-$(sed -rn 's|^.+aircraft>(.+)</aircraft.+$|\1|p' $FGDIR/source/fgdata/defaults.xml)}.igc))
ajout trace de vol
Sébastien MARQUE authored on 2020-04-18
457
    fi
458

            
fix multiple instances on LD...
Sébastien MARQUE authored on 2020-07-01
459
    ld_library_path
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
460

            
workaround for bumblebee iss...
Sébastien MARQUE authored on 2020-12-06
461
    (
462
        nmcli radio all off
463
        while test $(lsmod | grep -c nvidia) -eq 0; do
remove unuseful wait
Sébastien MARQUE authored on 2021-03-22
464
            :
workaround for bumblebee iss...
Sébastien MARQUE authored on 2020-12-06
465
        done
466
        nmcli radio wifi on
467
    )&
468

            
improve options output
Sébastien MARQUE authored on 2020-11-07
469
    fgfsrc=$HOME/.fgfs/fgfsrc
470
    echo ${fgfs_args[@]//$HOME/\$HOME} $(test -r $fgfsrc && egrep -v '^\s*(#|$)' $fgfsrc | tr '\n' ' ')
ajout fonction pour lancemen...
Sébastien MARQUE authored on 2020-04-16
471
# TODO: ne lancer avec primusrun que si c'est nécesaire, d'autres solution existent ?
472
    primusrun $FGDIR/install/flightgear/bin/fgfs ${fgfs_args[@]}
473
    
474
    if grep -q $HOME/.fgfs/terrafs.d /proc/mounts; then
475
        fusermount -u $HOME/.fgfs/terrafs.d
476
    fi
477
    unset fgfs_args
478
}