1#!/bin/sh
2#-
3# Copyright (c) 2012-2013 Devin Teske
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9# 1. Redistributions of source code must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright
12#    notice, this list of conditions and the following disclaimer in the
13#    documentation and/or other materials provided with the distribution.
14#
15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25# SUCH DAMAGE.
26#
27# $FreeBSD$
28#
29############################################################ INCLUDES
30
31BSDCFG_SHARE="/usr/share/bsdconfig"
32. $BSDCFG_SHARE/common.subr || exit 1
33f_dprintf "%s: loading includes..." "$0"
34f_include $BSDCFG_SHARE/dialog.subr
35f_include $BSDCFG_SHARE/mustberoot.subr
36f_include $BSDCFG_SHARE/sysrc.subr
37
38BSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="080.console"
39f_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
40
41f_index_menusel_keyword $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" ipgm &&
42	pgm="${ipgm:-$pgm}"
43
44############################################################ FUNCTIONS
45
46# dialog_menu_main
47#
48# Display the dialog(1)-based application main menu.
49#
50dialog_menu_main()
51{
52	local prompt="$msg_font_menu_text"
53	local menu_list="
54		'1 $msg_none'        '$msg_use_hardware_default_font'
55		'2 $msg_ibm_437'     '$msg_ibm_437_desc'
56		'3 $msg_ibm_850'     '$msg_ibm_850_desc'
57		'4 $msg_ibm_865'     '$msg_ibm_865_desc'
58		'5 $msg_ibm_866'     '$msg_ibm_866_desc'
59		'6 $msg_ibm_866u'    '$msg_ibm_866u_desc'
60		'7 $msg_ibm_1251'    '$msg_ibm_1251_desc'
61		'8 $msg_iso_8859_1'  '$msg_iso_8859_1_desc'
62		'9 $msg_iso_8859_2'  '$msg_iso_8859_2_desc'
63		'a $msg_iso_8859_4'  '$msg_iso_8859_4_desc'
64		'b $msg_iso_8859_7'  '$msg_iso_8859_7_desc'
65		'c $msg_iso_8859_8'  '$msg_iso_8859_8_desc'
66		'd $msg_iso_8859_15' '$msg_iso_8859_15_desc'
67		'e $msg_swiss'       '$msg_swiss_desc'
68	" # END-QUOTE
69	local defaultitem= # Calculated below
70	local hline="$hline_choose_a_font"
71
72	local height width rows
73	eval f_dialog_menu_size height width rows \
74	                        \"\$DIALOG_TITLE\"     \
75	                        \"\$DIALOG_BACKTITLE\" \
76	                        \"\$prompt\"           \
77	                        \"\$hline\"            \
78	                        $menu_list
79
80	case "$( f_sysrc_get font8x8 )" in
81	[Nn][Oo]|'') defaultitem="1 $msg_none"        ;;
82	cp437-8x8)   defaultitem="2 $msg_ibm_437"     ;;
83	cp850-8x8)   defaultitem="3 $msg_ibm_850"     ;;
84	cp865-8x8)   defaultitem="4 $msg_ibm_865"     ;;
85	cp866-8x8)   defaultitem="5 $msg_ibm_866"     ;;
86	cp866u-8x8)  defaultitem="6 $msg_ibm_866u"    ;;
87	cp1251-8x8)  defaultitem="7 $msg_ibm_1251"    ;;
88	iso-8x8)     defaultitem="8 $msg_iso_8859_1"  ;;
89	iso02-8x8)   defaultitem="9 $msg_iso_8859_2"  ;;
90	iso04-8x8)   defaultitem="a $msg_iso_8859_4"  ;;
91	iso07-8x8)   defaultitem="b $msg_iso_8859_7"  ;;
92	iso08-8x8)   defaultitem="c $msg_iso_8859_8"  ;;
93	iso15-8x8)   defaultitem="d $msg_iso_8859_15" ;;
94	swiss-8x8)   defaultitem="e $msg_swiss"       ;;
95	esac
96
97	local menu_choice
98	menu_choice=$( eval $DIALOG \
99		--title \"\$DIALOG_TITLE\"         \
100		--backtitle \"\$DIALOG_BACKTITLE\" \
101		--hline \"\$hline\"                \
102		--ok-label \"\$msg_ok\"            \
103		--cancel-label \"\$msg_cancel\"    \
104		--default-item \"\$defaultitem\"   \
105		--menu \"\$prompt\"                \
106		$height $width $rows               \
107		$menu_list                         \
108		2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD
109	)
110	local retval=$?
111	f_dialog_menutag_store -s "$menu_choice"
112	return $retval
113}
114
115############################################################ MAIN
116
117# Incorporate rc-file if it exists
118[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
119
120#
121# Process command-line arguments
122#
123while getopts h$GETOPTS_STDARGS flag; do
124	case "$flag" in
125	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm" ;;
126	esac
127done
128shift $(( $OPTIND - 1 ))
129
130#
131# Initialize
132#
133f_dialog_title "$msg_system_console_font"
134f_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
135f_mustberoot_init
136
137#
138# Launch application main menu
139#
140dialog_menu_main || f_die
141f_dialog_menutag_fetch mtag
142
143f8= f14= f16= mc_start=
144case "$mtag" in
145"1 $msg_none") # Use hardware default font
146	f8="NO" f14="NO" f16="NO" ;;
147"2 $msg_ibm_437") # English and others, VGA default
148	f8="cp437-8x8" f14="cp437-8x14" f16="cp437-8x16" ;;
149"3 $msg_ibm_850") # Western Europe, IBM encoding
150	f8="cp850-8x8" f14="cp850-8x14" f16="cp850-8x16" ;;
151"4 $msg_ibm_865") # Norwegian, IBM encoding
152	f8="cp865-8x8" f14="cp865-8x14" f16="cp865-8x16" ;;
153"5 $msg_ibm_866") # Russian, IBM encoding (use with KOI8-R screenmap)
154	f8="cp866-8x8" f14="cp866-8x14" f16="cp866b-8x16" mc_start="3" ;;
155"6 $msg_ibm_866u") # Ukrainian, IBM encoding (use w/ KOI8-U screenmap)
156	f8="cp866u-8x8" f14="cp866u-8x14" f16="cp866u-8x16" mc_start="3" ;;
157"7 $msg_ibm_1251") # Cyrillic, MS Windows encoding
158	f8="cp1251-8x8" f14="cp1251-8x14" f16="cp1251-8x16" mc_start="3" ;;
159"8 $msg_iso_8859_1") # Western Europe, ISO encoding
160	f8="iso-8x8" f14="iso-8x14" f16="iso-8x16" ;;
161"9 $msg_iso_8859_2") # Eastern Europe, ISO encoding
162	f8="iso02-8x8" f14="iso02-8x14" f16="iso02-8x16" ;;
163"a $msg_iso_8859_4") # Baltic, ISO encoding
164	f8="iso04-8x8" f14="iso04-8x14" f16="iso04-8x16" ;;
165"b $msg_iso_8859_7") # Greek, ISO encoding
166	f8="iso07-8x8" f14="iso07-8x14" f16="iso07-8x16" ;;
167"c $msg_iso_8859_8") # Hebrew, ISO encoding
168	f8="iso08-8x8" f14="iso08-8x14" f16="iso08-8x16" ;;
169"d $msg_iso_8859_15") # Europe, ISO encoding
170	f8="iso15-8x8" f14="iso15-8x14" f16="iso15-8x16" ;;
171"e $msg_swiss") # English, better resolution
172	f8="swiss-8x8" f14="NO" f16="swiss-8x16" ;;
173esac
174
175[ "$f8" -a "$f14" -a "$f16" ] || f_die 1 "$msg_unknown_font_selection"
176
177f_eval_catch "$0" f_sysrc_set 'f_sysrc_set font8x8 "%s"' "$f8" || f_die
178f_eval_catch "$0" f_sysrc_set 'f_sysrc_set font8x14 "%s"' "$f14" || f_die
179f_eval_catch "$0" f_sysrc_set 'f_sysrc_set font8x16 "%s"' "$f16" || f_die
180
181if [ "$mc_start" ]; then
182	f_eval_catch "$0" f_sysrc_set \
183		'f_sysrc_set mousechar_start "%s"' "$mc_start" || f_die
184else
185	f_eval_catch "$0" f_sysrc_delete \
186		'f_sysrc_delete mousechar_start' || f_die
187fi
188
189exit $SUCCESS
190
191################################################################################
192# END
193################################################################################
194