123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #pragma once
- /*
- Copyright 2018-2022 Eric Gebhart <e.a.gebhart@gmail.com>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- // Maps based on BEPO Mostly 3x12
- // BEAKL 19bis - English with French optimisations.
- // Least used letters in french xzykw QJÀ are fairly high.
- // XZ are good choices for pushing out, from english and french,
- // or using chords in both languages.
- // Note: The percentages came from different sources so do not
- // match between languages.
- // French
- /* Q 0.89 % */
- /* J 0.71 % */
- /* À 0.54 % */
- /*-------------*/
- /* X 0.42 % */
- /* È 0.35 % */
- /* Ê 0.24 % */
- /* Z 0.21 % */
- /* Y 0.19 % */
- /* K 0.16 % */
- /* Ô 0.07 % */
- /* Û 0.05 % */
- /* W 0.04 % */
- /* Least used letters in english. */
- /* X 0.2902% 1.48 */
- /* Z 0.2722% 1.39 */
- /* J 0.1965% 1.00 */
- /* Q 0.1962% (1) */
- // OPtimot by @Pyjam.
- /* àjoéb fdl’qxz */
- /* aieu, ptsrn^ç */
- /* êkyè.w gcmhvz */
- // -- rearranged z, and ç to get 3x12
- #define CARTE_OPTIMOT \
- carte_de_map(" çàjoéb fdl’qx ", \
- " aieu, ptsrn^ ", \
- " êkyè.w gcmhvz ")
- #define ___OPTIMOT_3x12___ \
- LANG_MAP6( \
- _CCED, _AGRV, _J, _O, _EACU, _B, _F, _D, _L, _QUOT, _Q, _X, \
- _TAB, _A, _I, _E, _U, _COMM, _P, _T, _S, _R, _N, _DCIR, \
- _ECIR, _K, _Y, _EGRV, _DOT, _W, _G, _C, _M, _H, _V, _Z)
- // no z or x. combos exist for them.
- #define CARTE_OPTIMOT_COMPACT \
- carte_de_map(" àjoéb fdl’q ", \
- " aieu, ptsrn ", \
- " kyè.w gcmhv ")
- #define ___OPTIMOT_3x10___ \
- LANG_MAP6( \
- _AGRV, _J, _O, _EACU, _B, _F, _D, _L, _QUOT, _Q, \
- _A, _I, _E, _U, _COMM, _P, _T, _S, _R, _N, \
- _K, _Y, _EGRV, _DOT, _W, _G, _C, _M, _H, _V,)
- // Maybe Use this for C
- //BP_C_CCED = MT(BP_CCED, BP_C)
- // BEPO
- // No quot, à or ç
- /* bépoè vdljz */
- /* auie, ctsrn */
- /* myx.k qghfw */
- #define CARTE_BEPOc \
- carte_de_map(" bépoè vdljz", \
- " auie, ctsrn", \
- " myx.k qghfw")
- #define ___BEPOc_3x10___ \
- LANG_MAP( \
- _B, _EACU, _P, _O, _EGRV, _V, _D, _L, _J, _Z, \
- _A, _U, _I, _E, _COMM, _C, _T, _S, _R, _N, \
- _M, _Y, _X, _DOT, _K, _Q, _G, _H, _F, _W)
- #define CARTE_BEPO \
- carte_de_map(" çbépoè ^vdljz ", \
- " auie, ctsrnm ", \
- " êàyx.k ’qghfw ")
- #define ___BEPO_3x12___ \
- LANG_MAP6(_CCED, _B, _EACU, _P, _O, _EGRV, _DCIR, _V, _D, _L, _J, _Z, \
- _TAB, _A, _U, _I, _E, _COMM, _C, _T, _S, _R, _N, _M, \
- _ECIR, _AGRV, _Y, _X, _DOT, _K, _QUOT, _Q, _G, _H, _F, _W)
- // dont like this one much.
- /* #define ___GODOX_3x12___ \ */
- /* LANG_MAP6(___, _AGRV, _B, _EACU, _dot, _mins, _DCIR, _V, _L, _M, _X, _CCED, \ */
- /* ___, _O, _U, _I, _A, _J, _G, _T, _S, _N, _R, _F, \ */
- /* ___, _Q, _Y, _EGRV, _P, _K, _W, _D, _UP, _H, _C, _Z) */
- /* // E goes on left thumb. */
|