From ca472ee6aed57821e3a0f75eb34a5e120e8ad3f5 Mon Sep 17 00:00:00 2001 From: "Jason W. Thompson" Date: Sat, 18 Jul 2020 23:32:29 -0500 Subject: [PATCH 001/234] Add Real Zapper support Adds a two button controller that can be used to represent the states of a real Zapper. --- src/drivers/win/input.cpp | 47 ++++++++++++++++++++++++++++++++-- src/drivers/win/res.rc | 15 +++++++++++ src/git.h | 6 +++-- src/input.cpp | 4 +++ src/input/realzapper.cpp | 48 +++++++++++++++++++++++++++++++++++ vc/vc14_fceux.vcxproj | 1 + vc/vc14_fceux.vcxproj.filters | 3 +++ 7 files changed, 120 insertions(+), 4 deletions(-) create mode 100644 src/input/realzapper.cpp diff --git a/src/drivers/win/input.cpp b/src/drivers/win/input.cpp index 3420e8b9..e56fe8cb 100644 --- a/src/drivers/win/input.cpp +++ b/src/drivers/win/input.cpp @@ -438,6 +438,35 @@ static uint32 UpdateVirtualBoyData(int w) return r; } +// Holds the button configurations for the "Real" Zapper. +// Two collections of two buttons. +// One for each controller port. +// The defaults shouldn't matter since this is intended to be configured by the user to match their custom hardware. +ButtConfig realzappersc[2][2] = { + { + MK(A), MK(B) + }, + { + MK(A), MK(B) + } +}; + +// buffer to hold the state of the zapper. +static uint32 realzapperbuf[2]; + +// Determines if the zapper trigger is pressed and/or if it's sensing light based on the button config and return +// the result as a two bit value. +static uint32 UpdateRealZapperData(int w) +{ + uint32 r = 0; + ButtConfig* realzappertsc = realzappersc[w]; + int x; + + for (x = 0; x < 2; x++) + if (DTestButton(&realzappertsc[x])) r |= 1 << x; + + return r; +} static uint8 fkbkeys[0x48]; static uint8 suborkbkeys[0x65]; @@ -488,7 +517,10 @@ void FCEUD_UpdateInput() case SI_VIRTUALBOY: virtualboybuf[x]=UpdateVirtualBoyData(x); break; - } + case SI_REAL_ZAPPER: + realzapperbuf[x] = UpdateRealZapperData(x); + break; + } switch(InputType[2]) { @@ -584,6 +616,9 @@ void InitInputPorts(bool fourscore) case SI_VIRTUALBOY: InputDPtr=&virtualboybuf[i]; break; + case SI_REAL_ZAPPER: + InputDPtr = &realzapperbuf[i]; + break; } FCEUI_SetInput(i,(ESI)InputType[i],InputDPtr,attrib); } @@ -835,6 +870,7 @@ CFGSTRUCT InputConfig[]={ AC(fkbmap), AC(suborkbmap), AC(virtualboysc), + AC(realzappersc), ENDCFGSTRUCT }; @@ -870,6 +906,10 @@ void InitInputStuff(void) for(x=0; x<2; x++) for(y=0; y<14; y++) JoyClearBC(&virtualboysc[x][y]); + + for (x = 0; x < 2; x++) + for (y = 0; y < 2; y++) + JoyClearBC(&realzappersc[x][y]); } static char *MakeButtString(ButtConfig *bc) @@ -1206,7 +1246,7 @@ const unsigned int NUMBER_OF_PORTS = 2; const unsigned int NUMBER_OF_NES_DEVICES = SI_COUNT + 1; const static unsigned int NUMBER_OF_FAMICOM_DEVICES = SIFC_COUNT + 1; //these are unfortunate lists. they match the ESI and ESIFC enums -static const int configurable_nes[NUMBER_OF_NES_DEVICES]= { 0, 1, 0, 1, 1, 0, 0, 1, 0, 1 }; +static const int configurable_nes[NUMBER_OF_NES_DEVICES]= { 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1 }; static const int configurable_fam[NUMBER_OF_FAMICOM_DEVICES]= { 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0 }; const unsigned int FAMICOM_POSITION = 2; @@ -1539,6 +1579,9 @@ INT_PTR CALLBACK InputConCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lP case SI_VIRTUALBOY: DoTBConfig(hwndDlg, text, "VIRTUALBOYDIALOG", virtualboysc[which], 14); break; + case SI_REAL_ZAPPER: + DoTBConfig(hwndDlg, text, "REALZAPPERDIALOG", realzappersc[which], 2); + break; } } diff --git a/src/drivers/win/res.rc b/src/drivers/win/res.rc index 3daca457..593057a3 100644 --- a/src/drivers/win/res.rc +++ b/src/drivers/win/res.rc @@ -1102,6 +1102,17 @@ BEGIN PUSHBUTTON "A", 313,162,19,32,12 END +REALZAPPERDIALOG DIALOGEX 4, 109, 129, 116 +STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU +CAPTION "Zapper Configuration" +FONT 8, "MS Shell Dlg", 0, 0, 0x0 +BEGIN +DEFPUSHBUTTON "Close", BTN_CLOSE, 13, 94, 56, 14 +GROUPBOX "Zapper", 312, 8, 7, 118, 75, WS_GROUP +PUSHBUTTON "Trigger", 300, 15, 38, 30, 12 +PUSHBUTTON "Light Sensor", 301, 14, 19, 98, 12 +END + QUIZKINGDIALOG DIALOG 30, 123, 160, 74 STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU CAPTION "quiz king" @@ -2473,6 +2484,10 @@ BEGIN BEGIN END + "REALZAPPERDIALOG", DIALOG + BEGIN + END + "QUIZKINGDIALOG", DIALOG BEGIN END diff --git a/src/git.h b/src/git.h index 7a955d5f..e7ed6d90 100644 --- a/src/git.h +++ b/src/git.h @@ -39,8 +39,9 @@ enum ESI SI_SNES = 7, SI_SNES_MOUSE = 8, SI_VIRTUALBOY = 9, + SI_REAL_ZAPPER = 10, - SI_COUNT = SI_VIRTUALBOY + SI_COUNT = SI_REAL_ZAPPER }; inline const char* ESI_Name(ESI esi) @@ -56,7 +57,8 @@ inline const char* ESI_Name(ESI esi) "Subor Mouse", "SNES Pad", "SNES Mouse", - "Virtual Boy" + "Virtual Boy", + "Real Zapper" }; if(esi >= SI_NONE && esi <= SI_COUNT) diff --git a/src/input.cpp b/src/input.cpp index 7318b0f9..7906897c 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -65,6 +65,7 @@ extern INPUTC *FCEU_InitArkanoid(int w); extern INPUTC *FCEU_InitMouse(int w); extern INPUTC *FCEU_InitSNESMouse(int w); extern INPUTC *FCEU_InitVirtualBoy(int w); +extern INPUTC *FCEU_InitRealZapper(int w); extern INPUTCFC *FCEU_InitArkanoidFC(void); extern INPUTCFC *FCEU_InitSpaceShadow(void); @@ -483,6 +484,9 @@ static void SetInputStuff(int port) case SI_VIRTUALBOY: joyports[port].driver=FCEU_InitVirtualBoy(port); break; + case SI_REAL_ZAPPER: + joyports[port].driver = FCEU_InitRealZapper(port); + break; case SI_NONE: case SI_UNSET: joyports[port].driver=&DummyJPort; diff --git a/src/input/realzapper.cpp b/src/input/realzapper.cpp new file mode 100644 index 00000000..93d80594 --- /dev/null +++ b/src/input/realzapper.cpp @@ -0,0 +1,48 @@ +/* FCE Ultra - NES/Famicom Emulator + * + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "share.h" + +static uint32 realZapperStrobe[2]; +static uint32 realZapperData[2]; + +static uint8 ReadRealZapper(int w) +{ + return realZapperData[w]; +} + +static void StrobeRealZapper(int w) +{ + realZapperStrobe[w] = 0; +} + +void UpdateRealZapper(int w, void* data, int arg) +{ + // In the '(*(uint32*)data)' variable, bit 0 holds the trigger value and bit 1 holds the light sense value. + // Ultimately this needs to be converted from 0000 00lt to 000t l000 where l is the light bit and t + // is the trigger bit. + realZapperData[w] = ((((*(uint32*)data) & 1) << 4) | + (((*(uint32*)data) & 2) << 2)); +} + +static INPUTC RealZapperCtrl = { ReadRealZapper,0,StrobeRealZapper,UpdateRealZapper,0,0 }; + +INPUTC* FCEU_InitRealZapper(int w) +{ + realZapperStrobe[w] = realZapperData[w] = 0; + return(&RealZapperCtrl); +} diff --git a/vc/vc14_fceux.vcxproj b/vc/vc14_fceux.vcxproj index 54d4ed15..910c729e 100644 --- a/vc/vc14_fceux.vcxproj +++ b/vc/vc14_fceux.vcxproj @@ -710,6 +710,7 @@ + diff --git a/vc/vc14_fceux.vcxproj.filters b/vc/vc14_fceux.vcxproj.filters index e8870620..eb74f269 100644 --- a/vc/vc14_fceux.vcxproj.filters +++ b/vc/vc14_fceux.vcxproj.filters @@ -1105,6 +1105,9 @@ input + + input + From 79d3396d6e8a205b1ba8d2145db8ab32019fab45 Mon Sep 17 00:00:00 2001 From: "Jason W. Thompson" Date: Mon, 20 Jul 2020 22:28:29 -0500 Subject: [PATCH 002/234] Rename "Real Zapper" to "LCD Compatible Zapper" Per feedback, "Real Zapper" was renamed to "LCD Compatible Zapper" to better reflect the purpose of this input device. --- src/CMakeLists.txt | 1 + src/drivers/win/input.cpp | 28 +++++++++--------- src/drivers/win/res.aps | Bin 0 -> 424236 bytes src/drivers/win/res.rc | 4 +-- src/git.h | 6 ++-- src/input.cpp | 6 ++-- .../{realzapper.cpp => lcdcompzapper.cpp} | 24 +++++++-------- vc/vc14_fceux.vcxproj | 2 +- vc/vc14_fceux.vcxproj.filters | 2 +- 9 files changed, 37 insertions(+), 36 deletions(-) create mode 100644 src/drivers/win/res.aps rename src/input/{realzapper.cpp => lcdcompzapper.cpp} (66%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bb37f0f6..1a98697e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -352,6 +352,7 @@ set(SRC_CORE ${CMAKE_CURRENT_SOURCE_DIR}/input/suborkb.cpp ${CMAKE_CURRENT_SOURCE_DIR}/input/toprider.cpp ${CMAKE_CURRENT_SOURCE_DIR}/input/virtualboy.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/input/lcdcompzapper.cpp ${CMAKE_CURRENT_SOURCE_DIR}/input/zapper.cpp ${CMAKE_CURRENT_SOURCE_DIR}/utils/backward.cpp ${CMAKE_CURRENT_SOURCE_DIR}/utils/ConvertUTF.c diff --git a/src/drivers/win/input.cpp b/src/drivers/win/input.cpp index e56fe8cb..2b61cc98 100644 --- a/src/drivers/win/input.cpp +++ b/src/drivers/win/input.cpp @@ -438,11 +438,11 @@ static uint32 UpdateVirtualBoyData(int w) return r; } -// Holds the button configurations for the "Real" Zapper. +// Holds the button configurations for the LCD Compatible Zapper. // Two collections of two buttons. // One for each controller port. // The defaults shouldn't matter since this is intended to be configured by the user to match their custom hardware. -ButtConfig realzappersc[2][2] = { +ButtConfig lcdcompzappersc[2][2] = { { MK(A), MK(B) }, @@ -452,18 +452,18 @@ ButtConfig realzappersc[2][2] = { }; // buffer to hold the state of the zapper. -static uint32 realzapperbuf[2]; +static uint32 lcdcompzapperbuf[2]; // Determines if the zapper trigger is pressed and/or if it's sensing light based on the button config and return // the result as a two bit value. -static uint32 UpdateRealZapperData(int w) +static uint32 UpdateLCDCompatibleZapperData(int w) { uint32 r = 0; - ButtConfig* realzappertsc = realzappersc[w]; + ButtConfig* lcdcompzappertsc = lcdcompzappersc[w]; int x; for (x = 0; x < 2; x++) - if (DTestButton(&realzappertsc[x])) r |= 1 << x; + if (DTestButton(&lcdcompzappertsc[x])) r |= 1 << x; return r; } @@ -517,8 +517,8 @@ void FCEUD_UpdateInput() case SI_VIRTUALBOY: virtualboybuf[x]=UpdateVirtualBoyData(x); break; - case SI_REAL_ZAPPER: - realzapperbuf[x] = UpdateRealZapperData(x); + case SI_LCDCOMP_ZAPPER: + lcdcompzapperbuf[x] = UpdateLCDCompatibleZapperData(x); break; } @@ -616,8 +616,8 @@ void InitInputPorts(bool fourscore) case SI_VIRTUALBOY: InputDPtr=&virtualboybuf[i]; break; - case SI_REAL_ZAPPER: - InputDPtr = &realzapperbuf[i]; + case SI_LCDCOMP_ZAPPER: + InputDPtr = &lcdcompzapperbuf[i]; break; } FCEUI_SetInput(i,(ESI)InputType[i],InputDPtr,attrib); @@ -870,7 +870,7 @@ CFGSTRUCT InputConfig[]={ AC(fkbmap), AC(suborkbmap), AC(virtualboysc), - AC(realzappersc), + AC(lcdcompzappersc), ENDCFGSTRUCT }; @@ -909,7 +909,7 @@ void InitInputStuff(void) for (x = 0; x < 2; x++) for (y = 0; y < 2; y++) - JoyClearBC(&realzappersc[x][y]); + JoyClearBC(&lcdcompzappersc[x][y]); } static char *MakeButtString(ButtConfig *bc) @@ -1579,8 +1579,8 @@ INT_PTR CALLBACK InputConCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lP case SI_VIRTUALBOY: DoTBConfig(hwndDlg, text, "VIRTUALBOYDIALOG", virtualboysc[which], 14); break; - case SI_REAL_ZAPPER: - DoTBConfig(hwndDlg, text, "REALZAPPERDIALOG", realzappersc[which], 2); + case SI_LCDCOMP_ZAPPER: + DoTBConfig(hwndDlg, text, "LCDCOMPZAPPERDIALOG", lcdcompzappersc[which], 2); break; } } diff --git a/src/drivers/win/res.aps b/src/drivers/win/res.aps new file mode 100644 index 0000000000000000000000000000000000000000..9d042afd985456fc70d7650e1c24737be01107f6 GIT binary patch literal 424236 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

*#EkhS)sGgxlhME~_WoSM_3mH0;p~Vax&d@Js z=tzcsB||}mo|vJf3?0qTa)wqi)Xvbc3?0wVi43h~=m{CRBtw^G=wyaYWoRu!>lxa} z&}A9g%+OXwOV7a+HS|@X3VjVs{@VWK(zt2KtIsKaK*ZI(mdjLip$HXFTM{6M!wyF!W^mPVfkZM8^^Q8v7?eOFy;_s`{xi#R5 z7YX60d85JDRtEs$e>qg{PTQaDYP=w+f-{J6sOlW{b<=gf))J z&?$qSf>U)(u>1?H=94@0i5>d*P7})|;rn4SKXdT!@=qrGh$K<9@s&m!(k#O7Ex}8R z2=X(CrRP@TKDQ0lv;p*`kQ`lbbs;F%Ta)xFQh06T>>0#ij2I+GPmDo^Xvv3YSV)$R zCV@FxP6CH$#RqDnNS4}3AZ~$50*C1M9t`@pP9xG=cK$%0S%7_M_~%r$Rd2vOR-_ka zB8a(CpKXb5J!BY;dLt<-314->Y(5vjC14)|NT)w7za@=T2lU3YP zrgdg}#`1gs8W2s>zn#nJ&9<10tZZPoqmS*V4Pu_kk)#*cB53Tj-=X5S?Ml^37ElEn@L|{= zY0xLk7=aDVP~+TMkOGqwH1Cw*1@&>WNr&)Jze~6-oh7%3S1rNX*${G;A9^ zQpEnbHgNl2Bj40H@}1A)ERY6}FqggO`32B%{$?_1`MR(fO??-eT3})NpF7XygB!?d zN_#g;%eRu%LfX5YmnI;0<$SxHroD$vYr$diyW6ZLWaCol?`7!~7*gN!JXO+U5gXVu zL1Q6b!$@JKePZZtz90txIuDsV!tJ8L>!2}Tsy8vzOjH-WF2ir|-k92T08Vrz%Kze4 z=`cs8bl{#UtEN263r$2TxQ@)1%B53Ux%bes^9bpM#xRA*nfEn>8`M}3xbyrPJ~wY-3%62 zX%r2}S1)F9sXjfk3jv}cGxV%ff=ac7>Ff_O^sA}pT49d<3)`>-qcc8uQKOr5Uc>S1 zc62ad_s}ez0ya?fp#<3Uptpq(qfj($js$r79={s7;Y_xm?HgtFH$vD8!L6JA3>ysz z6LLr;fcpz2Y%sK5+8J43&gq32}ixfyz1hMu3H7i8##8SG+fThl`aUSsp8 zzkKY6AMmR-n`IvS+dKuv6iqhQ`PNVzg+Se`GMIOF(6JS`dq8cmeZUD{&tnpuuOKxa zO5%{T`$;z(L(!9Xy3FBM!5BA|I|&!QKD4r&pJ)AcSIJUK* zs?uQ$MjRQV5+5q1j33cLe9g-01hz0L7K0gi{BijkKbS6-vZClzdLvqlSvED(SJI4j{d{J zhv-`lK1APi@L~F{gAdbp9DIa+;NT6aWlM-O-K96ijzao?JQ578sUiaT1C%(=?>iDEfRzuu*#K*=F# zj$SC9yum>pmv9WMVOo58Hi;(Z$RzBAeS(97I1_22s9wFt2aBKTccO*x@Q9q`)01?$ zmna+Z`aK_PX|LELS!SK^Z}6#f#{9cVlXEn`9~B`|rcj<-nDuKsra5K$swfXHnHB9y zFVRrQ>$N`E(w3TzQ=Y=&Lu70-$rq60-fLm zGG$3a1@rLp@QV7yQ4+r5Kd6|sqf02zd927-z9_T>Pe~FwffZyDIw?nY;~Yv@HYRBg zW8Ij97D%0?P6lzg*RbgT6aV#SQ6_4*haKzS3lm@%GKTdCcMxM=!Yr;s?ls-DIUXg( zF>|x@bCftxQN!U=Oba4x1o9h>zqG#Gbh@xKXRaSDXa%Yzqs71Oj1}wbCI}?GKW;Mh@@U zCQ=j@;h=g1-G4Lt8iuaz#+iHF9gI@yeI16;xt zan6>6noEfv@HEROPfBGcH)Zx2a_8YpD~+98+tECn-ql91Q5q?%v7F+e0$&|)K(ypq zc7)O~@~y!5R-G(94(keG`lv2US)Y3J6^HeslG&=0$tm2p5n;R$Bfujs>=mz|wm9tA zYkY84o5y7^p5ge#O{&$>WL`Ef?|q(GTk+Y`a9CpB8lI(L2j`09ieU%-xDcxSa2=#{6pazRY9Y35k>!O>GfUO3LHY^{xh()OuQ*9xU2Ira{M*Z?3GSZ7(8Dk%@EbZvd z#7NBbA?!zDGYA>`Bkq$uob7F-a(O-cBoE1Fi~}59##(dQv>IIvvv#fiw0j71g2Na? zYS@=zlO-w&6QE-9Xz)?Q1TUd0E!;a(cTN=a1rs%yF0tF>$1)TNOcrTsGG^Z6fjLe@ zr#%Xkz|Sd+bjC(JXx+>nJkWx%WDj%*GY2z%8fbAYD9CvUE<*_8^8q?*2w^<L-oVx$5}dI?@- zga&`pN6PM|anLuggywWg#ieP)!(J6s5=IOyFt4;RnX;RZnJT#YrSFg~wX}%uP8)1y-^5iK-lBu<9XD2eMJie}G|3l8aDU9#n|%FTT`tzpS#hA#8L>1pPIQ3~zs-%Xsz93I@}8&Tvx^*_h{e)nE_&tCe2z4V8B z>5ul(pYEkU+e?4Gmp-tUKDd`YzL!3+mp-|dKDC$bdq?`%UhazDyO%z+m;OS2zi%&n zcrSfge*ei{`p91Tto;7ty>#v^jA_lY(+9hk)B+4b8QTjOjBh3f<4_Y3At`WD>FWS!HfI92^nGbiyn`z zV~;Vy6#eYkE9|oW;!cDg=V9`v=ikCQ6<-u4B$esr4DUYtrR1Sdb6f~Hf5C(DIR>3% zAl&719s*Kgl7r`>GW6LfSSA6uEsCRrKI5b0_%EK#;sPRy=F=WdZ|SPmg(c#O{=&m? zSKxT+qE_b_;b9c*=SArZl%klLjdZZ43iu`#>BmmW@{{rx0_En52pRcpJ^s@F-69}0 z5lqUt+xu?;H8|qbKz^h=a9teZe=J{i`GD*J`-Z?U@kUp$D3F~!PGXodPm=@o_|tj< zj$N^kl!aqm(`6nI-m?XM;%+SoQ>Gh|y;Vq-{=;mZ>3sk^$Y5ek|7oDS>Vx9=F9}_c z?T@cVOC@fiYy46Pv^D~>kdJ3{D;2j~7QnBaX4Y)_QR`MM>#Do(_`N}T9wk4W$)ho^`v&N39L zgVxj1Q1m?&-rmPzgwPaEO2yIl1svLE35OqR^i5MKvf+zOHF$=;C4{o5(?C_8%6>Zp zhL@mxM}W4soW=q)v?O*4nDgDwP%;3x>ggTwi8f}AR?|C;2Q_=(09FkcOzn+DxSxqV zb!UA6>Ai1@nzoZ`JmSao9_cZ{9Hb|uXiP?eJd)OZXosB}%*BM}KEzyybk>sp5=)K= zMs3kt7^t2RHQFp22<-8@s!v&<=M;upkvw1++ohE*{Ooa7vqf&hixY*F{??66CJqZ! zR-anz?19l(u{C_{>?>vjs#$8%wo zvOqj5l=+XgNO__WalX>iB-E}7z|>{at4Nu!{FiGUBQddg0**2sdG^)tE6e z72Sghv1Y|4Cl|1~(gw~Qqn%_-mNg8Wv$rtuTdEg9eH;#f6Y_<6NiL(5RgyFhW$Ny{ z<5?81oh$%eyZj_pyb+j`56+dHohVpbiF(uQD)DLyE_1w_c$o(LnrroBm8NrC1Rcr- zj>H37G|v@VhLAL^s4%F8FF_RXb`&8e zSiI{Lgx^ia@m#Ke0D+~onNk4<)1=9l^kPwV^vdh%H|_D|aW1V@(^&W-Q(T3lr-%IT z!t}wxE(f$x@J!2GJ1L6`tU6$Ia8{teuy4fGYxumiayVV#Ud2WT+_oD3jk8*K%nY%8 z>;*+f@pSq78HCU~bJhYtJ#MjM>I9uK_IdQwlUve=10CxL^<~J6TRn+F9hhK7y$hOV zY%h*TT3h$hV!tb%5l*dqxQ5x7B3-+3l-Za1fD~XH9J-{X^JQKZVvOrY0lf7nYg~Gu zN5)r(7_M+#Tl;5_IYIDX3)Xg^Vld|$t%8xlq3fQCykxeEW2=z zkiDA_#=CF24<5p>sbThbLKrl{OKb5g=q_uB(Dj$l8H5|$G1Yp#f#1McL>4;s_uQ8T9Q!i z3jExQCj23+V}@0K|gvY>4ba+ zhtLkNzeIOTU=|sJN!Q*4W};T(ZJj$1y*imEA55roc5t8l?hgIV4*m8H-5_-E!0?V~ zfXFL^h`dNF&xcvNhp(kj#M-ZkTdHvLHbXnEreMb!$m6Ht z4XHW2z)|GkRUM)}+E{Kd0q=hq9xLs1dxKGaj6E z?{bawE?5)EoIqz!7|`_s_jgJ=myJ^C;Ow$5cH~|M9kcceil{v-F>!YO50c#kf_)lI zTv$qfD7ZOz3gz>UGgQ%Ez#3@h6j9vKVSnd!G_aPCgLhB45Mi>(lZzhjk^c$*a(3LEB@lJ2ejx%% zyD5UA_e&)2jX;I@ZNw|7wiY98F3~hB1`GZZzS2G(YRvxAr_JqrVFVlVC>n-mx?1tgYzww`VaT z73DZP=aFvQr4!lSX8`y2sbi^L=qx?hX|rLR6$fVKLx zVLxiW(Zd^K^C8OqhvI=iB8!=NS&R z=wtTV$#y>_VIvM8&wEef_ z@8MiD+mGUyVYtt6+cu7bv4yIp5O|BaN0^UhfiPBQL<3%~9N!9rtkrItg!7W?c1iFg zX3IDf#<{70hRr0r(2F=B#)t;O0uUCd#`Z9e)*$qSHo9{XGvB}gvXHl-=ava~DPkOO zQ0*>BJba=Y=y_Mc=toqBdQsLL+xQ;84vxw65ZhB;i_!I|>3*cic&Y)2~IWZLoJYX9k+bcEU>E@i@U^mM;+= zX3yz+FlHJ4zQa~6lcU?o`V>ojEDlPQsVdNQD~x*i)5(4+xZ`rwf%d6wf1>E>$?iu%UYCblH)gbZz>X4yx7T7+ng& zeVMnllrA4H+RT|BW|dC#Q*a{vtCZpZWd}L@qV9+J6wu8SadAZzp3bwLl78zBc}^b` znmEUjr`z7(eNNDAulGI+^pWelPxLlL_%P1%No4W;1fK_wL&tr<6n))KF@yUM>6lLd zUoRrP>6<ad)R%k2=!9;P?hg?ke_dn&%7kZ)(YS0J$A~j}8I4%SM=uQzT z0ngJOUnFGqD?ZUYo$I3)=+Ax5hv*0X=OW$BPkWf|YCd^m>lVX@Rd>|DMNLcQg9ZGd zArd{T7({IvQZ1VgEsWI2r4bPGU5!A5`-uohG=4GylB^EIK*(@B0#YrXioig0iChN- z`yEmHMNnjDw`Xs*_t}f7=uh`bRi0&;n@)qI@2R6FOBDQ9GHTn@DDIbiK+Lh_d|%vI z!t}f5jduB@a%Q*$i0>kyQ(dt?AbFKbd0#qwTyCS&nW8{@#t+C_3;>b&N1RQ z)h(kwUPB*pjM)4vqmi>O+OT899wy6Z^z0dpSVm*)Vz7+H&YsbzW5n;pTSnt&&uGjs z;-E~+=)l=C8h4C*%f?dWtVgE^dtIZnQ9;|`Crmg&)slW*MFKCJsOj+1ZQ z**?tsBFD)$?`$9T{aDAzx9@Bp2L3q9Y1}vPY#$c>c*n`N@N6F@o_Cyl6VLWx;}ez> z%$geuzlV!+cnfE5PX)s%H>j2gP7*EIFTY90Pi?{Ro51#3zf6mcshWibr1sIGrz|6* zH)YgEgPwMb)F_luAMJU@F;bgQMtwBrl4GRZo-*pAH6L`0wAWKceKh7-$4E^}8THYY z%Z`!udCI7drab2uX_u#r`e?}&$4ISQ8THYStB#Rx+5HSwHOmQ3X6_PHq--CyeX--@ z+jc*LRo!v&jk}-0s^K{K*4@uw)pVSE^X_M`YB^56efKk1%{xxMf%h|5EjUiTh4(X9 z9dev}6YpoRT6COz8)q*vA0G?)=*ACQjzhk!JC1$W{4YC>zRf$1eRS+c97o^w9mhU; z_+N1x{Wjn@_R-Zp!EyB4g5%gnpC34mew%O{`{?|i=s5aq!*T3m6j*W`{Wjt__AwkB zbsYV+;yCs(E-X8ascoj80b<3n98PaEeYBdkW0~4&`WZ5gIhLu-rk}CnxMP{xZu%KS zPB@mS4X2;cWYw`uZ8`l6E0;KysZFP!@#Rv-GPUjWGtiuLEK?g#KO@d5$I@>-*tu#V zw7Z`HXU#Gk@!O7N*hkA*cMScOV;S}_+-x|8e!H;@`xtF5a}51fV;S}_*laq6ew(oj z`xtAs97DgwScZKJHQSD%-(D=kK1Q0;j-lULEWFySLFOvQF|D!mGsZm0aZGD1{R}ZzJC141rJoVz$&O=Md+BF@ zxyEr!YcTzcFHdnC(^^bF!^^dfV_K8xXLNb0YnHa}D#+m0jj;U>?pMmCimSx1lA2ymk zTFvtv%hXoW&rtIM$1=6q^fT7H(6LNyH~kDYFLEqX8%{r?&5Iq&)RxoFaP#YqWopyu zXS{idW0~4^`WbLu>R6^Wo_AXaZ^2Y1VZCYAUPP1SY=#laMl}%FBhJ?cmI_; zbL0@w3@y+E{@vNZn}Yan@GiIC!~gPs1$q=6p%xCWw{eDj3%@U+CH%XN>jjU{GX7lw z<_HdSF5}`T4ov z#uns%9Dgt2RNy|Ef@CK}s(rK{DaL7(1|aEzNW22tDr`|d( zTt~}WL+|-NL1$4J8yLyk=o|R)1)hbi^=)}`NWBam>#*E)jJMmE2h9Vvg*nXRhdPbidERseuz5g_P!pJSq~)2^9MUT^OT%azIn0{)?{WN( zIUPaT=qzhX^6jS;-TKPHy*QVS=fXTL^Y1gz3v0HY68`jNtWkT4&gIp%Ze2YY&$uq9 z0Dt?dj-N!*|FxF0UEgS5&FjRU{p>PozdDw58s~6n+g;*oVO+nB|9CBY4*$S^d@`q0 zDU@5djV>Gg9EyJCh~SOM9$?=>DJbDs(hvi3gX~^X0MJ;|1A|8e+)tz%rl~>^m-kg# z{M%i6YXRoSl=mq|1njq?2V)kO;W(M6Oye+|Wzh2lHnlx^7D*{*&*MpPWfZQf!65{k z)K*F5QhwZ0=w~}ZxB&+sxg`o83lsJg-w~P$Ut%30zKqR##~6SXtHz{@9PJvR*vsY& zu#b@AH?E<{PvdDO+)Fh=`sB9$g1j}HMFbQ_YD4DnH7?qj=oHc z7iRel+mJO5ZTk<-j!^WNBZRHujzxPp1O#&mvd?I8dF)9$pxtYAU}YW%8Xv zkw7-@bQpAL-bLX2%)&J`GPD;wvj#ie`aA*?XLqN6AGCM1 zGACpYo{u(H5HpJ1WhE;#0gXAE_RIxAUzJeavI)km1oH0 zl`?%-&|Vec*Q0l*!U(0E9_?_dcPKYDI_iu|zoLe$uwJq%RkGX)w??X8QH?7sO=QKG z7N8$tgE7d^G8{o@`3j0up@JfPjsZc<^`dJM3QSb3f^G9OU!FNB#BZUN5xaQ(8@~)? zqMzw`8ne@Jx8$KOhWL*EEau(WQMMX;4ksrN-|apm5Z`N#feopAr#I{p5P!#qJ)zmi zF6Wp){QZ`3f%w}c2L$5pc3{JZ8AXH^smFY&v0=khzS!7sVURC3kH`S|f@8yjLB8bJ zumC8s*MtoR2KlmM!+=4)@NoD81c4(5H6U5~i3>)kC}~G07^_lgd^f8hXLy^4Z-J;x z3IPRZR3wG44sy^$7$?pu$ni|XMUJxua?nEvVFl!%h7iK#&p`_zgo~ep5<&=Mob_WtY0k<$U3# z?s7R_dKc9xs_ztljM5DGrE#f%0Lm|wLrJX+`K5Cxsh%Oflny2JG~}1op`^lw{8BrV z)ZCC?dWVuK9P+i`P*RsesoKy=?HF2$LJz0vL#uf>RUum6!>Jn4iXTo@iCVyLs!r4t zhEtWIHZh#46*Z3GRJEv;4EuVqAz5N19fAg-lM!DhHjS9bh_4Zg5epgd^J_ zIuws!xiQs7EapOtVobFWLy1+4sa3>KViu86(&Z)Eh>VsFCEAFLnhqt}h>V^NC8iM> zMIB1C5gAP#N{u5jtcEzzM`U~raiWmOKpWyjBjc$WQ3J92=yK>iOeZ=S*M1|WN$oer z)kNYr(aN~mNE|0>8P|Rzj$^%a+0%!wVdVTwY;PW~e&IjgAMxHhG!}vxEI;5U1(JW+ z$5jQeFo)MW@pi}Hm4oy2jly)sTXf$N4_ zh-tumh759&&P+D=Dz3vGs0rFdepgd2#Ev3TXmR0pvxy5xL!Mv|=sgi3tc-i0xO^TN zgXH#8ep4%?Y!>7>N?a7}gk(?yWiHDNNHK)ubgvIQq1Ch-+U#Q#Rb!T7Bj8NbiR&fV^Rf}E>`Q)j6^wb zyC|+b)8a7K05?1%QK8ItH8%oi21|TnaDodTER7+9mCeh8?K2zg!us0QwwjgPR%I;( z4mN%l?(U?P0|VrHJ`ME#`oM<;-4TTMz@K~K&%N;H=kezk@aNw6^8ozWhd<}z&ja!2 zLHJW7T>OTb#Ql-{7BN4cRhr_b#?U_SyeZ!cK8dVQK-}F}nrqF;Rl4XYI(jinG48GQBuy&2Ia8H2nZd6O08z5uzX-T2KlTl z)C1ho=zcd^sFw;}vb?y3(kZ+$RS)vGi&(!}ctV0>e9l1j65kRjU(y{-l&ghVFU6b@l<%PyD(RkJxh9R=*v`7f53Bl! z3QW%MjiT2;V^iMT)Px<3Zyt|y@{xKvQb&5+fa=WNLdq+$!wJ)kJTS zFE8)|fF*%jT6x|BPw&o}{z~92bgBz@G{s|3L!a1~t5)&c07@cM)irK{EOB<@UOABbTbKMkuT4 zg{`5XyAf^AjFe(5StF0JEqTV45vazrYnElml_w?nqh zB5}{YKHO&F)xkIZY0ngIZF50~$6lJmApsyEXlWVg|{HM2{{ zyFEuY#|*>b{(7u}`PUTs5q_|tBpyq!-_z+(K8yXq`F)-y;+gRA&hRzUKuB&|=a-ko zF6@sP5WcYY7TgZe@FvAB)Oc)bMtAT?(t-ca>__UDLHW#Lr_A_cswPVeIqkqdsa|WF zkqpfYS61;bk9*(YH03PuR@2&;MRQ$$8K3F2VrhSGRC!oVNZ!}QUGN$L#8ip$b!lWC ze@p?a4Cz#n`O1*raD2vVX&Mh6l*gPuZ5{9y6@T&PjM{OOVa?~auuPW)r=3xK*n|-& z=U9yJ?D9pWcq_#}ar`lbyog=##|!|((CIFhKbZ686=nvjF=sKV5$vY?J&k$)Hn_~* zanopRxW79**c`9IF^0!*fwkeq;aKgPF@|f)i#(Le(CiHHVAp4-2(>zFojHN4pz42_ zh~6P69Ii(5;;$+E-)F!HYAe#s@O>VHictjI9g_yRZ97D1`r3T;$es|GZrmNAaUcEfg>Hq z@p|5FeQ&zkH-=mAP>x#R57MJ0me1C}@8n61YvE%)*{)~Y&^YGMh!?Ll(Ts+Tf zeEKz=cZ-J(M63s+OFQFrm=cg4H3hrLX+LYL{hChX>1uppgJ^NMwt8nxgat2OX7mdbT-k545dyS=I z37Et+p8H}9c1=Qs2TdbjD`Yw_Z^d=x_1*QY3vg2ZHKW6o;G%T?HC-Gk8JasCe{m>r z;^6!;ymUq?JD6Fyn0Z4ve&^RzroG{9-ckO=r1m>(*yfh|Dbnbd0t&|#b`(1xybuzE2wZbmysl= zP~5)8+p*X0=}W`&NHWLJ$ffbj?z^7Cf(FE82ip;d!H+5ze)-UyR+u8HS8G^tBR%Xn`_ zmb7tA)f-0v+hcY&%=$|Q+q`eXJBg=INDaojEMlgfy+~Q~?F^l!0fwT|RGX%5^H?b- zrIiciWP-w3mv`>ig7ho~#pF&^Oj;C*Ni|?+%jU-kY{{q%hZc5Z5b8;blX|kKBzG~F zbd=Ia=D-=8l#-)$-n{elqLwr-(Dai5g<2BBb?NfFOsOUPtiZmbmmK=**!I;FlS8cg zQ0{Bko1Be$5`KqjIJ%VXK+(ns==_RS`OA{S+e1%jaT}c;iK<9XNeeC*W1)UoMKob+ zt)9{_pqccurYJRE&LL5n?Pn3Bk~~f5t0lWC$s4#8ids@@5Sli_ExjbGE8f?481SNi zvosyobToh#n>tI=W;T5!t>xwx5AdywZ&!2zH%A{9C4D6-<;DG_CCm_mt}R76N}izL z5CTOEbl)JClF~Z59_u)M*Hiji6?LRTOUWCbh#lt1p}{2uWqXX|h=^>Ckt|Ni$|;?x zrAT8r8+n`rq2}jh-C7~3E$yXlQ;d2-8FVQxna3!0n;fpb9B*Lv+Km+~{o{&-ASYJg zRfZ}QRD!o^rox0bSlXkTPMRw{iz=#{W=g-5{HM@XU0+AD3NOF0zrsY{jKVa-&F|CnwfZA_N)w*bpY`4?NxMB*MV{@+TuMZKl>ss2$9P0>j z_^#=bI*Ggv*3k*nRlf^{YDj89Q&LRToc)n)#by_Ao~;g#9gWcg$2PQsx+E9XNhf)I z>mu5L8S+dA3RcHfcabNDm&d5=B^79AJ5|%%BNh>`gC#bKvn!$jVj6og!i@b8HnN zy{9zoqVU}XroXpK!#iC|>LoI2)RLY2>0(AiXV(!(uWz_A5$$c@p(3xxa@o^tKpqibgvTN^RJ3rf@E?L-=SEotH`$a zriUK9=OJGoC4)&UV*=+XmqA~U42EiG&z~;YS`Rx1OGHF!g)oyWC5O$kLign`&Z3O< zk2gfuv&AyYmtt9wE;4o_VjR8Bm=EAo>%0DVSwi`_pH7!`h-|UQYVigigl;j2YFuB4 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

D9>e2&z_ADKL4Jr267% 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 literal 0 HcmV?d00001 diff --git a/src/drivers/win/res.rc b/src/drivers/win/res.rc index 593057a3..7d15cc47 100644 --- a/src/drivers/win/res.rc +++ b/src/drivers/win/res.rc @@ -1102,7 +1102,7 @@ BEGIN PUSHBUTTON "A", 313,162,19,32,12 END -REALZAPPERDIALOG DIALOGEX 4, 109, 129, 116 +LCDCOMPZAPPERDIALOG DIALOGEX 4, 109, 129, 116 STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU CAPTION "Zapper Configuration" FONT 8, "MS Shell Dlg", 0, 0, 0x0 @@ -2484,7 +2484,7 @@ BEGIN BEGIN END - "REALZAPPERDIALOG", DIALOG + "LCDCOMPZAPPERDIALOG", DIALOG BEGIN END diff --git a/src/git.h b/src/git.h index e7ed6d90..28ab8127 100644 --- a/src/git.h +++ b/src/git.h @@ -39,9 +39,9 @@ enum ESI SI_SNES = 7, SI_SNES_MOUSE = 8, SI_VIRTUALBOY = 9, - SI_REAL_ZAPPER = 10, + SI_LCDCOMP_ZAPPER = 10, - SI_COUNT = SI_REAL_ZAPPER + SI_COUNT = SI_LCDCOMP_ZAPPER }; inline const char* ESI_Name(ESI esi) @@ -58,7 +58,7 @@ inline const char* ESI_Name(ESI esi) "SNES Pad", "SNES Mouse", "Virtual Boy", - "Real Zapper" + "LCD Zapper (Advance)" }; if(esi >= SI_NONE && esi <= SI_COUNT) diff --git a/src/input.cpp b/src/input.cpp index 7906897c..00986885 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -65,7 +65,7 @@ extern INPUTC *FCEU_InitArkanoid(int w); extern INPUTC *FCEU_InitMouse(int w); extern INPUTC *FCEU_InitSNESMouse(int w); extern INPUTC *FCEU_InitVirtualBoy(int w); -extern INPUTC *FCEU_InitRealZapper(int w); +extern INPUTC *FCEU_InitLCDCompZapper(int w); extern INPUTCFC *FCEU_InitArkanoidFC(void); extern INPUTCFC *FCEU_InitSpaceShadow(void); @@ -484,8 +484,8 @@ static void SetInputStuff(int port) case SI_VIRTUALBOY: joyports[port].driver=FCEU_InitVirtualBoy(port); break; - case SI_REAL_ZAPPER: - joyports[port].driver = FCEU_InitRealZapper(port); + case SI_LCDCOMP_ZAPPER: + joyports[port].driver = FCEU_InitLCDCompZapper(port); break; case SI_NONE: case SI_UNSET: diff --git a/src/input/realzapper.cpp b/src/input/lcdcompzapper.cpp similarity index 66% rename from src/input/realzapper.cpp rename to src/input/lcdcompzapper.cpp index 93d80594..64be1b39 100644 --- a/src/input/realzapper.cpp +++ b/src/input/lcdcompzapper.cpp @@ -17,32 +17,32 @@ #include "share.h" -static uint32 realZapperStrobe[2]; -static uint32 realZapperData[2]; +static uint32 lcdCompZapperStrobe[2]; +static uint32 lcdCompZapperData[2]; -static uint8 ReadRealZapper(int w) +static uint8 ReadLCDCompZapper(int w) { - return realZapperData[w]; + return lcdCompZapperData[w]; } -static void StrobeRealZapper(int w) +static void StrobeLCDCompZapper(int w) { - realZapperStrobe[w] = 0; + lcdCompZapperStrobe[w] = 0; } -void UpdateRealZapper(int w, void* data, int arg) +void UpdateLCDCompZapper(int w, void* data, int arg) { // In the '(*(uint32*)data)' variable, bit 0 holds the trigger value and bit 1 holds the light sense value. // Ultimately this needs to be converted from 0000 00lt to 000t l000 where l is the light bit and t // is the trigger bit. - realZapperData[w] = ((((*(uint32*)data) & 1) << 4) | + lcdCompZapperData[w] = ((((*(uint32*)data) & 1) << 4) | (((*(uint32*)data) & 2) << 2)); } -static INPUTC RealZapperCtrl = { ReadRealZapper,0,StrobeRealZapper,UpdateRealZapper,0,0 }; +static INPUTC LCDCompZapperCtrl = { ReadLCDCompZapper,0,StrobeLCDCompZapper,UpdateLCDCompZapper,0,0 }; -INPUTC* FCEU_InitRealZapper(int w) +INPUTC* FCEU_InitLCDCompZapper(int w) { - realZapperStrobe[w] = realZapperData[w] = 0; - return(&RealZapperCtrl); + lcdCompZapperStrobe[w] = lcdCompZapperData[w] = 0; + return(&LCDCompZapperCtrl); } diff --git a/vc/vc14_fceux.vcxproj b/vc/vc14_fceux.vcxproj index 910c729e..f6ffe04d 100644 --- a/vc/vc14_fceux.vcxproj +++ b/vc/vc14_fceux.vcxproj @@ -710,7 +710,7 @@ - + diff --git a/vc/vc14_fceux.vcxproj.filters b/vc/vc14_fceux.vcxproj.filters index eb74f269..913c212a 100644 --- a/vc/vc14_fceux.vcxproj.filters +++ b/vc/vc14_fceux.vcxproj.filters @@ -1105,7 +1105,7 @@ input - + input From 7afaf912074c60387cded2c5fecc2f5f69442928 Mon Sep 17 00:00:00 2001 From: mike Date: Sat, 26 Sep 2020 17:08:58 -0600 Subject: [PATCH 003/234] Famicom Disk Sytem -> System --- web/files/toc.htm | 4 ++-- web/files/{A0A52F84-8356-433D-A49D-1D12B1D6468C}.htm | 4 ++-- web/help/AVICapturing.html | 6 +++--- web/help/CustomizingthroughtheConfigFil.html | 2 +- ...{FamicomDiskSytem.html => FamicomDiskSystem.html} | 6 +++--- web/help/General.html | 2 +- web/help/NES.html | 4 ++-- web/help/js/searchdata.js | 2 +- web/help/toc.html | 12 ++++++------ 9 files changed, 21 insertions(+), 21 deletions(-) rename web/help/{FamicomDiskSytem.html => FamicomDiskSystem.html} (96%) diff --git a/web/files/toc.htm b/web/files/toc.htm index def4976c..448706c4 100644 --- a/web/files/toc.htm +++ b/web/files/toc.htm @@ -30,7 +30,7 @@ d.add(15, 13,'Game file compatibility','{54E785A1-1E42-4B8F-B3E2-94BAA91750B9}.htm'); d.add(16, 13,'Command Line Options','{CFE4B1D4-9F19-48C4-B8A9-4EBEA543848F}.htm'); d.add(17, 13,'Customizing through the Config File','{C1B705BD-753D-42AA-AE8B-4B49E7DD9836}.htm'); - d.add(18, 13,'Famicom Disk Sytem','{A0A52F84-8356-433D-A49D-1D12B1D6468C}.htm'); + d.add(18, 13,'Famicom Disk System','{A0A52F84-8356-433D-A49D-1D12B1D6468C}.htm'); d.add(19, 13,'AVI Capturing','{A1A11C4E-B38E-471A-86EE-727D152EB764}.htm'); d.add(20, 13,'Movie Recording','{695C964E-B83F-4A6E-9BA2-1A975387DB55}.htm'); d.add(21, 13,'NES Menu','{996B4AA8-E645-4A12-86D8-E91CD8771A46}.htm'); @@ -94,4 +94,4 @@ - \ No newline at end of file + diff --git a/web/files/{A0A52F84-8356-433D-A49D-1D12B1D6468C}.htm b/web/files/{A0A52F84-8356-433D-A49D-1D12B1D6468C}.htm index f5e9b57b..f8a175df 100644 --- a/web/files/{A0A52F84-8356-433D-A49D-1D12B1D6468C}.htm +++ b/web/files/{A0A52F84-8356-433D-A49D-1D12B1D6468C}.htm @@ -1,5 +1,5 @@ -Famicom Disk Sytem +Famicom Disk System + + + + + + + + +
+ +

+

What's New? 2.3.0

+

Released -- 14 December 2020

+


+


+

The 2.3.0 release includes 4 years worth of improvements and bug fixes.

+


+

Common

+
    +
  • 64 bit build support
  • +
+


+

Emulation

+
    +
  • Added Mapper 111 cheapocabra
  • +
  • Added Mapper 190
  • +
  • Added RAM Init Options: default (00 00 00 00 FF FF FF FF as always), all FF, all 00, random.
  • +
  • New UNIF mappers
  • +
+


+

Lua

+
    +
  • Various improvements and bug fixes to pre-existing functions
  • +
  • Fix parsing of lua colors over 0x80000000 on 32bits systems
  • +
  • Lua write callbacks: adding optional third parameter to retrieve the value written, added Sprites.lua script to visualize sprites
  • +
+


+

New Lua functions:

+
    +
  • emu.exit()
  • +
  • rom.getfilename()
  • +
+


+

Win32

+
    +
  • Various GUI improvements and bug fixes
  • +
+


+

Debugger

+
    +
  • Added memory read/write conditional breakpoint capability.
  • +
  • Added illegal opcode support for breakpoints.
  • +
  • Support for 'S' register in conditional debugger breakpoints
  • +
+


+

Trace Logger

+
    +
  • Added bank number log option
  • +
+


+

CDLogger

+
    +
  • Fix Fixed VRAM data logging glitch
  • +
+


+

Hex Editor

+
    +
  • Added OAM view feature
  • +
  • Bookmark fixes for all view region types
  • +
  • Prevent middle mouse button from attempting to "FreezeRam" when not in RAM mode
  • +
+


+

SDL

+
    +
  • GUI completely rewritten using Qt5. Replaces old GTK GUI.
  • +
  • New Qt GUI now contains most of the debug tools that previously only existed in windows version.
  • +
+


+


+


+


+

+

Created with the Personal Edition of HelpNDoc: Easily create Web Help sites

+
+ + + + + + diff --git a/web/help/toc.html b/web/help/toc.html index e614d793..8e4fa56c 100644 --- a/web/help/toc.html +++ b/web/help/toc.html @@ -231,6 +231,12 @@ target="FrameMain"> FCE Ultra Version History +
  • + + What's New? 2.3.0 (changelog) +
  • Date: Mon, 14 Dec 2020 22:14:01 -0500 Subject: [PATCH 221/234] Fix for WhatsNew230 Table of Contents reference --- web/help/WhatsNew230.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/help/WhatsNew230.html b/web/help/WhatsNew230.html index c70f7809..92489e80 100644 --- a/web/help/WhatsNew230.html +++ b/web/help/WhatsNew230.html @@ -28,7 +28,7 @@ } else if (top && top.FrameTOC && top.FrameTOC.SelectTocItem) { - top.FrameTOC.SelectTocItem("WhatsNew223"); + top.FrameTOC.SelectTocItem("WhatsNew230"); } }); From f852fd2799a799ff080a998dc154d2d78a8c740c Mon Sep 17 00:00:00 2001 From: Matt Budd Date: Wed, 16 Dec 2020 06:41:37 -0500 Subject: [PATCH 222/234] Regeneration of help files using helpndoc 7.0.0.199 --- vc/Help/fceux.hnd | Bin 1556480 -> 1769472 bytes web/help/6502CPU.html | 3401 +++++++++-------- web/help/AVICapturing.html | 365 +- web/help/AutoFireConfigurations.html | 351 +- web/help/CheatSearch.html | 519 ++- web/help/CodeDataLogger.html | 577 ++- web/help/CommandLineOptions.html | 677 ++-- web/help/Commands.html | 705 ++-- web/help/Config.html | 423 +- web/help/ContextMenuItems.html | 575 ++- web/help/Covertfcm.html | 333 +- web/help/CustomizingthroughtheConfigFil.html | 419 +- web/help/Debug.html | 395 +- web/help/Debugger.html | 765 ++-- web/help/Directories.html | 429 ++- web/help/FAQGuides.html | 365 +- web/help/FCEUltraVersionHistory.html | 475 ++- web/help/GUI.html | 417 +- web/help/GameGenieEncoderDecoder.html | 385 +- web/help/Gamefilecompatibility.html | 377 +- web/help/General.html | 369 +- web/help/Gettingstarted.html | 397 +- web/help/HexEditor.html | 436 ++- web/help/Input.html | 423 +- web/help/Intro.html | 335 +- web/help/Introduction.html | 403 +- web/help/LuaBot.html | 615 ++- web/help/LuaFunctionsList.html | 1874 ++++----- web/help/LuaGettingStarted.html | 391 +- web/help/LuaPerks.html | 423 +- web/help/LuaScripting.html | 375 +- web/help/MapHotkeys.html | 337 +- web/help/MemoryWatch.html | 443 ++- web/help/MovieOptions.html | 413 +- web/help/MovieRecording.html | 491 ++- web/help/Movieformats.html | 337 +- web/help/NES.html | 417 +- web/help/NESProcessor.html | 341 +- web/help/NESRAMMappingFindingValues.html | 735 ++-- web/help/NESScrolling1.html | 429 ++- web/help/NESScrolling2.html | 369 +- web/help/NESSound.html | 1421 ++++--- web/help/NLFilesFormat.html | 413 +- web/help/NSFFormat.html | 993 +++-- web/help/NameTableViewer.html | 369 +- web/help/NetworkPlay.html | 333 +- web/help/Newtopic.html | 330 ++ web/help/Overview.html | 333 +- web/help/OverviewofIncludedScripts.html | 426 ++- web/help/PPU.html | 911 +++-- web/help/PPUViewer.html | 378 +- web/help/Palette.html | 413 +- web/help/PaletteOptions.html | 393 +- web/help/RAMSearch.html | 343 +- web/help/RAMWatch.html | 333 +- web/help/ROMHacking.html | 373 +- web/help/Sound.html | 335 +- web/help/SoundOptions.html | 415 +- web/help/TASEditor.html | 343 +- web/help/Technicalinformation.html | 329 +- web/help/TextHooker.html | 511 ++- web/help/Timing.html | 363 +- web/help/ToggleSwitchesHideMenuetc.html | 587 ++- web/help/ToolAssistedSpeedruns.html | 431 ++- web/help/Tools2.html | 397 +- web/help/TraceLogger.html | 379 +- web/help/Troubleshooting.html | 433 ++- web/help/Video.html | 513 ++- web/help/WhatsNew200.html | 533 ++- web/help/WhatsNew201.html | 349 +- web/help/WhatsNew202.html | 509 ++- web/help/WhatsNew203.html | 429 ++- web/help/WhatsNew210.html | 669 ++-- web/help/WhatsNew211.html | 489 ++- web/help/WhatsNew212.html | 449 ++- web/help/WhatsNew213.html | 441 ++- web/help/WhatsNew214.html | 535 ++- web/help/WhatsNew215.html | 473 ++- web/help/WhatsNew220.html | 681 ++-- web/help/WhatsNew221.html | 549 ++- web/help/WhatsNew222.html | 567 ++- web/help/WhatsNew223.html | 593 ++- web/help/_keywords.json | 1 + web/help/_toc.json | 1 + web/help/_translations.js | 11 + web/help/css/effects.min.css | 5 + web/help/css/hnd.content.css | 755 ++++ web/help/css/layout.min.css | 5 + web/help/css/print.min.css | 5 + web/help/css/theme-dark-blue.min.css | 5 + web/help/css/theme-dark-green.min.css | 5 + web/help/css/theme-dark-orange.min.css | 5 + web/help/css/theme-dark-purple.min.css | 5 + web/help/css/theme-light-blue.min.css | 5 + web/help/css/theme-light-green.min.css | 5 + web/help/css/theme-light-orange.min.css | 5 + web/help/css/theme-light-purple.min.css | 5 + web/help/fceux.html | 316 +- web/help/fcm.html | 379 +- web/help/fcs.html | 631 +-- web/help/fm2.html | 723 ++-- web/help/js/app.min.js | 6 + web/help/js/context/0.html | 14 + web/help/js/context/1.html | 14 + web/help/js/context/10.html | 14 + web/help/js/context/11.html | 14 + web/help/js/context/12.html | 14 + web/help/js/context/13.html | 14 + web/help/js/context/14.html | 14 + web/help/js/context/15.html | 14 + web/help/js/context/16.html | 14 + web/help/js/context/17.html | 14 + web/help/js/context/18.html | 14 + web/help/js/context/19.html | 14 + web/help/js/context/2.html | 14 + web/help/js/context/20.html | 14 + web/help/js/context/21.html | 14 + web/help/js/context/22.html | 14 + web/help/js/context/23.html | 14 + web/help/js/context/24.html | 14 + web/help/js/context/25.html | 14 + web/help/js/context/26.html | 14 + web/help/js/context/27.html | 14 + web/help/js/context/28.html | 14 + web/help/js/context/29.html | 14 + web/help/js/context/3.html | 14 + web/help/js/context/30.html | 14 + web/help/js/context/31.html | 14 + web/help/js/context/32.html | 14 + web/help/js/context/33.html | 14 + web/help/js/context/34.html | 14 + web/help/js/context/35.html | 14 + web/help/js/context/36.html | 14 + web/help/js/context/37.html | 14 + web/help/js/context/38.html | 14 + web/help/js/context/39.html | 14 + web/help/js/context/4.html | 14 + web/help/js/context/40.html | 14 + web/help/js/context/41.html | 14 + web/help/js/context/42.html | 14 + web/help/js/context/43.html | 14 + web/help/js/context/44.html | 14 + web/help/js/context/45.html | 14 + web/help/js/context/46.html | 14 + web/help/js/context/47.html | 14 + web/help/js/context/48.html | 14 + web/help/js/context/49.html | 14 + web/help/js/context/5.html | 14 + web/help/js/context/50.html | 14 + web/help/js/context/51.html | 14 + web/help/js/context/52.html | 14 + web/help/js/context/53.html | 14 + web/help/js/context/54.html | 14 + web/help/js/context/55.html | 14 + web/help/js/context/56.html | 14 + web/help/js/context/57.html | 14 + web/help/js/context/58.html | 14 + web/help/js/context/59.html | 14 + web/help/js/context/6.html | 14 + web/help/js/context/60.html | 14 + web/help/js/context/61.html | 14 + web/help/js/context/62.html | 14 + web/help/js/context/63.html | 14 + web/help/js/context/64.html | 14 + web/help/js/context/65.html | 14 + web/help/js/context/66.html | 14 + web/help/js/context/67.html | 14 + web/help/js/context/68.html | 14 + web/help/js/context/69.html | 14 + web/help/js/context/7.html | 14 + web/help/js/context/70.html | 14 + web/help/js/context/71.html | 14 + web/help/js/context/72.html | 14 + web/help/js/context/73.html | 14 + web/help/js/context/74.html | 14 + web/help/js/context/75.html | 14 + web/help/js/context/76.html | 14 + web/help/js/context/77.html | 14 + web/help/js/context/78.html | 14 + web/help/js/context/79.html | 14 + web/help/js/context/8.html | 14 + web/help/js/context/80.html | 14 + web/help/js/context/81.html | 14 + web/help/js/context/82.html | 14 + web/help/js/context/83.html | 14 + web/help/js/context/84.html | 14 + web/help/js/context/9.html | 14 + web/help/js/hnd.js | 1 - web/help/js/hndjsse.js | 1 - web/help/js/hndsd.min.js | 1 + web/help/js/hndse.min.js | 6 + web/help/js/jquery-ui-1.8.12.custom.min.js | 68 - web/help/js/jquery-ui-1.8.17.custom.min.js | 106 - web/help/js/jquery.cookie.js | 97 - web/help/js/jquery.dynatree.min.js | 270 -- web/help/js/jquery.min.js | 4 - web/help/js/jquery.treeview.min.js | 15 - web/help/js/polyfill.object.min.js | 1 + web/help/js/searchdata.js | 1 - .../bootstrap-3.4.1/js/bootstrap.min.js | 6 + .../js/ie10-viewport-bug-workaround.js | 23 + .../vendors/headroom-0.11.0/headroom.min.js | 7 + .../vendors/html5shiv-3.7.3/html5shiv.min.js | 4 + .../imageMapResizer.min.js | 8 + .../vendors/interactjs-1.9.22/interact.min.js | 3 + web/help/vendors/jquery-3.5.1/jquery.min.js | 2 + web/help/vendors/jstree-3.3.10/jstree.min.js | 6 + .../vendors/markjs-8.11.1/jquery.mark.min.js | 7 + web/help/vendors/respond-1.4.2/respond.min.js | 5 + web/help/vendors/uri-1.19.2/uri.min.js | 138 + 210 files changed, 32681 insertions(+), 14537 deletions(-) create mode 100644 web/help/Newtopic.html create mode 100644 web/help/_keywords.json create mode 100644 web/help/_toc.json create mode 100644 web/help/_translations.js create mode 100644 web/help/css/effects.min.css create mode 100644 web/help/css/hnd.content.css create mode 100644 web/help/css/layout.min.css create mode 100644 web/help/css/print.min.css create mode 100644 web/help/css/theme-dark-blue.min.css create mode 100644 web/help/css/theme-dark-green.min.css create mode 100644 web/help/css/theme-dark-orange.min.css create mode 100644 web/help/css/theme-dark-purple.min.css create mode 100644 web/help/css/theme-light-blue.min.css create mode 100644 web/help/css/theme-light-green.min.css create mode 100644 web/help/css/theme-light-orange.min.css create mode 100644 web/help/css/theme-light-purple.min.css create mode 100644 web/help/js/app.min.js create mode 100644 web/help/js/context/0.html create mode 100644 web/help/js/context/1.html create mode 100644 web/help/js/context/10.html create mode 100644 web/help/js/context/11.html create mode 100644 web/help/js/context/12.html create mode 100644 web/help/js/context/13.html create mode 100644 web/help/js/context/14.html create mode 100644 web/help/js/context/15.html create mode 100644 web/help/js/context/16.html create mode 100644 web/help/js/context/17.html create mode 100644 web/help/js/context/18.html create mode 100644 web/help/js/context/19.html create mode 100644 web/help/js/context/2.html create mode 100644 web/help/js/context/20.html create mode 100644 web/help/js/context/21.html create mode 100644 web/help/js/context/22.html create mode 100644 web/help/js/context/23.html create mode 100644 web/help/js/context/24.html create mode 100644 web/help/js/context/25.html create mode 100644 web/help/js/context/26.html create mode 100644 web/help/js/context/27.html create mode 100644 web/help/js/context/28.html create mode 100644 web/help/js/context/29.html create mode 100644 web/help/js/context/3.html create mode 100644 web/help/js/context/30.html create mode 100644 web/help/js/context/31.html create mode 100644 web/help/js/context/32.html create mode 100644 web/help/js/context/33.html create mode 100644 web/help/js/context/34.html create mode 100644 web/help/js/context/35.html create mode 100644 web/help/js/context/36.html create mode 100644 web/help/js/context/37.html create mode 100644 web/help/js/context/38.html create mode 100644 web/help/js/context/39.html create mode 100644 web/help/js/context/4.html create mode 100644 web/help/js/context/40.html create mode 100644 web/help/js/context/41.html create mode 100644 web/help/js/context/42.html create mode 100644 web/help/js/context/43.html create mode 100644 web/help/js/context/44.html create mode 100644 web/help/js/context/45.html create mode 100644 web/help/js/context/46.html create mode 100644 web/help/js/context/47.html create mode 100644 web/help/js/context/48.html create mode 100644 web/help/js/context/49.html create mode 100644 web/help/js/context/5.html create mode 100644 web/help/js/context/50.html create mode 100644 web/help/js/context/51.html create mode 100644 web/help/js/context/52.html create mode 100644 web/help/js/context/53.html create mode 100644 web/help/js/context/54.html create mode 100644 web/help/js/context/55.html create mode 100644 web/help/js/context/56.html create mode 100644 web/help/js/context/57.html create mode 100644 web/help/js/context/58.html create mode 100644 web/help/js/context/59.html create mode 100644 web/help/js/context/6.html create mode 100644 web/help/js/context/60.html create mode 100644 web/help/js/context/61.html create mode 100644 web/help/js/context/62.html create mode 100644 web/help/js/context/63.html create mode 100644 web/help/js/context/64.html create mode 100644 web/help/js/context/65.html create mode 100644 web/help/js/context/66.html create mode 100644 web/help/js/context/67.html create mode 100644 web/help/js/context/68.html create mode 100644 web/help/js/context/69.html create mode 100644 web/help/js/context/7.html create mode 100644 web/help/js/context/70.html create mode 100644 web/help/js/context/71.html create mode 100644 web/help/js/context/72.html create mode 100644 web/help/js/context/73.html create mode 100644 web/help/js/context/74.html create mode 100644 web/help/js/context/75.html create mode 100644 web/help/js/context/76.html create mode 100644 web/help/js/context/77.html create mode 100644 web/help/js/context/78.html create mode 100644 web/help/js/context/79.html create mode 100644 web/help/js/context/8.html create mode 100644 web/help/js/context/80.html create mode 100644 web/help/js/context/81.html create mode 100644 web/help/js/context/82.html create mode 100644 web/help/js/context/83.html create mode 100644 web/help/js/context/84.html create mode 100644 web/help/js/context/9.html delete mode 100644 web/help/js/hnd.js delete mode 100644 web/help/js/hndjsse.js create mode 100644 web/help/js/hndsd.min.js create mode 100644 web/help/js/hndse.min.js delete mode 100644 web/help/js/jquery-ui-1.8.12.custom.min.js delete mode 100644 web/help/js/jquery-ui-1.8.17.custom.min.js delete mode 100644 web/help/js/jquery.cookie.js delete mode 100644 web/help/js/jquery.dynatree.min.js delete mode 100644 web/help/js/jquery.min.js delete mode 100644 web/help/js/jquery.treeview.min.js create mode 100644 web/help/js/polyfill.object.min.js delete mode 100644 web/help/js/searchdata.js create mode 100644 web/help/vendors/bootstrap-3.4.1/js/bootstrap.min.js create mode 100644 web/help/vendors/bootstrap-3.4.1/js/ie10-viewport-bug-workaround.js create mode 100644 web/help/vendors/headroom-0.11.0/headroom.min.js create mode 100644 web/help/vendors/html5shiv-3.7.3/html5shiv.min.js create mode 100644 web/help/vendors/imageMapResizer-1.0.10/imageMapResizer.min.js create mode 100644 web/help/vendors/interactjs-1.9.22/interact.min.js create mode 100644 web/help/vendors/jquery-3.5.1/jquery.min.js create mode 100644 web/help/vendors/jstree-3.3.10/jstree.min.js create mode 100644 web/help/vendors/markjs-8.11.1/jquery.mark.min.js create mode 100644 web/help/vendors/respond-1.4.2/respond.min.js create mode 100644 web/help/vendors/uri-1.19.2/uri.min.js diff --git a/vc/Help/fceux.hnd b/vc/Help/fceux.hnd index 11113601a439c9cbb9367ac98817fcb9d29b50d4..4131cbed776fa9fe028394640cf3892cdd158550 100644 GIT binary patch delta 81665 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 delta 48614 zcmeFa30M@z)-c>XJ=4?EJu^KkGd%(hhzlqPDDKMuB4QN5U84f-8W&VFnnf90ViKd6 ziJmM*F{?3&!5Hmq8oWz#lba}JPp(nSzL<#F7Zd+e)x$D?iQf19p6CCc@6WxoP<5*6 z)Tydd=bSoqs=Rzbd3jM~J9|HdVQ*jbv4vpUD`PoXoDD3W||U3MKpyqZS)k7Yo$_+m{tXhoy9g zHn9nkR53y@#${x%>(XHN+iVnUew!8GmNyaB1a)t-U9^PbZ?bnoy^%FTjgjR;HC#_~ zB6Ev_H^z1B$cCoUqLwmdF;mLSV`ebR7$YsLK6HyNfrUSA)g{1-I(BSmi!}-AH|fmk zE1Pr$tUM1PS73={_%oeZ03{sjHg;jsm_)`8CthcrFmtnRQ0Ogj1!-3gU%bb5i$J3n zRK39_LCU+V$d5AeaZ5Uej!G$T?|PjTKD|k2m4u2|gE4O4Kz40Ts6gQiZgpCrw10X!91Dl@p!^AB*n}GNsjuZ4q$nlaP zxPUdrB_^_KO`%wGCswD`U1DAdH8<-L!oXv6p-fA@n_;YW965_%p~JY0k>8S+9k3VA zk@;esJ|h?tS~+-%A(7=W(n9YKP7-wTaYp`3K7PPn`FA;Vd{l4!BaHkA7T6_Q$FY_m zRuh9Y2@C`F!(0~6q$2rx9k^Izu=O;_Z(tU?jLZ`GUHJ|9tb88p`cVErI3U=J*YG2}y9US51gMAkUEz_ChI5G>EnM@G_d!QpPKbzUpT<|qtG=29pMt^^kX$3y@#p%;z^OpQ2%{(X43%kON}It7bp ze(OOl8)@KZO#@P6v-U$f4u>g_U~knt1k$)ndt>v=T&4`^wm>6-trZ#+JOYh^L@!cd zgxm@Z3W^;Ik3?wtk+kqQSP{0xIGlMe)6#^*3}!CW%+X`LeoHG9LI@jyL0k&KV7M7; zZ7~iA*@OW6k<4``7zCoHN`}5TxVboti^x#oTq(nU3&`*TsV=riG?3wM2{Az%ehT9c z#+vwnL7dw|u!;jGG=T8e}T9Kx=i>i-WxF8S1Ry1|40m4LR~jU!?aYrIka<0 z3fnjI+7gdDjp@VmWioI{kVVl0f9uQK5L&X_9WpPS;%p-~bpFOEEP&p;O5At)IQ8B2neQP_tvTn6Mj41aJYFxgB$W(w0hXG-HNQIAYa zH}Hluq)*JFVV#-NX9~(OS zjtI9OU^-huoHcw|L#G!#5gY`4J%wr8Bv6icF1ZE-LWAVEX{~b#C!7Sw1 z8Y;rX#W&J*yre!cLwPMP>gKqkd>Fp~YNxAklMvO~aJ z$42X{UqhEVwwuoS6O656NSY@}6Pe%)xNTJ;}QYcOc7lJc$bOCs6p>85L9+09{n}_ct zhC2>(zsE*l zLiTw4?Xdy)+u$+y>05}OJ_Y#cH3~n5eEjG~Ajr2@;pfxg_&Jq}pAT~I^JX@FUMCbf z9>C9QgYom~ApHCTyRe3N1m_X+Fp`*gus440CG>=z__+-+VK$`TXFVZ)MG}6>6Y+C> zXZ&2-2|p_m@Ke?SKTG2Avp5bv3)|yoK`ege;&3su+u^6!ho7rG_!;BGPa)Z&M%nO_ zKUl`^RaX2ACp%WI89$j4e)^m6)5nOPoAW)5~K*--Z_JCx7V za_HzS_>LU~6Wz)HHXR0i&)&+VA!zxpN;aDdwjbCNe18pizvK%*=O5Xj>`++rBes{1 zaGTC3+1wcX8wUS`br06SPun~Jb~L>D6GG;Z8mqZ%b;8fAmu34w=`UFCNDZ(m zTOWX%e#LqV;n=STJp!TAE^^u2aQtO;J(tang{t2$BOCwzL&c2o_>1jTY;eg1Y;b^9 zPyJ3`fGvPOE+FJM1i0`cmkl@n&Tirc;$KUSd9%4;_{;I%b9_?Y%V~4IgCwY zLCQt!JK{t!)pfS0tW77{V#df_?>etL{$rAoD89h7U-=**1Yp z=saBM-FF(wVVIpQ5{qS;h+G%aI^rVv&#i_4q&wJ2VyTtpOvRiND-k@($<7n!T4>@( zQpYn0`HGX>ElxAj#J-sLbqX5*bp+=8=wc^`WfIMqg*o-PNWV3kG3Q-3yHK1g(wsER zDV)lcLv0j0Mx1MEtUblUo)KpY^lyT3ToD58^RNzh%*&1xCmS1!ztCL?z}`t%F=h*} zNnx)NXY-8(*W81+PxoP0=No8ZA=b9$dQ2SAj-4Sc($mCAn7H*NZvcL6$384|8jMi|yTYGk(U$vM-2pSy~Gr%ZYVZbya&duLC<~EG~r6 zxX9T;WEgA#E<$#ct=S^ETE#{3m~3PxYjdM~u{WS|TMn>(&gK)iu?#m>pRK>sctS`r zU1cq{?zhe$qCRrT0c=~cKA@~`7B62a9W8NfO1+L!$`gq+ zS`AKQ2&*;eCo=kph9CHR;}gP<(mC@a%dgg;^(yNQIhnn{cF=Yo1f>537kQ0wnaOO$ zl6i0pH%{1+&x!EPP|n7-gTe}(4-EJ_Np(PX^4kmfoB$JZxgv4A#~7EF!B(WrgYp39 z)-=A=qp*1YQJjnQX~j?HapuOX^w9H05x%)uXNKadI3B(n#YIWMf+%BL-;QiWPPn3f zUByMQO0(jI5nLzIrVA#FKs;8Bz~4ww-GnBU)Fo9+lc>tJE~gA-Khz7ES#Tl;yY#6Z z`LUU5S7eIYa8YtX=rO(&K7F0F!Xi{nq0-1kN2rK~wpK{n+VKB&(?m(G7-B~1=CNy6 zY5H~Y>uf43lRk6-{M`YiM5`XTL5GTQSijbj?xZyS*`RK(UtytSxn+51rzIZpSR{sx z5<^|hvMwDIaLD)Wvna=0j2dzIe@Bj8t4soODUY8TSBsWELK z0zRICpTut{w9t@K_!+kN+b6VgW3xm;6~5u`^Xm|Z?v6Wtro{~rIrj|2iXZ%*=I9%8 zXvOW52^w5u+Dnw$x`w|gO*j6BBP3xX5^G=Q76foyi--U`jR?h4yWnSvi;Oud|3*f# zRQ}C8RGNT${T5-5@dSUCw;Q_XGq@?bJZMvhP|u zILv7GXiR%yF$x=xoHk4#qUxQPL&RDN-FpQWFit|%r39@CyDu8DutGVq!fQvf@5Up2P7Q$BJ;@MMI`7I9;SbM4zBQFRa2kmrY>D%VSM6M`_4OTYz{RUxvjeO=O43 zGXj1gskPi<8Djp! z{Iq$QIa&Hl+AUozxka>%rP@WP_Ok})v6$TiX{QVUb>n>YalLwUF`MmwSYM?}ZDmPI z3+Sxd8O}n~CZ?;LVM(&QVNos9ES&ivbGG!pv|O@@*O*>4B@3I3pBabokMM$Fu>J;4 z)qSh$%FbnW;S?=$;!3N)9h6Ps2f=`xEXXyA#L zz&`??_W$XiL3g?w;=r0zPNR-HIoKYpQjz#;hDT%AJ_u)$4LNQl7=t#cw%`oZEEe+L zn&b9f5{N^C7;ODXpX>GoJMcujZ%$sVK{T2X8&+8U2%R{b?H=70cEltYiJY^ob_rNB z+#HvJX+q7_7HXuL)|j#VL;KITLd9on)Cz~&`2I5q^j9M{*MN!+8``lZKJ>|L0ah34 zxOqD6&1qjohvMH43^q(QWMF=C8&iXMY6!KL4MCGn2L6v>65BwC%=Fgyc!_Z#DL9Z1 zu8Jfru?jbzDe%%deS4^QipwOXhh1$Dg*4DWlN>a(bh(oC&^L}KS)A2{Uv`8%#rmw( zCA}l%i1&(&X_oM+(BHU?KgW+SJZiA&mvXgSy6z74Bs+i!;mW?+80?JNoR9~_AE6=Q z;%{6mbQ@p@2!UWMrn4DT^M>nhR!qiWXgpesbBat(AvM^GObPqV&c7#5A?Qi9PW zJxxnr{WIr;*>;q)k|WaVFJStiAM^pCThLG7`)cs-{mywH{Y!5a?<1+nTIw}|&rZfs zND8*YWK+2En~XjOO->B9$7CT~hqIk8iX=;2f^j67tTZTHs0@W?4OrmqTLMBeE%fH$fG~n$FQjS7o^R3ihLa-8)QR9imM7SwP%e7+J1zzW zIoW`u1c?!YRT{E*F`vm{#z5f*T$UJYQS7xCUksd#G6W<~Fo_f!*-#8(7ArEW{0!Us z`y741><;DM zV?eMJnl>q%cGEmV7ZksV$dwUJdUK2+3Qb8QDKVUMu#mF}UYe8~PP$=(!69hkcAS>v znnBI~%g`=u4|bx!c}Ub%hIR1WPD8Zdr%40D<*(jk@Cm6jX)1-7?1UR0}b)#B8s&pB;*k~BOPB(}3H^EXRa!mlu1{c=p z7KjzG?Tm4Sc<`DAB}2F&Z2LyY;hG6x-Uzfpp!V;A@?5SLS0Vb~;z(`+s*2QHf%XO~ ztjXtY5i1rs=sELxH&jb(JnPo<%ySZ&W;f~ZG<%}X1s9B{_daZ9N020!c2xV$`>Y$! zkiUMP&38owtu9ob6IndV!hM|_G_HiRYjuh|m;OnPG>N&vqqY9^T3tU&A`>id(@s>l z=Rx-hT^yuT=;9&AiW+=Tg>Ev^Bl>?}_K<@AYo?d~-ukmZ(Rw&CY&SxiN)nm{8cas{ zbj)w#(Oi(9ix!}IG}qXEARKA7oMxSF37P*P{h&tGa&;2N;HJ0#2k&s`{EIh8*yGG# z9`alAKNbpaLp?L~6K@dD2-q1=@P_x_$iM2>uAGv%Rb|1^P9$B&AhNjO4pASE4e3i!%Y`V zlX2=VW5r+xY#slf$-?=GXfxll&N~Q9tGQ@XPqGaJEhWgwuj7Jnel^$4l&Ym6E2L?a zt8jWI|8DS_=r)WxXgH(Ojhxry(12sYX-_QSL{m2{4LL(Y1qmjXmWDi$rsdzjnN4)- z3R-ZP)3kyzPH0&lrs?6xN{-jIz@R0E0&n$X(i6nFC~YidxL`z!TcPK2&SfHf#;#?W zNbOtW#^O;`88M+T(n$sfqA#l_f}OT+HFfHXa|VwXjO>*&tT`k9Zb1UxcaLY|#b5+*m0(%TBsAnkx5(W})KgiI?_g4c z7ThGTf-Yh(UTY2iZlIRh)tZ-Ce3mb) zo8%sHkI;?FX2}^$FFY0OgI{vi+%t3zPmx=sF{z>MW$jx*7OieKtQ91lET=I&nHx~@ zCRDtVlh|xy^F!R$N4#yH1h+ad?h*X&&YpV*|Lf!K2`DXba?UHLtu!3vC&l4$Ju?Q+ zp7W4jr&6-CIEGgrP1R3jJG3U@4NN>OnU5@;u=X@~JVT!h#p!yzz16`#tQqI?z@~J) z7xdY_R20#R`szKfcZ#ncI}mmUd`fyleQ9)1kV*Bsd?$s=@p<@b&xtE>#K?4BzI#Xf z6*!Gti8G4-@_k$`iJsTLWmw6#=f5#-75WHgOizkI zX}DQ2*I6F4mdd@GJhuLi`)qkz_-yS+K%X1c-n3B72X-#`(Xu_D*QdC3c1CB{J;^z_ zrTW484-Gf*pyaJEJEAVr4 zU6~7|%dfO@$7{4hHabS4Xn`)2t^^+%KVu@+iw4`|>-9ri3B>x^0s#WqY%(lF(PcU_kJy5?7b}Kj<2lB7PI%UI zvzRU!rG4gc7Ki2EC_?4(U-FrT1^R#LW4RLD9`-Y~8?y}ALZ&O&E0Yh-LoUk`F$;{|y3H+{-H< zq3a4q=SqhD$|u(UbRu8r!nx9gc}44<2py?W$ZF(FYq>==UodA#tHqZ^t7#OT+8s9v ze1F4I{lnZ@E=RXhm&xA3yunOI{*q!`Ji#y(msbe3bO|Lb!3EcIJRh7C$<^pQZ{K`{ z6CdOms96vV{94pZmNLtMjbev5dyeCSQ_&vXa+S1EdIGBCGf^p@iyk}~bp86S9&1R$ z**}b$qDEr=96UA5!gjPZh3k7v8|xccZky{H!AG|Srw;sW!Xxu6ybR_ULzt(=oQ4&& zUal>9b3stwHN3iqj>2Qf7ONY8 zyjRRaZ}(M=e6&vSZ-j^cBvSc8a5S}W1axPJObg8%@D)uh9?jOXQCkut#f0jrMV0@+GX@o!;H|G%@f(_p{-jM#ZH)J7>FQ4aDZl`9MR(D z1CghqO;Zfy?7QU^3Ob<(fLGG$XbCVO^xENEuc+bBiq+7PW3{RyGe5T(=dBv^up!u0K zUPho=a)uLmdgWg@|Ee4L|l_x%+Cz-Gy9xw9XCqv(tlvs!(U@eGJYZ4 zXPO{d#lK4{%$eptEYDeQko(F-C~EX@2GjUp39i`YocYXqiETNGprGt=w(XMRb6$cR zk*v45@6Z*xCgq{r-U`jgT{?99qa@9@C%$bgBm6r;3*PUjL3h5y&^O;>Lbd-%)Sx>C z+eRebO}X&7jXv;AL-Ap1X-}z2^>OkY_dI{)AqLZ6d8hp24Z`|)% zQ!zqMBog2v+R^Rt(h)oTN9%2^Jr&Vv$&N6POTk1f7b_GgWJLv;Uny;ngpAT^OxKV zY-6Kn?!1-jvR(qBX(Mr&+t^4*C6U{RB^Za+i`L_ZyKgh&1*E-#GrVmdv`Di5b+;qo ziQq|>-;lP}dTXkpY|G9f9)zx(ws>Y+1rlieLocg-YSW^l7Pu^UqQ()gD_3FLlO=)? z0$SKS6q(Gn)Y*L9-D2b=P>TRZ9ZwsAyvv$C zM2{x8^d3c+h==(d9R>8m44mP4eu**4cu*KC{9w9U>?^*@{LbE|`%srDtul8pzh_x( zjj=v2PeqZXv$KtbNR1)QSK?4-Tf*kNu3Q@~s_toRtbPUvaFeh(wT)IanC8vqxTjpQ zu4cUC>PxV&2-2dBqB9-0f=f)Pj;*!l0;)SlsO*%-55KI{$M!%YiX+CG)z;>V6Xh?} z^=#L$Hq;NI>9^KCTm#ym6aj6dxyy42h-Q>@w=pcFlE^`cY6B~VoC>r?%RQ!zMk#C~ zUhbGnfixlJZr284w3-OaT+zW~wCqK)3p$xS%?G!cWe?JR#}EnQgWb`j*G92+t&2tO z_T$oxa2lS(Q3iwxNL1~oeh{Z+dHYQ+;4l0*>h+e ze^v)_l$gE!XE6`Nv*-{}lWHChsc)F`w?Aim0H$3fSyaWqCyH?NYrJdr`U2g~?e#n_ z)G^j$hBRH>0ekA}|1Y`B@4NJ6emI}6JPz9z>#{dWHO#$@Y3${rYFQ5(yiv} zEc2{ca$?J?PRMUN{oi)c=}#^J9XDKU3$}T4=+YOB{^EwxU)^uI+UGc1cSGz6Tff5aSK z$cLK?vJCUXSkheI#^!d<(LJZFh1C`OY76K~`7#nCA{BqsYwP$tS?k^SS=c+I0AyMu z7ZmiA1oaM^v0FIz0RV{LOGFi1Y&Aib7MYB9S*xup?t9HS7&Iou- zwM;{ic^JcFAd2_K{xQ_pPNN7xG5C`{632b@N;%vyTi0JhH1==&DGNON79Rz^N`4yB zgq??N4^UU88aK-D;~z#BU=WpJf>2-e#5%s*r2d>}H1RP0ki`boW}6+LW7L)9#$mJp4=gKE zIz#y^T{lA?CIubs*q}aVyUon=XBqQD+*zbV9Tywi8ZU*X4O-GGb_|W|QMJiej-Kf! zUQ?nWt4Q%_1bOC8W3~~VNHS)Ce2qzf;+Ku>U`l~8nhfJV>lMD+dDT62#!i9R!gDi64HM=iV^%r^^d`uWCo6wz; zxef)$We~JGoZzKp|4d5^_BVf&3Pn0_1^{A&Tura}tua2&Z`j{mvVHgzNYn%vyk1ZKcd_Z^v zY)%h)hf88NwaV$4Vusq@9#OT{Ms?9?%abo+_##Aj93T6J!_s`@s-hz?j(rj@gPy$_ zF;3Dj&YRK<<8C}G?8jSG+c(CqSuoTX%W&Q0P$p$4V+>{3#C$`{Hj}j(O&%~uwov{f z(q!>uY#~K!;nm3vEqwW-@ofRVoE)Y&ozp#`aI=y_dOcF@^b{ObzPL>t_iDtk^TfDlkpD@N?ZGK#|ARG(nhY89x zEdHKii&pOrka<30yz(rae_I&+7HoRGKKjsXJ8fDJ@)+i`6{J5ojT^%GGVISc2%H{;7xBS#l*5>@}I8AWiIzV&s0c*A(GJ4l1veOi(o6ln#Rf!eFvJ;T3XRuUk{a zA1PRm>B4OmczLYyukEQ8o_~swQuI$D8hi9HXXiM>be)QHeWQTjF|H90yobL9cC9jm zSuI zwL~~-h<#{+t6?oD4D(_ZX*FnQY_@2R5CC_fa+B8V%X@@_cxBHg-i;VD6OJy!tFS1R zvcfoq`TaUlc4T8wyx13j4;Cr2w4(1lB(N+gHF5WfsPK5xx2B8 zX597}W-|VaSI?{#+Osg?v@FA`w+kKBKIOt53&bQlC3y8#!2!SDCI~QZnZW_#HlYWB zDT4A%LLb7%pkTAm9#-9Gv8anT3qcmX9Bi|yf!l?03k(>eOm2+1WrnI*%5WkWsP$8nyWm8>Eyi~hTzy(}X#vLO zC78VbWw|>f*coegz=C$jlRMN4Q*iH^f*qR*a)|f9WJxeX$NxAS>VbM;qzp$c3bt)7 z(|pqTX$M!EDrA(5OxMv(*aK}Z2k7yVGY5}t2Jffp&~Y9c^d4_y}A{T+u_$;O&& z+8o+YaxlSyBM zKa6^!Kr(V*ixNe3%NSFd8Me+t_D84Z&&HixgJOJMePXuBZi23JmAxuXo~10iNZlOZ zmtvrozPte{Cm6fJPQB!SW6vRJ0*6g{m|VbT;PA|VG_!q^#tiG0NsAk*#Jg^1F~rWX z-;g)%N#`e8U~?ar086{OypRy!=VMGM`X7-naPc$akyMNEXA%Ak4gVd$-%;LSm*USd z{3*kq<@mD#^E=?b2*>7x|0S?PA^5f>SzS|SStEzV{%#E04aYv7jrl#Z9i9DxP=d4n z``Kg!moySIum)#;?rda_ONV&6s{8IU5-hWJ@1dX1Q+?A%^z*{CO1S^o2KGg zn?q1m3r%)~gZe*syT&5kG~Fn{=^4rcWSw23E~qozAw!ocLTGnoQ(?`BV-tu3(HSu+jy_=&i=~VWMGVk{$VxJ!ieRC7dc& zCTZQ@a!8Cfs2{|LAFi?8dABDimDt$V;_s9# zS^=Y7oX1A*=ltO&5cnh=zDoe-p$6y|7otLtW|1c|X8rYyFv!%w^oRJF^uGCk7a=?)57swNIaT(rw#CDpC*LkSTushUPX0dN zH!=EiQ8)pOzaXQhVLKb8sQjjFc+yyLgboh&LzBq!d zAtDO~XTkr}B@bI}XEoMZ{Ii&>@$pgVA}V~}-l!ZRHoACOpUdcT_4S6Me5G-c&_y_B zdP-a)4K>T=la~9f^W_ZeRGi)w>=fI|4VoNHUeXIXA02iw@oYZQ=_9kHhxP3*EJBZI zf14iD&5tTVg{QkWcvHr;_Ks`izi=us>=!>GzRkKLjx>o^M>GHFAst%#Qep!UMQDtg zW@WMxunc;SwCHX`8R~{swJd zUoRA=la+QoS!s~gPe>v{y;-fU6jAA^Uxmx7(#Y%2F~T`);}aozAD<9j$H;cy9um22 z6kUbl!ws=0JlCyK!m{Jgz2YGQk;hh$K(x!rMyF%CG8jv@YsjA3KIThXr!dke{{)Yv zlNy_}AB@cwfG1WoXg|0S_0apVij~{CcMRi!4EsT<{bV$5L`x(eT1%f3ZH*gbnh7?n zRGuXJ{VF(qlA7Q7?&Qs1c)zp%nPAD}jpaV<*ZWHb&l>|vzT0XBL^pmP{Q++Yus zMsmE}w;%_dy1Ze7MOFS^X4tb_*-Ki#@!(1cO?;nTB|E@llcu8_vl_io7DAQR;!#63 zX`u`?e#s2^2Y3Ozeu)}2*TB&q1edzWFD;j0h7Ikpm5UvEh)I>EP>E(`s)RkrXCu8kQYI2-|duQ$n!qDxg4l z!xF`;jep&z_Jjw zn6OR7eexR-&XcG>zuczW8+~*@*Ki4>+V6cxi6){2wxG;-&+pt-5ZKbthii9A?O3vc z*3uQko?{HtSh6NRVxu3LnG&uHm(WXeP0nf@zLHy%2UU!d?Z<}?wn?}6v5K3vwNDNg zAd5$g#FxfM9P~4n14}od#7jeL-}{i%!366zDb-YKTGE+6!>Ws)lnO0SMnvz#^yV5yVlW7@6iiaL^JsF#-FpPSSb_0lae zEc!)4?bl37F>vNB$$4<2xsMFD->f`Ir)&k99$8{2Tfs&@GCD2X1zcUnyrc_FtgaA) zPs3L?HCtT*wa9M{9x$YaxefNbqK;aZn)t>V87EKwo0SP#ukZ7iuNL6+M|f1BJ8AX8 zy3(j9xFJQfLT-(eimP%XB8o34>@Xgt`re_R#jULRd%XFdX6Um~c?cnx%2_%IGCSKw zL-psZg=m9W@XRBofyC0GK=DaSI+UiO@$P{%^As!G@*XdOHDI1ers!6Pn`};1?+ciV zWVmazc>wInH}jBNVD5$#x*hh7GRLW*0`nr7y#^jHGWUW3#pYh5WJq0FY~CzGV2ow9 zIfY5|r~1?Vn0^P84m7t@Z!0yI$;P>8zn+27u6FAj?VxkHc?3?ZZJ5@L@uLG423ma0 z;#9Ykn^F7qzTiPlRB67NRK6W{kF~qh4VC8Wkk1S=JD`i%gkf8I^E@O~nTL_lQQ>c9VC{y~Jb>%+?=uGSooA!?oSJfYh?5C_s;qJ_plgB&}caT@g9 zKE|{fO4lLxyZ%G-1`EvXW^sX1Zzjxp2b3%|yTQECY=r?wJZAO&dh;|H^1pHOkm|Bv zjFI_99{Qhj+qQMI6p#TpSY{a^!$TE_31Rl58A)PCBk_l_F>fUG3NHaPSz@8UZ|Oqk&9#0Do-GD~%2R}7 zyVdhf@jp2F11vkBG|SR?TRCq~$9`mfhJ`8XZGEBg6O3A0JzRQN+r*CzxAZWuOQGmC zOFM`wuuLVD+z0Gak{7l-jvJ=!9b`h$$riu*N`a-f4Es!k$iL(%qDYPpW&JOI_%W*2<@FG+ycuCih5;!=lR-CJrIFT<$imM(C5jU}$}Hxns> zCwR*(0rg0^MJGd&f=0U;yOiBLi?M{wi8v7L&9T9U`}Yo0b0jjOmnjo#GQ`p7vR`<8 zd62S8@oIG4-_ug6!?Qv5I>KA3@JHQJX-Sjew9eNZzPcB=aFvPIcV=|N*cqdXelEXH zc%?08nEEm@*7F)yTIEul_B(ahLgl?mH?0LU_2r}awhS4KSZUcny7JJWYH6_!wus{R z2D8>!2#B`*@J*@At2aMo=`9&X;1PHUoMWk8Rnm~3r&WKqxER0 zc<&zNY7P5`cUv~2s+b|HAVv2)xvU>8N{=+^==pJBWAD5Ff=y1l8;>+7pLzEkOGg3r z7UHq$o4>hj(4hurK31|9e;9RLjb(rgDPJlb;Pl|~d6yyLHstdO4x8A7o`>nrP;j7;)B6R)D;s^g>EO|29ZiVjkX!?Kk zh_xF*ry2^~)@XHSm36udefC>>K;Awp8rZ+HTA`rYnoeN$gI%^p!TVEXhq|}YI$q}d z%sh~GTNUtQIRf$|)IVkIr0yxVPQ+eSTB*c;0REV7ov6NFYQ@vB&4VNhOkQj?Lrl4q z@`k6>iel>;89L3!@vWS1^+4BB>jYBULA9cQ`hF8l^oiu5ciV}Bbb*AWOc@F~I#9gwTUVGE=2_gqNvPytqT6}! z9x}8aRk$25?Gv{E?Gf6*FwgnN!Kib5qWXBf1;;k(TB`%TdBhsEE!jFAk$WDtjzP-} ziYI1rHk_-Tt+TjgI(-4B?<``oMEfjy7|g-8ro*5(q=@Ymi(Y-$CM$B78)SZF!LV(= zD<+tE7hN+JD#$zeB9T0mtDa$B-9oM<2ARO9{fL~^=+l=g1R29%Hrk|j~C zikFKmsyZokdWb>+d4x^GM zZ*Mr=l-|>m_*xZdb`TQq`w$*G^4G7BTy@#Q~j4r!ND$?-cXY z59;KPtnkMjO6~SKv;<6Mj3g{ufidQUXHb}2H=- z#;Ldql^bAX2*n)qu~OICZ0KHvF<#q4$J=o)EXKWXJ4&n}d+Mg>BSnFx&ETh*WGieE zI%&-Ly<3$j8lU_z&Stbi)eFdOO*Y#~oRY^7;}hzpR9hL6IAGgI27^H-86gT@;8A|x z6R>$@IQqTP6=po4?8H@w&kLfnjCBSzTr81lqeIf{q6e2F+H*@z!jEood`QEVHIHky-)8)_fN-jb8_7=~Y> zk3pi^_3bOxb<1uzltzNDtH2&J!t%yu3&{&9Pd%yxwITZZa@$zej}^alK%W&J4OEg^ z>PU-E;wko{k2jci5ZQqO7>aF65wAC}^xJCY1i_~%)_{ujNg^|7-ll5RI$IjX7i8Xn z-A~(kK=sqMgjSzx(1!77rLCh(DEuy*ndXd!v%8Q}mOo(Ytah!kJxFujgEN)3SJkR& zTPpqgeW-idHd#%nvE4`i{ts;3WlMu6j@fussj;ooXWK&n&=p8gx4F~~^|t?5A>%RSb!sN(vlu=LsoaN; z4)xCo6RQLzGOAciZ6q-}97+7H;u{0cn|X8?C(l)(HDZTB&9&H9>7a72^5XVd9Jj9+ z{Ve7yoGYhegD+0b4NsOBRQEUbB%`J@R(bq;6k8@dtPBJFCv1}Hb=tFZP_vGo=|}ue zgLi0nk}pB|rynWWBrGlY1Q$}(9%ZS9$Uoio-%Q|mL^(uAU8k0`6aR(I5b^d}eBY;s z*#dsWqd-!seGth%qs~pW-z9_mgpUU)V4sHc`cR!4AZa5qap&)57QB$!!6CwH9`qsD z_X~b%r`S7^!XLqj8~Ao$n`%dSvA}+<47c1YS@E3REJAd#eI(ZPF<2#2M>x0G?of9X z+i{1-uM18-Y!x7`)K1k(3@j|6x7CU$2kNl)9tiTV^1ya-j$8OSn@s1N1XWR@U31O2 zZLR%Q$v7Le+=UEA^xcLB{J5V5*-o+6O{#3_U!bs2eW_shz@ao@e9iHZWE*K!wtZX*4GS1PY!yz;%@#<*Q@Aw2*jqj_7Q3!ZrW3x+pXNuNZIwQ8t{o< z=!oB2G@UwtJ{7!r(`3hT13Z1!jxMG3_Q_;}CJ&u_kJc3jT35d7;&eb%sbdPtQ_K$w zAnpQA&P7J-!{$;4T1^r{4i^-^f^uJUxnn#b#*gaKa#FH>j>8HyOVK(TRq2>Qa(+^m zRywxGP`$z36As5Z`(f{XhNG#@_At1!Q-GNE&fCFuzhjU(Z@1%4D_lJ9;9-Z=IT_x6 z%wa{~Ur_FK7LdQXK+)rl&tToh4hI~uITypJJr1)v?McV|7WA`oEW!c!6-hr2Z#T}O za#qcHbP;_!+hqmI3kdmm4H3NPg833z@Z!bZqK3b!jd3!bqMJ^rHxW z<7j6Z45)KZ)6)gm`idi3-CXBbCWGxUIMWvCC>oKt0Z=NM9XU%E3EUg+fXLZ085gt2YWUiS#^QE&D;kqgzQ z;O^p2b&kerSXNz{>f9nrnh9(+-6MjpIo@> z*mWvDBFyknd)xRq6-}D7w`o)f4}>^~7e`k$AOGPJ1mJ-(YjA<8O1$*TFYu6$NIzpy|j)h}$0ZHu!%t zc2k#bb#AeOp~|@c$tb9$RnDz4ta;KI1?{SxsC2LU?jD)mJ}@QifU%y6s}5NomSecme!FR|8#Vc zwADMwK?!S7OY2G7|D0j-Zi{h^#ip&W`x?QG8n9bDxW%;urDnZZ4?m7WM5^D%>GtV_ zC>xxMl5N|svGC|}iq;X_oLr8%D5Eb!`zq0d=HhU$vRZ0$ZIw;Li0Ws$GfD7*ISP-! zM@S-c_q(#NEt^{EcOg#tRM!H6j$JKH#lN@hK-1KZJ7p{Q0xsHhhgupSfMx5kaaVzh zFbdYGmKM;`#ad~XT3SpROvmOjkw)2&wgmNsK`Uhex|h-h-D+tmfwCQy4ARbkTO0TH&RjYM;e~(aE$Qp?eA!RM&rPc>;WfTv2euV zPJ+^}TnVIL42}-Tsry`mj6GQD#y@MnbNQieAToi{_U>T>usxERu)Bur;g;phiu4|J$= z55>H0>fAc_ooHf>bHr{x=h8!`dUqCSH5uwXQ6to+>fIw`b{>=@M!C27qVh>r%E7r& zSVV7&BIgopcXh6f{C&3&WrgY#WW=kzI74eD;*v@ANA`AN9rf33lDpQlN3p&C^LUOxx#bJDM-8$-=^UJVv+qE2R{dnu3*)NX!;B2u z8QWoC$ys)h`ejwr+g8|19@W@?Kk8$CynH6U&4_O!bADBf-rK$)%xUvbouuASnT@QO zydw(pe&BM!`Wza2zyFktR#8Y?$EuZgNcd(sih2ra&TMb0IkT@b?CV(Tzwnf~YhhEZ z2XuttH`SW?4eDxlKZ6z0ezgC4)NV68`Hb@P_DaRz5!NxnI#Z!2ibtgz%ze$@S`K2g zll~~B`(hz|2)=(&+D|XAX`!uUPWM3i1amqHVyXBW32TiZf8hK~G;I4zd;+8|^JQVg zWqZD_Lx;3x@t)IZyl1?9fj2Pv(1)D+;>Cq2$ zkKX0vLqj^JH->cX!(llfL7k1^pw7VF;OhanlMIJWw*5^Y?AHA=A1NJ0l zc27j94^pi+{@|i{xOx1P#=tPBgf@i5>y`f3y}9^$LvI2Y z-(@*2@)kZ>5q%&1dWQxltDXoQ_vg^NPmt^Kna%+iccx_kHS9}7&AU&Km@6WD{|5=r zn$-(quKX3PYCBTO634tKlX0s~-YsWY&seRNYs@ufMLJ~MioEMuqiK(?m`^*7?qjer zp#NDtl&SB)wO>(GL?1qn3{OVmkKw%2D2UHY1rw&V5gU;NB4{%!Nl63QD zdKIs1?iLLTP~MG)lIQXAg1^)=Q9Jlzdoos;?TMp`Hu3jHjA^hsvN%pHJ%YBJ!E2j0 z{Dg-BNyl+xdhU?oQ_b$cMiSg$*&KC4xqz}q=Opyk@cz?`#-cYx)JE?>vs8~tfk^!UI5Sze zO~t!BUt625!~kB2$=5Wt0uO3zDF;zwLnj6ajeh1VAszoA!8Jy;Gkl^QO9ru56~He$1ormB^K3AK(f%HN1V%K(|1g#mzxdmwR(@KTElO-rTTc+r$>cqu54>^{WN zMKTQ1?nQ$MD!*}ncO-8E+YpbSu6ok5)&l!>oAI_}mFEGLPN4m}J*dx}{T3y{@lPuE zlGCSN?CpMi&nWgJ!=BWw<@#`+>-QU`@&+D^gN-MJYfU!OZZTK@deYVYvk7ZuseKpDT=TEaq?mv6g?Ft@)YkWgaP}+WUj=#hU zb(eV0?o!X+HGf90`Ez;A(;J`HlM4UjLB6(L@DsXR>b<{9ybjp*Q-aMOBy9fhVDt3m z4;8lgupwN$=rt5Z>4@)$u9jPmQBglJtl$OyZsP>w&%!Mxzv*xIa1JBgX-+Y}Zdq!L zwLXI{?wYLoq{p=i6o3~Lsn(q#vK1F-1xfihCxzvv#MyJ z)11#p3&jNKn^P#rY1N5b9@>~n(aWX`f(hPilQtC^vLUuaLB|t^VVKlD=p__RY|N_r z4ztL!wUR$bpI#!7X*C>w{t%6I^eM);U=%5Z0#Z0D_ZP)N-jbB!TVMjVvx)@i@8iRc zEoyr{))%fVAv_4-+Qw-l>e!4q(B7U~ftY>r0lua(1|`PDc}tc#hU|jen!@o z5oK8063O%$3sq#pvY}jw{wTDlW4S~@;@y;6K);-SX z9_L1JKOvhPYN+E^8g0ghgyF*HrXAv7@qOubb5HZzmX%f?#>|>#by^R~W0+hzpBp~( z=|^1}jv%CsQbxc7KPuhCX4JxnGXaR5i_}Wk6u{^RO?0F=_bx|j-F}eEk~%jdB+cr& z5es$NG)PKoHZGWhFQbPSI_=WO(fF(pB}A|A8q>O(NW98udhcK#GI;Z}^i#wajF3R; z6LgZ9M<)?&@$e7I2vgJaplL6kQVLBikp5roPGH;jK7~%DzTsyy$+Vzt7ljlfeEAWc z$x$XSIG9fQL83Kj`Cgwdk;=|ePBYeu&vpi2jmziNvbgYTq@)zh$~XCJKtkzB`pCyV zvD8moGF@MWFo_!qp|D0pWD<#5n$RMX2vsK7^&>uINS;xZ#x>7BhIjkCAL3knal8_c z#x&0&c%qEzrZ-5W(UDns&{y=KkTOS?CGnA20eq&9JV46QkjnVpeA8kl9b}`l=qm)* zz5QCqx3)HJqi)~ASi3tOP1IPkhLJR%#4lHEdro?L{2ZaYk8>_lK3MyNF;EJJ$3~h5D z|DWEj1+1zn``>fV*_V6veF2JGP*6bxQ4k;aO0O3YPzuu|dDw62y=j5f%uLdXxUIJ_7aL&V&zR4siE6d_hI*Y2qD$#vOH0cbOP%Gc zwTpEou9m-P8;on_>+P*@<@~euZym|Fg8nV$ZYQ;uUSs8rQW1OqsMCc=XImPj47q0p z;-=W)5p?+mT#&*gQ+9^JhX#Do?3Po39M}@KN1ysp$~2{E7%|dJyC@B3#bFWs;YoB| zl4|8{AoX00NSCr$@MYn%LCoAhKO`|Bpw=~&=&??0q=nt zIp5(*BiO+!pd89MZkE&Kcs$H=IMYojO;y8P%2F^(z9r?dvpZ#%JczRzU`&_YcsQ~H zS$g1M#$ji=G=$aP0IvZ^yL%eb*^wLgZd$q`yClMHUY9aVqcon}4K3$`DtJ4x_va4> zo#`^7rm&knIUPc)y9Pe#NY8HsMIj!#-2!45JA4(09Ha}j$?2v7jUNwII*ny7b%+02M76=3FNCLh5F`Gu>B` z?Q}|VUnGM&!8Uw3&P=I~?`Dp3wh>0bb!UR^xDhp})6LZh4g2+NVsM7IrIErUOfU&f z%vYMGOzoMQjU0&_1vetnbz9=GMEKRXm!bDXS0h|<7Ow(d`wX}w<*}l$2p6nz`bFr3 z+bG^xH~ff#VYYrFHVM1N-RBNqAoKkfz^g|KbO#56`De2jJ8a7p=o)*E!V2IcV%}h9 zdZ#$<83;BUG&sU+2dvLow$k_16XsjEUb?d>kBnC4$hF3&rEP|Tknr;sZw24i;f7GJ zjdgv7c-W8-X*`|4cU-s=6u@qAm?pod#j)+~p;8I0whIgv0qp4gAaB(|x{Frw3t+vr zT+U-VC_ic;ZJ=dV0mQAe<#nF35>mV#;jF<_2|Nz>^VDlk~i zu>yXhc6}>pB&}5a+>^tl23o<7lWR3@KORJz!Z9Jg?38lpm>_@l-CeQnd#MDBfj0BI zrn6~<$)9n-8q~c!5>1^-1h4=_E_e{YoYvALTBQhJ34km4cX(G@OD|gDWbCW)5Bqzz zCj<5VzKwL!l4TUo8vHWpEtI$V5&RTIOS@^MB)D*~99;<3bw4N-9Y!1QId;D7KI_w# z7wJaz1M}xW4G1kJkuJ&|@-X92Dc``I2}u_39DaYi*LD}OpDgC>bP&o;G%8c*96p(8 zm?Iq^+GQ7%SLuAdkMY_b0Qvat(Am;4yzvfVW`}=N?x9uu`c|)vH)-N@ROYQqN-#UW z4_`>0zo?|qswh7?`Z+C{<3y~<+3L64Xe@C2}Yu@DSsp}tX&7RwX&N)=c0&H5^11@6p?-i>F7gffmJ5k>6oqp z$UDSD-id-0@+2+gZXc~#3zmU#G9jbrgd_pvUG_0TKBIa3-eO#U?6s}(q3#bnj-MY* zB#Tz?6^hn<+CGGG9?J)2Ul18jD-#7K7c3g4fbS+VnMmh#5`qX43kY<&!vx3Q8X zw3vI*G_9l@gTBvO$x52XmmFGi`Xl#uMJR#V(VRSf7qdVxPaZ6BtsN}J@V&3s#>Fx2gWHl{L6Tl<@cNC%Y)kUaqObb##%iIFP+bboaX}emW zy;BDYAh++M@c`DfB+t=l+~?x8!HvfTu0v^u!^jj`F+c!^0_bW*zN8cQ(oP$ZJ&!}g zmEkD8lsh#vxm%s&7%l53(!9*?oa9qFr>{u!5u~1qk%5xt|6`Ll~;hiV~UP`sVyn(u+!j(wb>?1Y-0w0Nf#3PxOT=f|Sf4@?51KJ6jB%8>$-3(S#^QN*s% zz$C=LoXbb}3m=z&Mwz%FU5zDH)-IL|r&R?4UBVmH1?ab8$%}Myz5w!Zzj`SY^j!xs zj@~<50Qn@gVhjp@AqtE>i6hhLy?K6&XFUpE){(qIOLGN~4@KjbgU7yj^x3i;0px<( zRl==jHh4UrKt|KDY(J*H20YeH1ZHt3U`7lR7(OyRz7xO)=isL@kz~`-q5dLvCBhm? zhxpU$=c35yE+}$LmH-N^E#i{tf&pbjrk`iSNho=35~-#0G6ax!{H~oKikFH}(AH!! zn-&cg7(R@q^+E6YTPV<5yOP2-iwur9dk%D0ZCOHJSKq_rb}pzTx>%{Q=(UiPNs7f= zI8kJdL*{woxzh5$R!Jqfv}}UFaA|m6Mb*}(qQ?}D_mgjkLoxGvk>zwmnE-MbMDGM; zQE$|@YMcOa)z!Zaoy$?p(X=6p2+f7;mdNS=t{zUV~2w)U| z-TnZcSNoAiXhn$t@?N;|QwZkp9b`S7P%MCaAUIMWd)UwYNeP`ZS^#-hTlp!n+bU7| zi2>+pMMVO`r4@1?)bKYK?5uc{044$0jn6OD1Ibg}!=(KNX}@u%{Gd`!Ldh;uMUXM* zC4`c1R9~Q(w9)dcb+8pD)!+`>>d3c0>zIIkkg9s)gLr?+RawX)Qb%jFMNo|@v6Xxc z74azP{2$PG)G4A$-i)Sv+snu})tfAMmo&jg60XfCtR{qHINbYe^T}K6f{$?-Ftx4 zF!`)Gky^ab0@$|+*f*E7GW&UfZXqjOLZZznf@++gddb{Qq;RplkjvO*Br;HOk>}zw zq>VXLP_@^nT28{}bNnm9N<)a(DKJS*`R6Srp;%ON(IX6@V7aY84mP(DpwuSNCnHg_ z=0aR@7l}{T+@F~SW2W(}{Dd-0IgdMz`kTHBT5B#j5)EZ;mY8zo|v~O}0 z+f(d&9Oc}TFA9LLQD*zr-d-Ykmy|BPJ?Y7P`vL;lh)R7|N}K_m6%2Q~`dOl9| zp!(lt0-sk^Z;U7@O=3ts#+F@CtTfWwM*ycc0ayH_#2|)jGpRCL4Y3BKvSB(|!QAK6 zRx~PLZvbvIy9BETB!*NCTVEo>4>*>j1nS-luCU`5P*^*^Nc`E7&3(dyc2P`(R*XFz7X`)!U_yw~MiaByuYbYAF`opR{W&>RFy4y5kJK?BOF{VHRG5I@ zD%w|&NBPo;(gbgRQSNMs=|Hibil&_c{Q{V016GPu4GS(HQGGP~nP)K0lcVJwN->Ef z`w#`%8T2N`i!&sCwO^;D?$lBw`}z7wA0= ztI>O|7ohjtZnm(H=G|vx4!V!ORYFJum!qM6K?~6Av2siEe_0wTu+i+dETon(+YZ%E zdj#Yv>Uij3((+fujlCP7<~q@wWW55WD(dx@h3M)2G6d*!4M4Yd3J<$g4qI#9o1UA2 z-qgI=5qW5KbKwAlk1t2T$ZzkgSlW#vZB;Mcnqklw)g=8}>qy5y{}feuy^wVHRk@V+ zV!r_js)*5Yh_HiDWvW4$O6=qX(`3`nK~I^xo9ordRH4sX23dZ#Zn72H75hfV2)r6R zVOwnPW&cRb9Qm#NW)>Jbnm6sA_mD94SAF-|95k!BP@>9Fx#pmVIsYQ3wvRzh{=r-{ zAJkKt~NT$=bl!ic}3-GMCuR{thERT}nvLz;G=<1Bzrb%?!*SIxsY#GXeT) zVR$GV;{E?`?XLuY1!EUF+}lA|gg*18JVK&=J@ZZ}#LU~=U>6s`VEvPxkf*B{1ABAx z`ehP{YsW_ms~NFGr>Tm%gO*uLcu|~bZM4 z#8$?o(^+vD6qmA4`G^FQBC?izWlAtrnO-+t4RQx94mxNK{k>joUs*fpYng=%CvFp5 zwcLxC(>@}NC3l5e?}udgoL3Oy!WZ79$pFmiVRYe5NPQCgeAsnmiUqDzhEJ`z6L68! z#cp(gKP%k{KjI+Pr3=Wohe}ddU1vPE8-^wI`p%$;9S{F8d_RfE=Waz@>`)?-yFUjs zoL%n(TJ9y1+Oq0Spy<{KMIHSZKE{#knFJuQIU2&w6ry7N*}-^FJbPVn!LjM)&tFO4 zH!vRj+CPLWomo{!K%e|nc9}}F7GeY9mWHymaez;n4ldCwm_HxwfO2}wMy6Ee!t(+y z`&8*+16;ueNC+8C){)buPNsWI+f3Jj(t?%*9WuB0-`&h`GHycwV`aWU@UaV3fmd?jYIR5tYgP5oxT;4&cu_p@hym z;E4J2+hj2NF-vi=^>1T$j{T(@iRcH4l@=iE>mwU6BmutlO6JrO!3KCOE~@=z3kI$&svXL?UuoGuDaQL z7NhG3yuI9|Tv8I{3C2~@LCFZhray0%*6Fa>ao^+IL%mroM4v@koa}DwXLPZ($7MG# z+By*!iSI1e48TuDj4@5k3emHOa6oX^dDSd!l<^bCa+pJ>6Oppc9ddfWRa+8(5E1M4 zs#!LjMg+Ls`42&3)q#j&?q)}R6hOS)#Z--qBHl|>N9-0KXmIk1VlSg%L=d%c3A}98 z5949MUrEMKr}Ki^tYZqk!RGMV*MfP_Z9py+lb*h?5JbX*z4m93oixL&834wAx+E}) zjuDL8Ch=;>e%J>>+D1JsWV-YVnTtef2K0<~E_D4q-D=}EM1+7fgIK3?&iUZ3ZAk${ z%wpa&Z5f2LsDf|+&YkE?Q?uflRpZ(*Q8#Tm)T!&sooH07PAE)f-6ZD%HA|ZhL5HKb zaG0jTSYDXSxwhAdFHCmsRkO6k8R*3E?CVoFzqUF_x9e~#d{Dt*+7bqI0w%oZH$D<# zj?$?`!1o15g#NVE1IUHG;5O%SZLL#^mPYqNo#q}Drmd}vK@OP=Vtc0Y7DVXODY5uE zwCsi`Ok3t@gmBvZAozyslp?G)yyK{^HeZ8Klm+KFuRxeiC~EcoPfid2)cbcTS6gtQ z1QB!iAIo{EcjyI(XzYJHEvnZ~2O>NkS9o7NE#erIekh2vogui*z^gOXi@&1Dn923k zTc?H%?Nzh1RXFHG;GyV~B6F%vBO3dPop-KXLS8*}4DLZd?jCwlND2cOmr8dXh>*{` ze%2yMTuSA349q&8c{|8Ox>l}sn z+OFfJ4A)_e`$X;X^t5Q!&a0wXxjIlt3LZ@^&Ky6GUp>*!%eiIiFa)81b{+W1sNvcj zrXyC=aQzI`lR`gh9_D$6=r9o^Zo!wrlCyLmN=Cj+J&Al=mKl0l)b@kLoX=n#hE{sn zGfSOrH7i|*iC#T!DW@Bx!|HxS?@xGy!_st^;8zxd`hR#$7?`$!6?Orw-F%ccYM@Rn zxIR+LIk7d_%UH9ts+QwdUW|KjQ`UKr6K#!|v#AN2((gK9hG?V?Dl>>3s{!;RU;$ z-XO2$Y-cIAq;vrx0>UoXBNlP9cVl(9<(NE-=>yepw)>depD*VR_?I0vK^Cg(DJg|wXA{DX5o3poy~K8dO8>k zzU%;-@(F&{#2P)8V6XNHfPWn+R9^qF{1HRn_jJwY3-1u)B7<>}oUgQ2&XO&rc|lp& z=A2YF(peUlRkeO%ThC*2^ZyXRUM>PF8=Y#L&vt)_GZ0e`JCCtZsYcIj$v+=*9ul9f z@R72X4LN|ej6CS9_2J1PX)mTRrPlHZ*TZIhgw~@&qLurdc+>hGwl|n6mTOPD2SOT& z$@mHR5OnBH2bew*X0y0`V4dhxg5aed+Z zlx1APR~%i#fxq#&Gnbt^j@o0=@klAYlgFK55`QV}VJD8GBIqy&*y6w8=j~(o5xqU- z7-#y4bMNnMt?!q5t`y9WUiL#hnt|@KoL#F&HL$+$u!SE(>=>URjH7r8&|P2T^q4Z6 z3_h6~Jl-zi-mLZCqrqpA(3i`;M+Q8J5yT^vGS@$ypRt^OI{Py$w-2o90t{w9H};Mv zzlA8yeGAz%CgMV<;8}P&@hvxpuTha*iAE2;0ow94s)yCBhh=^P&R9TeI<_nPs)ygU z-GCMA7EIYMr(iFCxdG-_T0w0$z#3C{(-Y8_iQe%u*uVW%PZiZ+q3 zu&*HaijI89Nt)K`=HG7UJBM1fdmxGlx(~3BpHTu9g9jL&!P$d9A&C_$ zAB#YO%|tD(mBEj``Ke|5E;#q{6K2y{LuF7a-(z*SX=T;9Rxxas1tGRmHk*d3x6OV1K;NO{_7-YV+ZefrnLAH!nh5*Ague>CR*vNE@(qlc|gY|jiFCr_y}4dG|h@1D%|v{Azl$5TZd&+0ZRk=u3a!}cl&in&M_jU zfMbCgv5hB;Z~;`5?I<=#I|;Si~yHCPlbyh4Kvu- zTj68a_M736?906f_S9)x)7dHCfW6`S?5ub)!oDPyAgEy@zT#rN>%-Hu8)ax~18ohf z2%&0idAX_ED!eK6b(pH0BKXcI*FbWCODF2Kgo&o4b9fc(E6PwdQlm8cg?uIWjTMnf zuo=M#X2HESht237p3EA*Ze{oFNC{U&GjWgR8xirix~LcS_&o!+`1LZR@>~3P+wNnY z%J4AXavU1O!H4e@D)wB{vxppzP(ea6|NOJte&N5cx2B7d@ H$KC$}wC81O diff --git a/web/help/6502CPU.html b/web/help/6502CPU.html index 820868f9..29d99b7e 100644 --- a/web/help/6502CPU.html +++ b/web/help/6502CPU.html @@ -1,1612 +1,1803 @@ - - + + + + + - CPU - 6502 - - - - - - - - - - + + + + + + + + CPU - 6502 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - -
    - -

    -

    #

    -

    # $Id: 6502_cpu.txt,v 1.1.1.1 2004/08/29 01:29:35 bryan Exp $

    -

    #

    -

    # This file is part of Commodore 64 emulator

    -

    #      and Program Development System.

    -

    #

    -

    # See README for copyright notice

    -

    #

    -

    # This file contains documentation for 6502/6510/8500/8502 instruction set.

    -

    #

    -

    #

    -

    # Written by

    -

    #   John West       (john@ucc.gu.uwa.edu.au)

    -

    #   Marko MЉkelЉ    (msmakela@kruuna.helsinki.fi)

    -

    #

    -

    #

    -

    # $Log: 6502_cpu.txt,v $

    -

    # Revision 1.1.1.1  2004/08/29 01:29:35  bryan

    -

    # no message

    -

    #

    -

    # Revision 1.1  2002/05/21 00:42:27  xodnizel

    -

    # updates

    -

    #

    -

    # Revision 1.8  1994/06/03  19:50:04  jopi

    -

    # Patchlevel 2

    -

    #

    -

    # Revision 1.7  1994/04/15  13:07:04  jopi

    -

    # 65xx Register descriptions added

    -

    #

    -

    # Revision 1.6  1994/02/18  16:09:36  jopi

    -

    #

    -

    # Revision 1.5  1994/01/26  16:08:37  jopi

    -

    # X64 version 0.2 PL 1

    -

    #

    -

    # Revision 1.4  1993/11/10  01:55:34  jopi

    -

    #

    -

    # Revision 1.3  93/06/21  13:37:18  jopi

    -

    #  X64 version 0.2 PL 0

    -

    #

    -

    # Revision 1.2  93/06/21  13:07:15  jopi

    -

    # *** empty log message ***

    -

    #

    -

    #

    -


    -

    Note: To extract the uuencoded ML programs in this article most

    -

          easily you may use e.g. "uud" by Edwin Kremer ,

    -

          which extracts them all at once.

    -


    -


    -

    Documentation for the NMOS 65xx/85xx Instruction Set

    -


    -

           6510 Instructions by Addressing Modes

    -

           6502 Registers

    -

           6510/8502 Undocumented Commands

    -

           Register selection for load and store

    -

           Decimal mode in NMOS 6500 series

    -

           6510 features

    -

           Different CPU types

    -

           6510 Instruction Timing

    -

           How Real Programmers Acknowledge Interrupts

    -

           Memory Management

    -

           Autostart Code

    -

           Notes

    -

           References

    -


    -


    -

    6510 Instructions by Addressing Modes

    -


    -

    off- ++++++++++ Positive ++++++++++  ---------- Negative ----------

    -

    set  00      20      40      60      80      a0      c0      e0      mode

    -


    -

    +00  BRK     JSR     RTI     RTS     NOP*    LDY     CPY     CPX     Impl/immed

    -

    +01  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     (indir,x)

    -

    +02   t       t       t       t      NOP*t   LDX     NOP*t   NOP*t     ? /immed

    -

    +03  SLO*    RLA*    SRE*    RRA*    SAX*    LAX*    DCP*    ISB*    (indir,x)

    -

    +04  NOP*    BIT     NOP*    NOP*    STY     LDY     CPY     CPX     Zeropage

    -

    +05  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Zeropage

    -

    +06  ASL     ROL     LSR     ROR     STX     LDX     DEC     INC     Zeropage

    -

    +07  SLO*    RLA*    SRE*    RRA*    SAX*    LAX*    DCP*    ISB*    Zeropage

    -


    -

    +08  PHP     PLP     PHA     PLA     DEY     TAY     INY     INX     Implied

    -

    +09  ORA     AND     EOR     ADC     NOP*    LDA     CMP     SBC     Immediate

    -

    +0a  ASL     ROL     LSR     ROR     TXA     TAX     DEX     NOP     Accu/impl

    -

    +0b  ANC**   ANC**   ASR**   ARR**   ANE**   LXA**   SBX**   SBC*    Immediate

    -

    +0c  NOP*    BIT     JMP     JMP ()  STY     LDY     CPY     CPX     Absolute

    -

    +0d  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Absolute

    -

    +0e  ASL     ROL     LSR     ROR     STX     LDX     DEC     INC     Absolute

    -

    +0f  SLO*    RLA*    SRE*    RRA*    SAX*    LAX*    DCP*    ISB*    Absolute

    -


    -

    +10  BPL     BMI     BVC     BVS     BCC     BCS     BNE     BEQ     Relative

    -

    +11  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     (indir),y

    -

    +12   t       t       t       t       t       t       t       t         ?

    -

    +13  SLO*    RLA*    SRE*    RRA*    SHA**   LAX*    DCP*    ISB*    (indir),y

    -

    +14  NOP*    NOP*    NOP*    NOP*    STY     LDY     NOP*    NOP*    Zeropage,x

    -

    +15  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Zeropage,x

    -

    +16  ASL     ROL     LSR     ROR     STX  y) LDX  y) DEC     INC     Zeropage,x

    -

    +17  SLO*    RLA*    SRE*    RRA*    SAX* y) LAX* y) DCP*    ISB*    Zeropage,x

    -


    -

    +18  CLC     SEC     CLI     SEI     TYA     CLV     CLD     SED     Implied

    -

    +19  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Absolute,y

    -

    +1a  NOP*    NOP*    NOP*    NOP*    TXS     TSX     NOP*    NOP*    Implied

    -

    +1b  SLO*    RLA*    SRE*    RRA*    SHS**   LAS**   DCP*    ISB*    Absolute,y

    -

    +1c  NOP*    NOP*    NOP*    NOP*    SHY**   LDY     NOP*    NOP*    Absolute,x

    -

    +1d  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Absolute,x

    -

    +1e  ASL     ROL     LSR     ROR     SHX**y) LDX  y) DEC     INC     Absolute,x

    -

    +1f  SLO*    RLA*    SRE*    RRA*    SHA**y) LAX* y) DCP*    ISB*    Absolute,x

    -


    -

           ROR intruction is available on MC650x microprocessors after

    -

           June, 1976.

    -


    -

           Legend:

    -


    -

           t       Jams the machine

    -

           *t      Jams very rarely

    -

           *       Undocumented command

    -

           **      Unusual operation

    -

           y)      indexed using Y instead of X

    -

           ()      indirect instead of absolute

    -


    -

    Note that the NOP instructions do have other addressing modes than the

    -

    implied addressing. The NOP instruction is just like any other load

    -

    instruction, except it does not store the result anywhere nor affects the

    -

    flags.

    -


    -

    6502 Registers

    -


    -

    The NMOS 65xx processors are not ruined with too many registers. In addition

    -

    to that, the registers are mostly 8-bit. Here is a brief description of each

    -

    register:

    -


    -

        PC Program Counter

    -

             This register points the address from which the next instruction

    -

             byte (opcode or parameter) will be fetched. Unlike other

    -

             registers, this one is 16 bits in length. The low and high 8-bit

    -

             halves of the register are called PCL and PCH, respectively. The

    -

             Program Counter may be read by pushing its value on the stack.

    -

             This can be done either by jumping to a subroutine or by causing

    -

             an interrupt.

    -

        S Stack pointer

    -

             The NMOS 65xx processors have 256 bytes of stack memory, ranging

    -

             from $0100 to $01FF. The S register is a 8-bit offset to the stack

    -

             page. In other words, whenever anything is being pushed on the

    -

             stack, it will be stored to the address $0100+S.

    -


    -

             The Stack pointer can be read and written by transfering its value

    -

             to or from the index register X (see below) with the TSX and TXS

    -

             instructions.

    -

        P Processor status

    -

             This 8-bit register stores the state of the processor. The bits in

    -

             this register are called flags. Most of the flags have something

    -

             to do with arithmetic operations.

    -


    -

             The P register can be read by pushing it on the stack (with PHP or

    -

             by causing an interrupt). If you only need to read one flag, you

    -

             can use the branch instructions. Setting the flags is possible by

    -

             pulling the P register from stack or by using the flag set or

    -

             clear instructions.

    -


    -

             Following is a list of the flags, starting from the 8th bit of the

    -

             P register (bit 7, value $80):

    -

                  N Negative flag

    -

                       This flag will be set after any arithmetic operations

    -

                       (when any of the registers A, X or Y is being loaded

    -

                       with a value). Generally, the N flag will be copied from

    -

                       the topmost bit of the register being loaded.

    -


    -

                       Note that TXS (Transfer X to S) is not an arithmetic

    -

                       operation. Also note that the BIT instruction affects

    -

                       the Negative flag just like arithmetic operations.

    -

                       Finally, the Negative flag behaves differently in

    -

                       Decimal operations (see description below).

    -

                  V oVerflow flag

    -

                       Like the Negative flag, this flag is intended to be used

    -

                       with 8-bit signed integer numbers. The flag will be

    -

                       affected by addition and subtraction, the instructions

    -

                       PLP, CLV and BIT, and the hardware signal -SO. Note that

    -

                       there is no SEV instruction, even though the MOS

    -

                       engineers loved to use East European abbreviations, like

    -

                       DDR (Deutsche Demokratische Republik vs. Data Direction

    -

                       Register). (The Russian abbreviation for their former

    -

                       trade association COMECON is SEV.) The -SO (Set

    -

                       Overflow) signal is available on some processors, at

    -

                       least the 6502, to set the V flag. This enables response

    -

                       to an I/O activity in equal or less than three clock

    -

                       cycles when using a BVC instruction branching to itself

    -

                       ($50 $FE).

    -


    -

                       The CLV instruction clears the V flag, and the PLP and

    -

                       BIT instructions copy the flag value from the bit 6 of

    -

                       the topmost stack entry or from memory.

    -


    -

                       After a binary addition or subtraction, the V flag will

    -

                       be set on a sign overflow, cleared otherwise. What is a

    -

                       sign overflow? For instance, if you are trying to add

    -

                       123 and 45 together, the result (168) does not fit in a

    -

                       8-bit signed integer (upper limit 127 and lower limit

    -

                       -128). Similarly, adding -123 to -45 causes the

    -

                       overflow, just like subtracting -45 from 123 or 123 from

    -

                       -45 would do.

    -


    -

                       Like the N flag, the V flag will not be set as expected

    -

                       in the Decimal mode. Later in this document is a precise

    -

                       operation description.

    -


    -

                       A common misbelief is that the V flag could only be set

    -

                       by arithmetic operations, not cleared.

    -

                  1 unused flag

    -

                       To the current knowledge, this flag is always 1.

    -

                  B Break flag

    -

                       This flag is used to distinguish software (BRK)

    -

                       interrupts from hardware interrupts (IRQ or NMI). The B

    -

                       flag is always set except when the P register is being

    -

                       pushed on stack when jumping to an interrupt routine to

    -

                       process only a hardware interrupt.

    -


    -

                       The official NMOS 65xx documentation claims that the BRK

    -

                       instruction could only cause a jump to the IRQ vector

    -

                       ($FFFE). However, if an NMI interrupt occurs while

    -

                       executing a BRK instruction, the processor will jump to

    -

                       the NMI vector ($FFFA), and the P register will be

    -

                       pushed on the stack with the B flag set.

    -

                  D Decimal mode flag

    -

                       This flag is used to select the (Binary Coded) Decimal

    -

                       mode for addition and subtraction. In most applications,

    -

                       the flag is zero.

    -


    -

                       The Decimal mode has many oddities, and it operates

    -

                       differently on CMOS processors. See the description of

    -

                       the ADC, SBC and ARR instructions below.

    -

                  I Interrupt disable flag

    -

                       This flag can be used to prevent the processor from

    -

                       jumping to the IRQ handler vector ($FFFE) whenever the

    -

                       hardware line -IRQ is active. The flag will be

    -

                       automatically set after taking an interrupt, so that the

    -

                       processor would not keep jumping to the interrupt

    -

                       routine if the -IRQ signal remains low for several clock

    -

                       cycles.

    -

                  Z Zero flag

    -

                       The Zero flag will be affected in the same cases than

    -

                       the Negative flag. Generally, it will be set if an

    -

                       arithmetic register is being loaded with the value zero,

    -

                       and cleared otherwise. The flag will behave differently

    -

                       in Decimal operations.

    -

                  C Carry flag

    -

                       This flag is used in additions, subtractions,

    -

                       comparisons and bit rotations. In additions and

    -

                       subtractions, it acts as a 9th bit and lets you to chain

    -

                       operations to calculate with bigger than 8-bit numbers.

    -

                       When subtracting, the Carry flag is the negative of

    -

                       Borrow: if an overflow occurs, the flag will be clear,

    -

                       otherwise set. Comparisons are a special case of

    -

                       subtraction: they assume Carry flag set and Decimal flag

    -

                       clear, and do not store the result of the subtraction

    -

                       anywhere.

    -


    -

                       There are four kinds of bit rotations. All of them store

    -

                       the bit that is being rotated off to the Carry flag. The

    -

                       left shifting instructions are ROL and ASL. ROL copies

    -

                       the initial Carry flag to the lowmost bit of the byte;

    -

                       ASL always clears it. Similarly, the ROR and LSR

    -

                       instructions shift to the right.

    -

        A Accumulator

    -

             The accumulator is the main register for arithmetic and logic

    -

             operations. Unlike the index registers X and Y, it has a direct

    -

             connection to the Arithmetic and Logic Unit (ALU). This is why

    -

             many operations are only available for the accumulator, not the

    -

             index registers.

    -

        X Index register X

    -

             This is the main register for addressing data with indices. It has

    -

             a special addressing mode, indexed indirect, which lets you to

    -

             have a vector table on the zero page.

    -

        Y Index register Y

    -

             The Y register has the least operations available. On the other

    -

             hand, only it has the indirect indexed addressing mode that

    -

             enables access to any memory place without having to use

    -

             self-modifying code.

    -


    -

    6510/8502 Undocumented Commands

    -


    -

    -- A brief explanation about what may happen while using don't care states.

    -


    -

           ANE $8B         A = (A | #$EE) & X & #byte

    -

                           same as

    -

                           A = ((A & #$11 & X) | ( #$EE & X)) & #byte

    -


    -

                           In real 6510/8502 the internal parameter #$11

    -

                           may occasionally be #$10, #$01 or even #$00.

    -

                           This occurs when the video chip starts DMA

    -

                           between the opcode fetch and the parameter fetch

    -

                           of the instruction.  The value probably depends

    -

                           on the data that was left on the bus by the VIC-II.

    -


    -

           LXA $AB         C=Lehti:   A = X = ANE

    -

                           Alternate: A = X = (A & #byte)

    -


    -

                           TXA and TAX have to be responsible for these.

    -


    -

           SHA $93,$9F     Store (A & X & (ADDR_HI + 1))

    -

           SHX $9E         Store (X & (ADDR_HI + 1))

    -

           SHY $9C         Store (Y & (ADDR_HI + 1))

    -

           SHS $9B         SHA and TXS, where X is replaced by (A & X).

    -


    -

                           Note: The value to be stored is copied also

    -

                           to ADDR_HI if page boundary is crossed.

    -


    -

           SBX $CB         Carry and Decimal flags are ignored but the

    -

                           Carry flag will be set in substraction. This

    -

                           is due to the CMP command, which is executed

    -

                           instead of the real SBC.

    -


    -

           ARR $6B         This instruction first performs an AND

    -

                           between the accumulator and the immediate

    -

                           parameter, then it shifts the accumulator to

    -

                           the right. However, this is not the whole

    -

                           truth. See the description below.

    -


    -

    Many undocumented commands do not use AND between registers, the CPU

    -

    just throws the bytes to a bus simultaneously and lets the

    -

    open-collector drivers perform the AND. I.e. the command called 'SAX',

    -

    which is in the STORE section (opcodes $A0...$BF), stores the result

    -

    of (A & X) by this way.

    -


    -

    More fortunate is its opposite, 'LAX' which just loads a byte

    -

    simultaneously into both A and X.

    -


    -

           $6B  ARR

    -


    -

    This instruction seems to be a harmless combination of AND and ROR at

    -

    first sight, but it turns out that it affects the V flag and also has

    -

    a special kind of decimal mode. This is because the instruction has

    -

    inherited some properties of the ADC instruction ($69) in addition to

    -

    the ROR ($6A).

    -


    -

    In Binary mode (D flag clear), the instruction effectively does an AND

    -

    between the accumulator and the immediate parameter, and then shifts

    -

    the accumulator to the right, copying the C flag to the 8th bit. It

    -

    sets the Negative and Zero flags just like the ROR would. The ADC code

    -

    shows up in the Carry and oVerflow flags. The C flag will be copied

    -

    from the bit 6 of the result (which doesn't seem too logical), and the

    -

    V flag is the result of an Exclusive OR operation between the bit 6

    -

    and the bit 5 of the result.  This makes sense, since the V flag will

    -

    be normally set by an Exclusive OR, too.

    -


    -

    In Decimal mode (D flag set), the ARR instruction first performs the

    -

    AND and ROR, just like in Binary mode. The N flag will be copied from

    -

    the initial C flag, and the Z flag will be set according to the ROR

    -

    result, as expected. The V flag will be set if the bit 6 of the

    -

    accumulator changed its state between the AND and the ROR, cleared

    -

    otherwise.

    -


    -

    Now comes the funny part. If the low nybble of the AND result,

    -

    incremented by its lowmost bit, is greater than 5, the low nybble in

    -

    the ROR result will be incremented by 6. The low nybble may overflow

    -

    as a consequence of this BCD fixup, but the high nybble won't be

    -

    adjusted. The high nybble will be BCD fixed in a similar way. If the

    -

    high nybble of the AND result, incremented by its lowmost bit, is

    -

    greater than 5, the high nybble in the ROR result will be incremented

    -

    by 6, and the Carry flag will be set. Otherwise the C flag will be

    -

    cleared.

    -


    -

    To help you understand this description, here is a C routine that

    -

    illustrates the ARR operation in Decimal mode:

    -


    -

           unsigned

    -

              A,  /* Accumulator */

    -

              AL, /* low nybble of accumulator */

    -

              AH, /* high nybble of accumulator */

    -


    -

              C,  /* Carry flag */

    -

              Z,  /* Zero flag */

    -

              V,  /* oVerflow flag */

    -

              N,  /* Negative flag */

    -


    -

              t,  /* temporary value */

    -

              s;  /* value to be ARRed with Accumulator */

    -


    -

           t = A & s;                      /* Perform the AND. */

    -


    -

           AH = t >> 4;                    /* Separate the high */

    -

           AL = t & 15;                    /* and low nybbles. */

    -


    -

           N = C;                          /* Set the N and */

    -

           Z = !(A = (t >> 1) | (C << 7)); /* Z flags traditionally */

    -

           V = (t ^ A) & 64;               /* and V flag in a weird way. */

    -


    -

           if (AL + (AL & 1) > 5)          /* BCD "fixup" for low nybble. */

    -

             A = (A & 0xF0) | ((A + 6) & 0xF);

    -


    -

           if (C = AH + (AH & 1) > 5)      /* Set the Carry flag. */

    -

             A = (A + 0x60) & 0xFF;        /* BCD "fixup" for high nybble. */

    -


    -

           $CB  SBX   X <- (A & X) - Immediate

    -


    -

    The 'SBX' ($CB) may seem to be very complex operation, even though it

    -

    is a combination of the subtraction of accumulator and parameter, as

    -

    in the 'CMP' instruction, and the command 'DEX'. As a result, both A

    -

    and X are connected to ALU but only the subtraction takes place. Since

    -

    the comparison logic was used, the result of subtraction should be

    -

    normally ignored, but the 'DEX' now happily stores to X the value of

    -

    (A & X) - Immediate.  That is why this instruction does not have any

    -

    decimal mode, and it does not affect the V flag. Also Carry flag will

    -

    be ignored in the subtraction but set according to the result.

    -


    -

    Proof:

    -


    -

    begin 644 vsbx

    -

    M`0@9$,D'GL(H-#,IJC(U-JS"*#0T*:HR-@```*D`H#V1*Z`_D2N@09$KJ0>%

    -

    M^QBE^VEZJ+$KH#F1*ZD`2"BI`*(`RP`(:-B@.5$K*4#P`E@`H#VQ*SAI`)$K

    -

    JD-Z@/[$K:0"1*Y#4J2X@TO\XH$&Q*VD`D2N0Q,;[$+188/_^]_:_OK>V

    -

    `

    -

    end

    -


    -

    and

    -


    -

    begin 644 sbx

    -

    M`0@9$,D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'BI`*!-D2N@3Y$KH%&1*ZD#

    -

    MA?L8I?M*2)`#J1@LJ3B@29$K:$J0`ZGX+*G8R)$K&/BXJ?2B8\L)AOP(:(7]

    -

    MV#B@3;$KH$\Q*Z!1\2L(1?SP`0!H1?TIM]#XH$VQ*SAI`)$KD,N@3[$K:0"1

    -

    9*Y#!J2X@TO\XH%&Q*VD`D2N0L<;[$))88-#X

    -

    `

    -

    end

    -


    -

    These test programs show if your machine is compatible with ours

    -

    regarding the opcode $CB. The first test, vsbx, proves that SBX does

    -

    not affect the V flag. The latter one, sbx, proves the rest of our

    -

    theory. The vsbx test tests 33554432 SBX combinations (16777216

    -

    different A, X and Immediate combinations, and two different V flag

    -

    states), and the sbx test doubles that amount (16777216*4 D and C flag

    -

    combinations). Both tests have run successfully on a C64 and a Vic20.

    -

    They ought to run on C16, +4 and the PET series as well. The tests

    -

    stop with BRK, if the opcode $CB does not work as expected. Successful

    -

    operation ends in RTS. As the tests are very slow, they print dots on

    -

    the screen while running so that you know that the machine has not

    -

    jammed. On computers running at 1 MHz, the first test prints

    -

    approximately one dot every four seconds and a total of 2048 dots,

    -

    whereas the second one prints half that amount, one dot every seven

    -

    seconds.

    -


    -

    If the tests fail on your machine, please let us know your processor's

    -

    part number and revision. If possible, save the executable (after it

    -

    has stopped with BRK) under another name and send it to us so that we

    -

    know at which stage the program stopped.

    -


    -

    The following program is a Commodore 64 executable that Marko M"akel"a

    -

    developed when trying to find out how the V flag is affected by SBX.

    -

    (It was believed that the SBX affects the flag in a weird way, and

    -

    this program shows how SBX sets the flag differently from SBC.)  You

    -

    may find the subroutine at $C150 useful when researching other

    -

    undocumented instructions' flags. Run the program in a machine

    -

    language monitor, as it makes use of the BRK instruction. The result

    -

    tables will be written on pages $C2 and $C3.

    -


    -

    begin 644 sbx-c100

    -

    M`,%XH`",#L&,$,&,$L&XJ8*B@LL7AOL(:(7\N#BM#L$M$,'M$L$(Q?OP`B@`

    -

    M:$7\\`,@4,'N#L'0U.X0P=#/SB#0[A+!T,<``````````````)BJ\!>M#L$M

    -

    L$,'=_\'0":T2P=W_PM`!8,K0Z:T.P2T0P9D`PID`!*T2P9D`PYD`!

    -


    -

    Other undocumented instructions usually cause two preceding opcodes

    -

    being executed. However 'NOP' seems to completely disappear from 'SBC'

    -

    code $EB.

    -


    -

    The most difficult to comprehend are the rest of the instructions

    -

    located on the '$0B' line.

    -


    -

    All the instructions located at the positive (left) side of this line

    -

    should rotate either memory or the accumulator, but the addressing

    -

    mode turns out to be immediate! No problem. Just read the operand, let

    -

    it be ANDed with the accumulator and finally use accumulator

    -

    addressing mode for the instructions above them.

    -


    -

    RELIGION_MODE_ON

    -

    /* This part of the document is not accurate.  You can

    -

      read it as a fairy tale, but do not count on it when

    -

      performing your own measurements. */

    -


    -

    The rest two instructions on the same line, called 'ANE' and 'LXA'

    -

    ($8B and $AB respectively) often give quite unpredictable results.

    -

    However, the most usual operation is to store ((A | #$ee) & X & #$nn)

    -

    to accumulator. Note that this does not work reliably in a real 64!

    -

    In the Commodore 128 the opcode $8B uses values 8C, CC, EE, and

    -

    occasionally 0C and 8E for the OR instead of EE,EF,FE and FF used in

    -

    the C64. With a C128 running at 2 MHz #$EE is always used.  Opcode $AB

    -

    does not cause this OR taking place on 8502 while 6510 always performs

    -

    it. Note that this behaviour depends on processor and/or video chip

    -

    revision.

    -


    -

    Let's take a closer look at $8B (6510).

    -


    -

           A <- X & D & (A | VAL)

    -


    -

           where VAL comes from this table:

    -


    -

          X high   D high  D low   VAL

    -

           even     even    ---    $EE (1)

    -

           even     odd     ---    $EE

    -

           odd      even    ---    $EE

    -

           odd      odd      0     $EE

    -

           odd      odd     not 0  $FE (2)

    -


    -

    (1) If the bottom 2 bits of A are both 1, then the LSB of the result may

    -

       be 0. The values of X and D are different every time I run the test.

    -

       This appears to be very rare.

    -

    (2) VAL is $FE most of the time. Sometimes it is $EE - it seems to be random,

    -

       not related to any of the data. This is much more common than (1).

    -


    -

     In decimal mode, VAL is usually $FE.

    -


    -

    Two different functions have been discovered for LAX, opcode $AB. One

    -

    is A = X = ANE (see above) and the other, encountered with 6510 and

    -

    8502, is less complicated A = X = (A & #byte). However, according to

    -

    what is reported, the version altering only the lowest bits of each

    -

    nybble seems to be more common.

    -


    -

    What happens, is that $AB loads a value into both A and X, ANDing the

    -

    low bit of each nybble with the corresponding bit of the old

    -

    A. However, there are exceptions. Sometimes the low bit is cleared

    -

    even when A contains a '1', and sometimes other bits are cleared. The

    -

    exceptions seem random (they change every time I run the test). Oops -

    -

    that was in decimal mode. Much the same with D=0.

    -


    -

    What causes the randomness?  Probably it is that it is marginal logic

    -

    levels - when too much wired-anding goes on, some of the signals get

    -

    very close to the threshold. Perhaps we're seeing some of them step

    -

    over it. The low bit of each nybble is special, since it has to cope

    -

    with carry differently (remember decimal mode). We never see a '0'

    -

    turn into a '1'.

    -


    -

    Since these instructions are unpredictable, they should not be used.

    -


    -

    There is still very strange instruction left, the one named SHA/X/Y,

    -

    which is the only one with only indexed addressing modes. Actually,

    -

    the commands 'SHA', 'SHX' and 'SHY' are generated by the indexing

    -

    algorithm.

    -


    -

    While using indexed addressing, effective address for page boundary

    -

    crossing is calculated as soon as possible so it does not slow down

    -

    operation. As a result, in the case of SHA/X/Y, the address and data

    -

    are processed at the same time making AND between them to take place.

    -

    Thus, the value to be stored by SAX, for example, is in fact (A & X &

    -

    (ADDR_HI + 1)).  On page boundary crossing the same value is copied

    -

    also to high byte of the effective address.

    -


    -

    RELIGION_MODE_OFF

    -


    -


    -

    Register selection for load and store

    -


    -

      bit1 bit0     A  X  Y

    -

       0    0             x

    -

       0    1          x

    -

       1    0       x

    -

       1    1       x  x

    -


    -

    So, A and X are selected by bits 1 and 0 respectively, while

    -

    ~(bit1|bit0) enables Y.

    -


    -

    Indexing is determined by bit4, even in relative addressing mode,

    -

    which is one kind of indexing.

    -


    -

    Lines containing opcodes xxx000x1 (01 and 03) are treated as absolute

    -

    after the effective address has been loaded into CPU.

    -


    -

    Zeropage,y and Absolute,y (codes 10x1 x11x) are distinquished by bit5.

    -


    -


    -

    Decimal mode in NMOS 6500 series

    -


    -

     Most sources claim that the NMOS 6500 series sets the N, V and Z

    -

    flags unpredictably when performing addition or subtraction in decimal

    -

    mode. Of course, this is not true. While testing how the flags are

    -

    set, I also wanted to see what happens if you use illegal BCD values.

    -


    -

     ADC works in Decimal mode in a quite complicated way. It is amazing

    -

    how it can do that all in a single cycle. Here's a C code version of

    -

    the instruction:

    -


    -

           unsigned

    -

              A,  /* Accumulator */

    -

              AL, /* low nybble of accumulator */

    -

              AH, /* high nybble of accumulator */

    -


    -

              C,  /* Carry flag */

    -

              Z,  /* Zero flag */

    -

              V,  /* oVerflow flag */

    -

              N,  /* Negative flag */

    -


    -

              s;  /* value to be added to Accumulator */

    -


    -

           AL = (A & 15) + (s & 15) + C;         /* Calculate the lower nybble. */

    -


    -

           AH = (A >> 4) + (s >> 4) + (AL > 15); /* Calculate the upper nybble. */

    -


    -

           if (AL > 9) AL += 6;                  /* BCD fixup for lower nybble. */

    -


    -

           Z = ((A + s + C) & 255 != 0);         /* Zero flag is set just

    -

                                                    like in Binary mode. */

    -


    -

           /* Negative and Overflow flags are set with the same logic than in

    -

              Binary mode, but after fixing the lower nybble. */

    -


    -

           N = (AH & 8 != 0);

    -

           V = ((AH << 4) ^ A) & 128 && !((A ^ s) & 128);

    -


    -

           if (AH > 9) AH += 6;                  /* BCD fixup for upper nybble. */

    -


    -

           /* Carry is the only flag set after fixing the result. */

    -


    -

           C = (AH > 15);

    -

           A = ((AH << 4) | (AL & 15)) & 255;

    -


    -

     The C flag is set as the quiche eaters expect, but the N and V flags

    -

    are set after fixing the lower nybble but before fixing the upper one.

    -

    They use the same logic than binary mode ADC. The Z flag is set before

    -

    any BCD fixup, so the D flag does not have any influence on it.

    -


    -

    Proof: The following test program tests all 131072 ADC combinations in

    -

          Decimal mode, and aborts with BRK if anything breaks this theory.

    -

          If everything goes well, it ends in RTS.

    -


    -

    begin 600 dadc

    -

    M 0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@   'BI&*  A/N$_$B@+)$KH(V1

    -

    M*Q@(I?PI#X7]I?LI#V7]R0J0 FD%J"D/A?VE^RGP9?PI\ C $) ":0^JL @H

    -

    ML ?)H) &""@X:5\X!?V%_0AH*3W@ ! ""8"HBD7[$ JE^T7\, 28"4"H**7[

    -

    M9?S0!)@) J@8N/BE^V7\V A%_= G:(3]1?W0(.;[T(?F_-"#:$D8\ )88*D=

    -

    0&&4KA?NI &4LA?RI.&S[  A%

    -


    -

    end

    -


    -

     All programs in this chapter have been successfully tested on a Vic20

    -

    and a Commodore 64 and a Commodore 128D in C64 mode. They should run on

    -

    C16, +4 and on the PET series as well. If not, please report the problem

    -

    to Marko M"akel"a. Each test in this chapter should run in less than a

    -

    minute at 1 MHz.

    -


    -

    SBC is much easier. Just like CMP, its flags are not affected by

    -

    the D flag.

    -


    -

    Proof:

    -


    -

    begin 600 dsbc-cmp-flags

    -

    M 0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@   'B@ (3[A/RB XH8:66HL2N@

    -

    M09$KH$R1*XII::BQ*Z!%D2N@4)$K^#BXI?OE_-@(:(7].+BE^^7\"&A%_? !

    -

    5 .;[T./F_-#?RA"_8!@X&#CEY<7%

    -


    -

    end

    -


    -

     The only difference in SBC's operation in decimal mode from binary mode

    -

    is the result-fixup:

    -


    -

           unsigned

    -

              A,  /* Accumulator */

    -

              AL, /* low nybble of accumulator */

    -

              AH, /* high nybble of accumulator */

    -


    -

              C,  /* Carry flag */

    -

              Z,  /* Zero flag */

    -

              V,  /* oVerflow flag */

    -

              N,  /* Negative flag */

    -


    -

              s;  /* value to be added to Accumulator */

    -


    -

           AL = (A & 15) - (s & 15) - !C;        /* Calculate the lower nybble. */

    -


    -

           if (AL & 16) AL -= 6;                 /* BCD fixup for lower nybble. */

    -


    -

           AH = (A >> 4) - (s >> 4) - (AL & 16); /* Calculate the upper nybble. */

    -


    -

           if (AH & 16) AH -= 6;                 /* BCD fixup for upper nybble. */

    -


    -

           /* The flags are set just like in Binary mode. */

    -


    -

           C = (A - s - !C) & 256 != 0;

    -

           Z = (A - s - !C) & 255 != 0;

    -

           V = ((A - s - !C) ^ s) & 128 && (A ^ s) & 128;

    -

           N = (A - s - !C) & 128 != 0;

    -


    -

           A = ((AH << 4) | (AL & 15)) & 255;

    -


    -

     Again Z flag is set before any BCD fixup. The N and V flags are set

    -

    at any time before fixing the high nybble. The C flag may be set in any

    -

    phase.

    -


    -

     Decimal subtraction is easier than decimal addition, as you have to

    -

    make the BCD fixup only when a nybble overflows. In decimal addition,

    -

    you had to verify if the nybble was greater than 9. The processor has

    -

    an internal "half carry" flag for the lower nybble, used to trigger

    -

    the BCD fixup. When calculating with legal BCD values, the lower nybble

    -

    cannot overflow again when fixing it.

    -

    So, the processor does not handle overflows while performing the fixup.

    -

    Similarly, the BCD fixup occurs in the high nybble only if the value

    -

    overflows, i.e. when the C flag will be cleared.

    -


    -

     Because SBC's flags are not affected by the Decimal mode flag, you

    -

    could guess that CMP uses the SBC logic, only setting the C flag

    -

    first. But the SBX instruction shows that CMP also temporarily clears

    -

    the D flag, although it is totally unnecessary.

    -


    -

     The following program, which tests SBC's result and flags,

    -

    contains the 6502 version of the pseudo code example above.

    -


    -

    begin 600 dsbc

    -

    M 0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@   'BI&*  A/N$_$B@+)$KH':1

    -

    M*S@(I?PI#X7]I?LI#^7]L /I!1@I#ZBE_"GPA?VE^RGP"#CE_2GPL KI7RBP

    -

    M#ND/.+ )*+ &Z0^P NE?A/T%_87]*+BE^^7\"&BH.+CXI?OE_-@(1?W0FVB$

    -

    8_47]T)3F^]">YOS0FFA)&- $J3C0B%A@

    -


    -

    end

    -


    -

     Obviously the undocumented instructions RRA (ROR+ADC) and ISB

    -

    (INC+SBC) have inherited also the decimal operation from the official

    -

    instructions ADC and SBC. The program droradc proves this statement

    -

    for ROR, and the dincsbc test proves this for ISB. Finally,

    -

    dincsbc-deccmp proves that ISB's and DCP's (DEC+CMP) flags are not

    -

    affected by the D flag.

    -


    -

    begin 644 droradc

    -

    M`0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'BI&*``A/N$_$B@+)$KH(V1

    -

    M*S@(I?PI#X7]I?LI#V7]R0J0`FD%J"D/A?VE^RGP9?PI\`C`$)`":0^JL`@H

    -

    ML`?)H)`&""@X:5\X!?V%_0AH*3W@`!`""8"HBD7[$`JE^T7\,`28"4"H**7[

    -

    M9?S0!)@)`J@XN/BE^R;\9_S8"$7]T"=HA/U%_=`@YOO0A>;\T(%H21CP`EA@

    -

    2J1T892N%^ZD`92R%_*DX;/L`

    -

    `

    -

    end

    -


    -

    begin 644 dincsbc

    -

    M`0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'BI&*``A/N$_$B@+)$KH':1

    -

    M*S@(I?PI#X7]I?LI#^7]L`/I!1@I#ZBE_"GPA?VE^RGP"#CE_2GPL`KI7RBP

    -

    M#ND/.+`)*+`&Z0^P`NE?A/T%_87]*+BE^^7\"&BH.+CXI?O&_.?\V`A%_="9

    -

    ::(3]1?W0DN;[T)SF_-"8:$D8T`2I.-"&6&#\

    -

    `

    -

    end

    -


    -

    begin 644 dincsbc-deccmp

    -

    M`0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'B@`(3[A/RB`XH8:7>HL2N@

    -

    M3Y$KH%R1*XII>ZBQ*Z!3D2N@8)$KBFE_J+$KH%61*Z!BD2OX.+BE^^;\Q_S8

    -

    L"&B%_3BXI?OF_,?\"&A%_?`!`.;[T-_F_-#;RA"M8!@X&#CFYL;&Q\?GYP#8

    -

    `

    -

    end

    -


    -


    -

    6510 features

    -


    -

      o  PHP always pushes the Break (B) flag as a `1' to the stack.

    -

         Jukka Tapanim"aki claimed in C=lehti issue 3/89, on page 27 that the

    -

         processor makes a logical OR between the status register's bit 4

    -

         and the bit 8 of the stack pointer register (which is always 1).

    -

         He did not give any reasons for this argument, and has refused to clarify

    -

         it afterwards. Well, this was not the only error in his article...

    -


    -

      o  Indirect addressing modes do not handle page boundary crossing at all.

    -

         When the parameter's low byte is $FF, the effective address wraps

    -

         around and the CPU fetches high byte from $xx00 instead of $xx00+$0100.

    -

         E.g. JMP ($01FF) fetches PCL from $01FF and PCH from $0100,

    -

         and LDA ($FF),Y fetches the base address from $FF and $00.

    -


    -

      o  Indexed zero page addressing modes never fix the page address on

    -

         crossing the zero page boundary.

    -

         E.g. LDX #$01 : LDA ($FF,X) loads the effective address from $00 and $01.

    -


    -

      o  The processor always fetches the byte following a relative branch

    -

         instruction. If the branch is taken, the processor reads then the

    -

         opcode from the destination address. If page boundary is crossed, it

    -

         first reads a byte from the old page from a location that is bigger

    -

         or smaller than the correct address by one page.

    -


    -

      o  If you cross a page boundary in any other indexed mode,

    -

         the processor reads an incorrect location first, a location that is

    -

         smaller by one page.

    -


    -

      o  Read-Modify-Write instructions write unmodified data, then modified

    -

         (so INC effectively does LDX loc;STX loc;INX;STX loc)

    -


    -

      o  -RDY is ignored during writes

    -

         (This is why you must wait 3 cycles before doing any DMA --

    -

         the maximum number of consecutive writes is 3, which occurs

    -

         during interrupts except -RESET.)

    -


    -

      o  Some undefined opcodes may give really unpredictable results.

    -


    -

      o  All registers except the Program Counter remain unmodified after -RESET.

    -

         (This is why you must preset D and I flags in the RESET handler.)

    -


    -


    -

    Different CPU types

    -


    -

    The Rockwell data booklet 29651N52 (technical information about R65C00

    -

    microprocessors, dated October 1984), lists the following differences between

    -

    NMOS R6502 microprocessor and CMOS R65C00 family:

    -


    -


    -

        1. Indexed addressing across page boundary.

    -

                NMOS: Extra read of invalid address.

    -

                CMOS: Extra read of last instruction byte.

    -


    -


    -

        2. Execution of invalid op codes.

    -

                NMOS: Some terminate only by reset. Results are undefined.

    -

                CMOS: All are NOPs (reserved for future use).

    -


    -


    -

        3. Jump indirect, operand = XXFF.

    -

                NMOS: Page address does not increment.

    -

                CMOS: Page address increments and adds one additional cycle.

    -


    -


    -

        4. Read/modify/write instructions at effective address.

    -

                NMOS: One read and two write cycles.

    -

                CMOS: Two read and one write cycle.

    -


    -


    -

        5. Decimal flag.

    -

                NMOS: Indeterminate after reset.

    -

                CMOS: Initialized to binary mode (D=0) after reset and interrupts.

    -


    -


    -

        6. Flags after decimal operation.

    -

                NMOS: Invalid N, V and Z flags.

    -

                CMOS: Valid flag adds one additional cycle.

    -


    -


    -

        7. Interrupt after fetch of BRK instruction.

    -

                NMOS: Interrupt vector is loaded, BRK vector is ignored.

    -

                CMOS: BRK is executed, then interrupt is executed.

    -


    -


    -

    6510 Instruction Timing

    -


    -

     The NMOS 6500 series processors always perform at least two reads

    -

    for each instruction. In addition to the operation code (opcode), they

    -

    fetch the next byte. This is quite efficient, as most instructions are

    -

    two or three bytes long.

    -


    -

     The processors also use a sort of pipelining. If an instruction does

    -

    not store data in memory on its last cycle, the processor can fetch

    -

    the opcode of the next instruction while executing the last cycle. For

    -

    instance, the instruction EOR #$FF truly takes three cycles. On the

    -

    first cycle, the opcode $49 will be fetched. During the second cycle

    -

    the processor decodes the opcode and fetches the parameter #$FF. On

    -

    the third cycle, the processor will perform the operation and store

    -

    the result to accumulator, but simultaneously it fetches the opcode

    -

    for the next instruction. This is why the instruction effectively

    -

    takes only two cycles.

    -


    -

     The following tables show what happens on the bus while executing

    -

    different kinds of instructions.

    -


    -

     Interrupts

    -


    -

        NMI and IRQ both take 7 cycles. Their timing diagram is much like

    -

        BRK's (see below). IRQ will be executed only when the I flag is

    -

        clear. IRQ and BRK both set the I flag, whereas the NMI does not

    -

        affect its state.

    -


    -

        The processor will usually wait for the current instruction to

    -

        complete before executing the interrupt sequence. To process the

    -

        interrupt before the next instruction, the interrupt must occur

    -

        before the last cycle of the current instruction.

    -


    -

        There is one exception to this rule: the BRK instruction. If a

    -

        hardware interrupt (NMI or IRQ) occurs before the fourth (flags

    -

        saving) cycle of BRK, the BRK instruction will be skipped, and

    -

        the processor will jump to the hardware interrupt vector. This

    -

        sequence will always take 7 cycles.

    -


    -

        You do not completely lose the BRK interrupt, the B flag will be

    -

        set in the pushed status register if a BRK instruction gets

    -

        interrupted. When BRK and IRQ occur at the same time, this does

    -

        not cause any problems, as your program will consider it as a

    -

        BRK, and the IRQ would occur again after the processor returned

    -

        from your BRK routine, unless you cleared the interrupt source in

    -

        your BRK handler. But the simultaneous occurrence of NMI and BRK

    -

        is far more fatal. If you do not check the B flag in the NMI

    -

        routine and subtract two from the return address when needed, the

    -

        BRK instruction will be skipped.

    -


    -

        If the NMI and IRQ interrupts overlap each other (one interrupt

    -

        occurs before fetching the interrupt vector for the other

    -

        interrupt), the processor will most probably jump to the NMI

    -

        vector in every case, and then jump to the IRQ vector after

    -

        processing the first instruction of the NMI handler. This has not

    -

        been measured yet, but the IRQ is very similar to BRK, and many

    -

        sources state that the NMI has higher priority than IRQ. However,

    -

        it might be that the processor takes the interrupt that comes

    -

        later, i.e. you could lose an NMI interrupt if an IRQ occurred in

    -

        four cycles after it.

    -


    -

        After finishing the interrupt sequence, the processor will start

    -

        to execute the first instruction of the interrupt routine. This

    -

        proves that the processor uses a sort of pipelining: it finishes

    -

        the current instruction (or interrupt sequence) while reading the

    -

        opcode of the next instruction.

    -


    -

        RESET does not push program counter on stack, and it lasts

    -

        probably 6 cycles after deactivating the signal. Like NMI, RESET

    -

        preserves all registers except PC.

    -


    -

     Instructions accessing the stack

    -


    -

        BRK

    -


    -

           #  address R/W description

    -

          --- ------- --- -----------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  read next instruction byte (and throw it away),

    -

                          increment PC

    -

           3  $0100,S  W  push PCH on stack (with B flag set), decrement S

    -

           4  $0100,S  W  push PCL on stack, decrement S

    -

           5  $0100,S  W  push P on stack, decrement S

    -

           6   $FFFE   R  fetch PCL

    -

           7   $FFFF   R  fetch PCH

    -


    -

        RTI

    -


    -

           #  address R/W description

    -

          --- ------- --- -----------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  read next instruction byte (and throw it away)

    -

           3  $0100,S  R  increment S

    -

           4  $0100,S  R  pull P from stack, increment S

    -

           5  $0100,S  R  pull PCL from stack, increment S

    -

           6  $0100,S  R  pull PCH from stack

    -


    -

        RTS

    -


    -

           #  address R/W description

    -

          --- ------- --- -----------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  read next instruction byte (and throw it away)

    -

           3  $0100,S  R  increment S

    -

           4  $0100,S  R  pull PCL from stack, increment S

    -

           5  $0100,S  R  pull PCH from stack

    -

           6    PC     R  increment PC

    -


    -

        PHA, PHP

    -


    -

           #  address R/W description

    -

          --- ------- --- -----------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  read next instruction byte (and throw it away)

    -

           3  $0100,S  W  push register on stack, decrement S

    -


    -

        PLA, PLP

    -


    -

           #  address R/W description

    -

          --- ------- --- -----------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  read next instruction byte (and throw it away)

    -

           3  $0100,S  R  increment S

    -

           4  $0100,S  R  pull register from stack

    -


    -

        JSR

    -


    -

           #  address R/W description

    -

          --- ------- --- -------------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch low address byte, increment PC

    -

           3  $0100,S  R  internal operation (predecrement S?)

    -

           4  $0100,S  W  push PCH on stack, decrement S

    -

           5  $0100,S  W  push PCL on stack, decrement S

    -

           6    PC     R  copy low address byte to PCL, fetch high address

    -

                          byte to PCH

    -


    -

     Accumulator or implied addressing

    -


    -

           #  address R/W description

    -

          --- ------- --- -----------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  read next instruction byte (and throw it away)

    -


    -

     Immediate addressing

    -


    -

           #  address R/W description

    -

          --- ------- --- ------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch value, increment PC

    -


    -

     Absolute addressing

    -


    -

        JMP

    -


    -

           #  address R/W description

    -

          --- ------- --- -------------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch low address byte, increment PC

    -

           3    PC     R  copy low address byte to PCL, fetch high address

    -

                          byte to PCH

    -


    -

        Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    -

                           LAX, NOP)

    -


    -

           #  address R/W description

    -

          --- ------- --- ------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch low byte of address, increment PC

    -

           3    PC     R  fetch high byte of address, increment PC

    -

           4  address  R  read from effective address

    -


    -

        Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    -

                                        SLO, SRE, RLA, RRA, ISB, DCP)

    -


    -

           #  address R/W description

    -

          --- ------- --- ------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch low byte of address, increment PC

    -

           3    PC     R  fetch high byte of address, increment PC

    -

           4  address  R  read from effective address

    -

           5  address  W  write the value back to effective address,

    -

                          and do the operation on it

    -

           6  address  W  write the new value to effective address

    -


    -

        Write instructions (STA, STX, STY, SAX)

    -


    -

           #  address R/W description

    -

          --- ------- --- ------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch low byte of address, increment PC

    -

           3    PC     R  fetch high byte of address, increment PC

    -

           4  address  W  write register to effective address

    -


    -

     Zero page addressing

    -


    -

        Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    -

                           LAX, NOP)

    -


    -

           #  address R/W description

    -

          --- ------- --- ------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch address, increment PC

    -

           3  address  R  read from effective address

    -


    -

        Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    -

                                        SLO, SRE, RLA, RRA, ISB, DCP)

    -


    -

           #  address R/W description

    -

          --- ------- --- ------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch address, increment PC

    -

           3  address  R  read from effective address

    -

           4  address  W  write the value back to effective address,

    -

                          and do the operation on it

    -

           5  address  W  write the new value to effective address

    -


    -

        Write instructions (STA, STX, STY, SAX)

    -


    -

           #  address R/W description

    -

          --- ------- --- ------------------------------------------

    -

           1    PC     R  fetch opcode, increment PC

    -

           2    PC     R  fetch address, increment PC

    -

           3  address  W  write register to effective address

    -


    -

     Zero page indexed addressing

    -


    -

        Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    -

                           LAX, NOP)

    -


    -

           #   address  R/W description

    -

          --- --------- --- ------------------------------------------

    -

           1     PC      R  fetch opcode, increment PC

    -

           2     PC      R  fetch address, increment PC

    -

           3   address   R  read from address, add index register to it

    -

           4  address+I* R  read from effective address

    -


    -

          Notes: I denotes either index register (X or Y).

    -


    -

                 * The high byte of the effective address is always zero,

    -

                   i.e. page boundary crossings are not handled.

    -


    -

        Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    -

                                        SLO, SRE, RLA, RRA, ISB, DCP)

    -


    -

           #   address  R/W description

    -

          --- --------- --- ---------------------------------------------

    -

           1     PC      R  fetch opcode, increment PC

    -

           2     PC      R  fetch address, increment PC

    -

           3   address   R  read from address, add index register X to it

    -

           4  address+X* R  read from effective address

    -

           5  address+X* W  write the value back to effective address,

    -

                            and do the operation on it

    -

           6  address+X* W  write the new value to effective address

    -


    -

          Note: * The high byte of the effective address is always zero,

    -

                  i.e. page boundary crossings are not handled.

    -


    -

        Write instructions (STA, STX, STY, SAX)

    -


    -

           #   address  R/W description

    -

          --- --------- --- -------------------------------------------

    -

           1     PC      R  fetch opcode, increment PC

    -

           2     PC      R  fetch address, increment PC

    -

           3   address   R  read from address, add index register to it

    -

           4  address+I* W  write to effective address

    -


    -

          Notes: I denotes either index register (X or Y).

    -


    -

                 * The high byte of the effective address is always zero,

    -

                   i.e. page boundary crossings are not handled.

    -


    -

     Absolute indexed addressing

    -


    -

        Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    -

                           LAX, LAE, SHS, NOP)

    -


    -

           #   address  R/W description

    -

          --- --------- --- ------------------------------------------

    -

           1     PC      R  fetch opcode, increment PC

    -

           2     PC      R  fetch low byte of address, increment PC

    -

           3     PC      R  fetch high byte of address,

    -

                            add index register to low address byte,

    -

                            increment PC

    -

           4  address+I* R  read from effective address,

    -

                            fix the high byte of effective address

    -

           5+ address+I  R  re-read from effective address

    -


    -

          Notes: I denotes either index register (X or Y).

    -


    -

                 * The high byte of the effective address may be invalid

    -

                   at this time, i.e. it may be smaller by $100.

    -


    -

                 + This cycle will be executed only if the effective address

    -

                   was invalid during cycle #4, i.e. page boundary was crossed.

    -


    -

        Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    -

                                        SLO, SRE, RLA, RRA, ISB, DCP)

    -


    -

           #   address  R/W description

    -

          --- --------- --- ------------------------------------------

    -

           1    PC       R  fetch opcode, increment PC

    -

           2    PC       R  fetch low byte of address, increment PC

    -

           3    PC       R  fetch high byte of address,

    -

                            add index register X to low address byte,

    -

                            increment PC

    -

           4  address+X* R  read from effective address,

    -

                            fix the high byte of effective address

    -

           5  address+X  R  re-read from effective address

    -

           6  address+X  W  write the value back to effective address,

    -

                            and do the operation on it

    -

           7  address+X  W  write the new value to effective address

    -


    -

          Notes: * The high byte of the effective address may be invalid

    -

                   at this time, i.e. it may be smaller by $100.

    -


    -

        Write instructions (STA, STX, STY, SHA, SHX, SHY)

    -


    -

           #   address  R/W description

    -

          --- --------- --- ------------------------------------------

    -

           1     PC      R  fetch opcode, increment PC

    -

           2     PC      R  fetch low byte of address, increment PC

    -

           3     PC      R  fetch high byte of address,

    -

                            add index register to low address byte,

    -

                            increment PC

    -

           4  address+I* R  read from effective address,

    -

                            fix the high byte of effective address

    -

           5  address+I  W  write to effective address

    -


    -

          Notes: I denotes either index register (X or Y).

    -


    -

                 * The high byte of the effective address may be invalid

    -

                   at this time, i.e. it may be smaller by $100. Because

    -

                   the processor cannot undo a write to an invalid

    -

                   address, it always reads from the address first.

    -


    -

     Relative addressing (BCC, BCS, BNE, BEQ, BPL, BMI, BVC, BVS)

    -


    -

           #   address  R/W description

    -

          --- --------- --- ---------------------------------------------

    -

           1     PC      R  fetch opcode, increment PC

    -

           2     PC      R  fetch operand, increment PC

    -

           3     PC      R  Fetch opcode of next instruction,

    -

                            If branch is taken, add operand to PCL.

    -

                            Otherwise increment PC.

    -

           4+    PC*     R  Fetch opcode of next instruction.

    -

                            Fix PCH. If it did not change, increment PC.

    -

           5!    PC      R  Fetch opcode of next instruction,

    -

                            increment PC.

    -


    -

          Notes: The opcode fetch of the next instruction is included to

    -

                 this diagram for illustration purposes. When determining

    -

                 real execution times, remember to subtract the last

    -

                 cycle.

    -


    -

                 * The high byte of Program Counter (PCH) may be invalid

    -

                   at this time, i.e. it may be smaller or bigger by $100.

    -


    -

                 + If branch is taken, this cycle will be executed.

    -


    -

                 ! If branch occurs to different page, this cycle will be

    -

                   executed.

    -


    -

     Indexed indirect addressing

    -


    -

        Read instructions (LDA, ORA, EOR, AND, ADC, CMP, SBC, LAX)

    -


    -

           #    address   R/W description

    -

          --- ----------- --- ------------------------------------------

    -

           1      PC       R  fetch opcode, increment PC

    -

           2      PC       R  fetch pointer address, increment PC

    -

           3    pointer    R  read from the address, add X to it

    -

           4   pointer+X   R  fetch effective address low

    -

           5  pointer+X+1  R  fetch effective address high

    -

           6    address    R  read from effective address

    -


    -

          Note: The effective address is always fetched from zero page,

    -

                i.e. the zero page boundary crossing is not handled.

    -


    -

        Read-Modify-Write instructions (SLO, SRE, RLA, RRA, ISB, DCP)

    -


    -

           #    address   R/W description

    -

          --- ----------- --- ------------------------------------------

    -

           1      PC       R  fetch opcode, increment PC

    -

           2      PC       R  fetch pointer address, increment PC

    -

           3    pointer    R  read from the address, add X to it

    -

           4   pointer+X   R  fetch effective address low

    -

           5  pointer+X+1  R  fetch effective address high

    -

           6    address    R  read from effective address

    -

           7    address    W  write the value back to effective address,

    -

                              and do the operation on it

    -

           8    address    W  write the new value to effective address

    -


    -

          Note: The effective address is always fetched from zero page,

    -

                i.e. the zero page boundary crossing is not handled.

    -


    -

        Write instructions (STA, SAX)

    -


    -

           #    address   R/W description

    -

          --- ----------- --- ------------------------------------------

    -

           1      PC       R  fetch opcode, increment PC

    -

           2      PC       R  fetch pointer address, increment PC

    -

           3    pointer    R  read from the address, add X to it

    -

           4   pointer+X   R  fetch effective address low

    -

           5  pointer+X+1  R  fetch effective address high

    -

           6    address    W  write to effective address

    -


    -

          Note: The effective address is always fetched from zero page,

    -

                i.e. the zero page boundary crossing is not handled.

    -


    -

     Indirect indexed addressing

    -


    -

        Read instructions (LDA, EOR, AND, ORA, ADC, SBC, CMP)

    -


    -

           #    address   R/W description

    -

          --- ----------- --- ------------------------------------------

    -

           1      PC       R  fetch opcode, increment PC

    -

           2      PC       R  fetch pointer address, increment PC

    -

           3    pointer    R  fetch effective address low

    -

           4   pointer+1   R  fetch effective address high,

    -

                              add Y to low byte of effective address

    -

           5   address+Y*  R  read from effective address,

    -

                              fix high byte of effective address

    -

           6+  address+Y   R  read from effective address

    -


    -

          Notes: The effective address is always fetched from zero page,

    -

                 i.e. the zero page boundary crossing is not handled.

    -


    -

                 * The high byte of the effective address may be invalid

    -

                   at this time, i.e. it may be smaller by $100.

    -


    -

                 + This cycle will be executed only if the effective address

    -

                   was invalid during cycle #5, i.e. page boundary was crossed.

    -


    -

        Read-Modify-Write instructions (SLO, SRE, RLA, RRA, ISB, DCP)

    -


    -

           #    address   R/W description

    -

          --- ----------- --- ------------------------------------------

    -

           1      PC       R  fetch opcode, increment PC

    -

           2      PC       R  fetch pointer address, increment PC

    -

           3    pointer    R  fetch effective address low

    -

           4   pointer+1   R  fetch effective address high,

    -

                              add Y to low byte of effective address

    -

           5   address+Y*  R  read from effective address,

    -

                              fix high byte of effective address

    -

           6   address+Y   R  read from effective address

    -

           7   address+Y   W  write the value back to effective address,

    -

                              and do the operation on it

    -

           8   address+Y   W  write the new value to effective address

    -


    -

          Notes: The effective address is always fetched from zero page,

    -

                 i.e. the zero page boundary crossing is not handled.

    -


    -

                 * The high byte of the effective address may be invalid

    -

                   at this time, i.e. it may be smaller by $100.

    -


    -

        Write instructions (STA, SHA)

    -


    -

           #    address   R/W description

    -

          --- ----------- --- ------------------------------------------

    -

           1      PC       R  fetch opcode, increment PC

    -

           2      PC       R  fetch pointer address, increment PC

    -

           3    pointer    R  fetch effective address low

    -

           4   pointer+1   R  fetch effective address high,

    -

                              add Y to low byte of effective address

    -

           5   address+Y*  R  read from effective address,

    -

                              fix high byte of effective address

    -

           6   address+Y   W  write to effective address

    -


    -

          Notes: The effective address is always fetched from zero page,

    -

                 i.e. the zero page boundary crossing is not handled.

    -


    -

                 * The high byte of the effective address may be invalid

    -

                   at this time, i.e. it may be smaller by $100.

    -


    -

     Absolute indirect addressing (JMP)

    -


    -

           #   address  R/W description

    -

          --- --------- --- ------------------------------------------

    -

           1     PC      R  fetch opcode, increment PC

    -

           2     PC      R  fetch pointer address low, increment PC

    -

           3     PC      R  fetch pointer address high, increment PC

    -

           4   pointer   R  fetch low address to latch

    -

           5  pointer+1* R  fetch PCH, copy latch to PCL

    -


    -

          Note: * The PCH will always be fetched from the same page

    -

                  than PCL, i.e. page boundary crossing is not handled.

    -


    -

                   How Real Programmers Acknowledge Interrupts

    -


    -

     With RMW instructions:

    -


    -

           ; beginning of combined raster/timer interrupt routine

    -

           LSR $D019       ; clear VIC interrupts, read raster interrupt flag to C

    -

           BCS raster      ; jump if VIC caused an interrupt

    -

           ...             ; timer interrupt routine

    -


    -

           Operational diagram of LSR $D019:

    -


    -

             #  data  address  R/W

    -

            --- ----  -------  ---  ---------------------------------

    -

             1   4E     PC      R   fetch opcode

    -

             2   19    PC+1     R   fetch address low

    -

             3   D0    PC+2     R   fetch address high

    -

             4   xx    $D019    R   read memory

    -

             5   xx    $D019    W   write the value back, rotate right

    -

             6  xx/2   $D019    W   write the new value back

    -


    -

           The 5th cycle acknowledges the interrupt by writing the same

    -

           value back. If only raster interrupts are used, the 6th cycle

    -

           has no effect on the VIC. (It might acknowledge also some

    -

           other interrupts.)

    -


    -

     With indexed addressing:

    -


    -

           ; acknowledge interrupts to both CIAs

    -

           LDX #$10

    -

           LDA $DCFD,X

    -


    -

           Operational diagram of LDA $DCFD,X:

    -


    -

             #  data  address  R/W  description

    -

            --- ----  -------  ---  ---------------------------------

    -

             1   BD     PC      R   fetch opcode

    -

             2   FD    PC+1     R   fetch address low

    -

             3   DC    PC+2     R   fetch address high, add X to address low

    -

             4   xx    $DC0D    R   read from address, fix high byte of address

    -

             5   yy    $DD0D    R   read from right address

    -


    -

           ; acknowledge interrupts to CIA 2

    -

           LDX #$10

    -

           STA $DDFD,X

    -


    -

           Operational diagram of STA $DDFD,X:

    -


    -

             #  data  address  R/W  description

    -

            --- ----  -------  ---  ---------------------------------

    -

             1   9D     PC      R   fetch opcode

    -

             2   FD    PC+1     R   fetch address low

    -

             3   DC    PC+2     R   fetch address high, add X to address low

    -

             4   xx    $DD0D    R   read from address, fix high byte of address

    -

             5   ac    $DE0D    W   write to right address

    -


    -

     With branch instructions:

    -


    -

           ; acknowledge interrupts to CIA 2

    -

                   LDA #$00  ; clear N flag

    -

                   JMP $DD0A

    -

           DD0A    BPL $DC9D ; branch

    -

           DC9D    BRK       ; return

    -


    -

           You need the following preparations to initialize the CIA registers:

    -


    -

                   LDA #$91  ; argument of BPL

    -

                   STA $DD0B

    -

                   LDA #$10  ; BPL

    -

                   STA $DD0A

    -

                   STA $DD08 ; load the ToD values from the latches

    -

                   LDA $DD0B ; freeze the ToD display

    -

                   LDA #$7F

    -

                   STA $DC0D ; assure that $DC0D is $00

    -


    -

           Operational diagram of BPL $DC9D:

    -


    -

             #  data  address  R/W  description

    -

            --- ----  -------  ---  ---------------------------------

    -

             1   10    $DD0A    R   fetch opcode

    -

             2   91    $DD0B    R   fetch argument

    -

             3   xx    $DD0C    R   fetch opcode, add argument to PCL

    -

             4   yy    $DD9D    R   fetch opcode, fix PCH

    -

           ( 5   00    $DC9D    R   fetch opcode )

    -


    -

           ; acknowledge interrupts to CIA 1

    -

                   LSR       ; clear N flag

    -

                   JMP $DCFA

    -

           DCFA    BPL $DD0D

    -

           DD0D    BRK

    -


    -

           ; Again you need to set the ToD registers of CIA 1 and the

    -

           ; Interrupt Control Register of CIA 2 first.

    -


    -

           Operational diagram of BPL $DD0D:

    -


    -

             #  data  address  R/W  description

    -

            --- ----  -------  ---  ---------------------------------

    -

             1   10    $DCFA    R   fetch opcode

    -

             2   11    $DCFB    R   fetch argument

    -

             3   xx    $DCFC    R   fetch opcode, add argument to PCL

    -

             4   yy    $DC0D    R   fetch opcode, fix PCH

    -

           ( 5   00    $DD0D    R   fetch opcode )

    -


    -

           ; acknowledge interrupts to CIA 2 automagically

    -

                   ; preparations

    -

                   LDA #$7F

    -

                   STA $DD0D       ; disable all interrupt sources of CIA2

    -

                   LDA $DD0E

    -

                   AND #$BE        ; ensure that $DD0C remains constant

    -

                   STA $DD0E       ; and stop the timer

    -

                   LDA #$FD

    -

                   STA $DD0C       ; parameter of BPL

    -

                   LDA #$10

    -

                   STA $DD0B       ; BPL

    -

                   LDA #$40

    -

                   STA $DD0A       ; RTI/parameter of LSR

    -

                   LDA #$46

    -

                   STA $DD09       ; LSR

    -

                   STA $DD08       ; load the ToD values from the latches

    -

                   LDA $DD0B       ; freeze the ToD display

    -

                   LDA #$09

    -

                   STA $0318

    -

                   LDA #$DD

    -

                   STA $0319       ; change NMI vector to $DD09

    -

                   LDA #$FF        ; Try changing this instruction's operand

    -

                   STA $DD05       ; (see comment below).

    -

                   LDA #$FF

    -

                   STA $DD04       ; set interrupt frequency to 1/65536 cycles

    -

                   LDA $DD0E

    -

                   AND #$80

    -

                   ORA #$11

    -

                   LDX #$81

    -

                   STX $DD0D       ; enable timer interrupt

    -

                   STA $DD0E       ; start timer

    -


    -

                   LDA #$00        ; To see that the interrupts really occur,

    -

                   STA $D011       ; use something like this and see how

    -

           LOOP    DEC $D020       ; changing the byte loaded to $DD05 from

    -

                   BNE LOOP        ; #$FF to #$0F changes the image.

    -


    -

           When an NMI occurs, the processor jumps to Kernal code, which jumps to

    -

           ($0318), which points to the following routine:

    -


    -

           DD09    LSR $40         ; clear N flag

    -

                   BPL $DD0A       ; Note: $DD0A contains RTI.

    -


    -

           Operational diagram of BPL $DD0A:

    -


    -

             #  data  address  R/W  description

    -

            --- ----  -------  ---  ---------------------------------

    -

             1   10    $DD0B    R   fetch opcode

    -

             2   11    $DD0C    R   fetch argument

    -

             3   xx    $DD0D    R   fetch opcode, add argument to PCL

    -

             4   40    $DD0A    R   fetch opcode, (fix PCH)

    -


    -

     With RTI:

    -


    -

           ; the fastest possible interrupt handler in the 6500 family

    -

                   ; preparations

    -

                   SEI

    -

                   LDA $01         ; disable ROM and enable I/O

    -

                   AND #$FD

    -

                   ORA #$05

    -

                   STA $01

    -

                   LDA #$7F

    -

                   STA $DD0D       ; disable CIA 2's all interrupt sources

    -

                   LDA $DD0E

    -

                   AND #$BE        ; ensure that $DD0C remains constant

    -

                   STA $DD0E       ; and stop the timer

    -

                   LDA #$40

    -

                   STA $DD0C       ; store RTI to $DD0C

    -

                   LDA #$0C

    -

                   STA $FFFA

    -

                   LDA #$DD

    -

                   STA $FFFB       ; change NMI vector to $DD0C

    -

                   LDA #$FF        ; Try changing this instruction's operand

    -

                   STA $DD05       ; (see comment below).

    -

                   LDA #$FF

    -

                   STA $DD04       ; set interrupt frequency to 1/65536 cycles

    -

                   LDA $DD0E

    -

                   AND #$80

    -

                   ORA #$11

    -

                   LDX #$81

    -

                   STX $DD0D       ; enable timer interrupt

    -

                   STA $DD0E       ; start timer

    -


    -

                   LDA #$00        ; To see that the interrupts really occur,

    -

                   STA $D011       ; use something like this and see how

    -

           LOOP    DEC $D020       ; changing the byte loaded to $DD05 from

    -

                   BNE LOOP        ; #$FF to #$0F changes the image.

    -


    -

           When an NMI occurs, the processor jumps to Kernal code, which

    -

           jumps to ($0318), which points to the following routine:

    -


    -

           DD0C    RTI

    -


    -

           How on earth can this clear the interrupts? Remember, the

    -

           processor always fetches two successive bytes for each

    -

           instruction.

    -


    -

           A little more practical version of this is redirecting the NMI

    -

           (or IRQ) to your own routine, whose last instruction is JMP

    -

           $DD0C or JMP $DC0C.  If you want to confuse more, change the 0

    -

           in the address to a hexadecimal digit different from the one

    -

           you used when writing the RTI.

    -


    -

           Or you can combine the latter two methods:

    -


    -

           DD09    LSR $xx  ; xx is any appropriate BCD value 00-59.

    -

                   BPL $DCFC

    -

           DCFC    RTI

    -


    -

           This example acknowledges interrupts to both CIAs.

    -


    -

     If you want to confuse the examiners of your code, you can use any

    -

    of these techniques. Although these examples use no undefined opcodes,

    -

    they do not necessarily run correctly on CMOS processors. However, the

    -

    RTI example should run on 65C02 and 65C816, and the latter branch

    -

    instruction example might work as well.

    -


    -

     The RMW instruction method has been used in some demos, others were

    -

    developed by Marko M"akel"a. His favourite is the automagical RTI

    -

    method, although it does not have any practical applications, except

    -

    for some time dependent data decryption routines for very complicated

    -

    copy protections.

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured multi-format Help generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    CPU - 6502

    + +
    + +

    +

    #

    +

    # $Id: 6502_cpu.txt,v 1.1.1.1 2004/08/29 01:29:35 bryan Exp $

    +

    #

    +

    # This file is part of Commodore 64 emulator

    +

    #      and Program Development System.

    +

    #

    +

    # See README for copyright notice

    +

    #

    +

    # This file contains documentation for 6502/6510/8500/8502 instruction set.

    +

    #

    +

    #

    +

    # Written by

    +

    #   John West       (john@ucc.gu.uwa.edu.au)

    +

    #   Marko MЉkelЉ    (msmakela@kruuna.helsinki.fi)

    +

    #

    +

    #

    +

    # $Log: 6502_cpu.txt,v $

    +

    # Revision 1.1.1.1  2004/08/29 01:29:35  bryan

    +

    # no message

    +

    #

    +

    # Revision 1.1  2002/05/21 00:42:27  xodnizel

    +

    # updates

    +

    #

    +

    # Revision 1.8  1994/06/03  19:50:04  jopi

    +

    # Patchlevel 2

    +

    #

    +

    # Revision 1.7  1994/04/15  13:07:04  jopi

    +

    # 65xx Register descriptions added

    +

    #

    +

    # Revision 1.6  1994/02/18  16:09:36  jopi

    +

    #

    +

    # Revision 1.5  1994/01/26  16:08:37  jopi

    +

    # X64 version 0.2 PL 1

    +

    #

    +

    # Revision 1.4  1993/11/10  01:55:34  jopi

    +

    #

    +

    # Revision 1.3  93/06/21  13:37:18  jopi

    +

    #  X64 version 0.2 PL 0

    +

    #

    +

    # Revision 1.2  93/06/21  13:07:15  jopi

    +

    # *** empty log message ***

    +

    #

    +

    #

    +


    +

     Note: To extract the uuencoded ML programs in this article most

    +

           easily you may use e.g. "uud" by Edwin Kremer ,

    +

           which extracts them all at once.

    +


    +


    +

    Documentation for the NMOS 65xx/85xx Instruction Set

    +


    +

            6510 Instructions by Addressing Modes

    +

            6502 Registers

    +

            6510/8502 Undocumented Commands

    +

            Register selection for load and store

    +

            Decimal mode in NMOS 6500 series

    +

            6510 features

    +

            Different CPU types

    +

            6510 Instruction Timing

    +

            How Real Programmers Acknowledge Interrupts

    +

            Memory Management

    +

            Autostart Code

    +

            Notes

    +

            References

    +


    +


    +

    6510 Instructions by Addressing Modes

    +


    +

    off- ++++++++++ Positive ++++++++++  ---------- Negative ----------

    +

    set  00      20      40      60      80      a0      c0      e0      mode

    +


    +

    +00  BRK     JSR     RTI     RTS     NOP*    LDY     CPY     CPX     Impl/immed

    +

    +01  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     (indir,x)

    +

    +02   t       t       t       t      NOP*t   LDX     NOP*t   NOP*t     ? /immed

    +

    +03  SLO*    RLA*    SRE*    RRA*    SAX*    LAX*    DCP*    ISB*    (indir,x)

    +

    +04  NOP*    BIT     NOP*    NOP*    STY     LDY     CPY     CPX     Zeropage

    +

    +05  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Zeropage

    +

    +06  ASL     ROL     LSR     ROR     STX     LDX     DEC     INC     Zeropage

    +

    +07  SLO*    RLA*    SRE*    RRA*    SAX*    LAX*    DCP*    ISB*    Zeropage

    +


    +

    +08  PHP     PLP     PHA     PLA     DEY     TAY     INY     INX     Implied

    +

    +09  ORA     AND     EOR     ADC     NOP*    LDA     CMP     SBC     Immediate

    +

    +0a  ASL     ROL     LSR     ROR     TXA     TAX     DEX     NOP     Accu/impl

    +

    +0b  ANC**   ANC**   ASR**   ARR**   ANE**   LXA**   SBX**   SBC*    Immediate

    +

    +0c  NOP*    BIT     JMP     JMP ()  STY     LDY     CPY     CPX     Absolute

    +

    +0d  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Absolute

    +

    +0e  ASL     ROL     LSR     ROR     STX     LDX     DEC     INC     Absolute

    +

    +0f  SLO*    RLA*    SRE*    RRA*    SAX*    LAX*    DCP*    ISB*    Absolute

    +


    +

    +10  BPL     BMI     BVC     BVS     BCC     BCS     BNE     BEQ     Relative

    +

    +11  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     (indir),y

    +

    +12   t       t       t       t       t       t       t       t         ?

    +

    +13  SLO*    RLA*    SRE*    RRA*    SHA**   LAX*    DCP*    ISB*    (indir),y

    +

    +14  NOP*    NOP*    NOP*    NOP*    STY     LDY     NOP*    NOP*    Zeropage,x

    +

    +15  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Zeropage,x

    +

    +16  ASL     ROL     LSR     ROR     STX  y) LDX  y) DEC     INC     Zeropage,x

    +

    +17  SLO*    RLA*    SRE*    RRA*    SAX* y) LAX* y) DCP*    ISB*    Zeropage,x

    +


    +

    +18  CLC     SEC     CLI     SEI     TYA     CLV     CLD     SED     Implied

    +

    +19  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Absolute,y

    +

    +1a  NOP*    NOP*    NOP*    NOP*    TXS     TSX     NOP*    NOP*    Implied

    +

    +1b  SLO*    RLA*    SRE*    RRA*    SHS**   LAS**   DCP*    ISB*    Absolute,y

    +

    +1c  NOP*    NOP*    NOP*    NOP*    SHY**   LDY     NOP*    NOP*    Absolute,x

    +

    +1d  ORA     AND     EOR     ADC     STA     LDA     CMP     SBC     Absolute,x

    +

    +1e  ASL     ROL     LSR     ROR     SHX**y) LDX  y) DEC     INC     Absolute,x

    +

    +1f  SLO*    RLA*    SRE*    RRA*    SHA**y) LAX* y) DCP*    ISB*    Absolute,x

    +


    +

            ROR intruction is available on MC650x microprocessors after

    +

            June, 1976.

    +


    +

            Legend:

    +


    +

            t       Jams the machine

    +

            *t      Jams very rarely

    +

            *       Undocumented command

    +

            **      Unusual operation

    +

            y)      indexed using Y instead of X

    +

            ()      indirect instead of absolute

    +


    +

    Note that the NOP instructions do have other addressing modes than the

    +

    implied addressing. The NOP instruction is just like any other load

    +

    instruction, except it does not store the result anywhere nor affects the

    +

    flags.

    +


    +

    6502 Registers

    +


    +

    The NMOS 65xx processors are not ruined with too many registers. In addition

    +

    to that, the registers are mostly 8-bit. Here is a brief description of each

    +

    register:

    +


    +

         PC Program Counter

    +

              This register points the address from which the next instruction

    +

              byte (opcode or parameter) will be fetched. Unlike other

    +

              registers, this one is 16 bits in length. The low and high 8-bit

    +

              halves of the register are called PCL and PCH, respectively. The

    +

              Program Counter may be read by pushing its value on the stack.

    +

              This can be done either by jumping to a subroutine or by causing

    +

              an interrupt.

    +

         S Stack pointer

    +

              The NMOS 65xx processors have 256 bytes of stack memory, ranging

    +

              from $0100 to $01FF. The S register is a 8-bit offset to the stack

    +

              page. In other words, whenever anything is being pushed on the

    +

              stack, it will be stored to the address $0100+S.

    +


    +

              The Stack pointer can be read and written by transfering its value

    +

              to or from the index register X (see below) with the TSX and TXS

    +

              instructions.

    +

         P Processor status

    +

              This 8-bit register stores the state of the processor. The bits in

    +

              this register are called flags. Most of the flags have something

    +

              to do with arithmetic operations.

    +


    +

              The P register can be read by pushing it on the stack (with PHP or

    +

              by causing an interrupt). If you only need to read one flag, you

    +

              can use the branch instructions. Setting the flags is possible by

    +

              pulling the P register from stack or by using the flag set or

    +

              clear instructions.

    +


    +

              Following is a list of the flags, starting from the 8th bit of the

    +

              P register (bit 7, value $80):

    +

                   N Negative flag

    +

                        This flag will be set after any arithmetic operations

    +

                        (when any of the registers A, X or Y is being loaded

    +

                        with a value). Generally, the N flag will be copied from

    +

                        the topmost bit of the register being loaded.

    +


    +

                        Note that TXS (Transfer X to S) is not an arithmetic

    +

                        operation. Also note that the BIT instruction affects

    +

                        the Negative flag just like arithmetic operations.

    +

                        Finally, the Negative flag behaves differently in

    +

                        Decimal operations (see description below).

    +

                   V oVerflow flag

    +

                        Like the Negative flag, this flag is intended to be used

    +

                        with 8-bit signed integer numbers. The flag will be

    +

                        affected by addition and subtraction, the instructions

    +

                        PLP, CLV and BIT, and the hardware signal -SO. Note that

    +

                        there is no SEV instruction, even though the MOS

    +

                        engineers loved to use East European abbreviations, like

    +

                        DDR (Deutsche Demokratische Republik vs. Data Direction

    +

                        Register). (The Russian abbreviation for their former

    +

                        trade association COMECON is SEV.) The -SO (Set

    +

                        Overflow) signal is available on some processors, at

    +

                        least the 6502, to set the V flag. This enables response

    +

                        to an I/O activity in equal or less than three clock

    +

                        cycles when using a BVC instruction branching to itself

    +

                        ($50 $FE).

    +


    +

                        The CLV instruction clears the V flag, and the PLP and

    +

                        BIT instructions copy the flag value from the bit 6 of

    +

                        the topmost stack entry or from memory.

    +


    +

                        After a binary addition or subtraction, the V flag will

    +

                        be set on a sign overflow, cleared otherwise. What is a

    +

                        sign overflow? For instance, if you are trying to add

    +

                        123 and 45 together, the result (168) does not fit in a

    +

                        8-bit signed integer (upper limit 127 and lower limit

    +

                        -128). Similarly, adding -123 to -45 causes the

    +

                        overflow, just like subtracting -45 from 123 or 123 from

    +

                        -45 would do.

    +


    +

                        Like the N flag, the V flag will not be set as expected

    +

                        in the Decimal mode. Later in this document is a precise

    +

                        operation description.

    +


    +

                        A common misbelief is that the V flag could only be set

    +

                        by arithmetic operations, not cleared.

    +

                   1 unused flag

    +

                        To the current knowledge, this flag is always 1.

    +

                   B Break flag

    +

                        This flag is used to distinguish software (BRK)

    +

                        interrupts from hardware interrupts (IRQ or NMI). The B

    +

                        flag is always set except when the P register is being

    +

                        pushed on stack when jumping to an interrupt routine to

    +

                        process only a hardware interrupt.

    +


    +

                        The official NMOS 65xx documentation claims that the BRK

    +

                        instruction could only cause a jump to the IRQ vector

    +

                        ($FFFE). However, if an NMI interrupt occurs while

    +

                        executing a BRK instruction, the processor will jump to

    +

                        the NMI vector ($FFFA), and the P register will be

    +

                        pushed on the stack with the B flag set.

    +

                   D Decimal mode flag

    +

                        This flag is used to select the (Binary Coded) Decimal

    +

                        mode for addition and subtraction. In most applications,

    +

                        the flag is zero.

    +


    +

                        The Decimal mode has many oddities, and it operates

    +

                        differently on CMOS processors. See the description of

    +

                        the ADC, SBC and ARR instructions below.

    +

                   I Interrupt disable flag

    +

                        This flag can be used to prevent the processor from

    +

                        jumping to the IRQ handler vector ($FFFE) whenever the

    +

                        hardware line -IRQ is active. The flag will be

    +

                        automatically set after taking an interrupt, so that the

    +

                        processor would not keep jumping to the interrupt

    +

                        routine if the -IRQ signal remains low for several clock

    +

                        cycles.

    +

                   Z Zero flag

    +

                        The Zero flag will be affected in the same cases than

    +

                        the Negative flag. Generally, it will be set if an

    +

                        arithmetic register is being loaded with the value zero,

    +

                        and cleared otherwise. The flag will behave differently

    +

                        in Decimal operations.

    +

                   C Carry flag

    +

                        This flag is used in additions, subtractions,

    +

                        comparisons and bit rotations. In additions and

    +

                        subtractions, it acts as a 9th bit and lets you to chain

    +

                        operations to calculate with bigger than 8-bit numbers.

    +

                        When subtracting, the Carry flag is the negative of

    +

                        Borrow: if an overflow occurs, the flag will be clear,

    +

                        otherwise set. Comparisons are a special case of

    +

                        subtraction: they assume Carry flag set and Decimal flag

    +

                        clear, and do not store the result of the subtraction

    +

                        anywhere.

    +


    +

                        There are four kinds of bit rotations. All of them store

    +

                        the bit that is being rotated off to the Carry flag. The

    +

                        left shifting instructions are ROL and ASL. ROL copies

    +

                        the initial Carry flag to the lowmost bit of the byte;

    +

                        ASL always clears it. Similarly, the ROR and LSR

    +

                        instructions shift to the right.

    +

         A Accumulator

    +

              The accumulator is the main register for arithmetic and logic

    +

              operations. Unlike the index registers X and Y, it has a direct

    +

              connection to the Arithmetic and Logic Unit (ALU). This is why

    +

              many operations are only available for the accumulator, not the

    +

              index registers.

    +

         X Index register X

    +

              This is the main register for addressing data with indices. It has

    +

              a special addressing mode, indexed indirect, which lets you to

    +

              have a vector table on the zero page.

    +

         Y Index register Y

    +

              The Y register has the least operations available. On the other

    +

              hand, only it has the indirect indexed addressing mode that

    +

              enables access to any memory place without having to use

    +

              self-modifying code.

    +


    +

    6510/8502 Undocumented Commands

    +


    +

    -- A brief explanation about what may happen while using don't care states.

    +


    +

            ANE $8B         A = (A | #$EE) & X & #byte

    +

                            same as

    +

                            A = ((A & #$11 & X) | ( #$EE & X)) & #byte

    +


    +

                            In real 6510/8502 the internal parameter #$11

    +

                            may occasionally be #$10, #$01 or even #$00.

    +

                            This occurs when the video chip starts DMA

    +

                            between the opcode fetch and the parameter fetch

    +

                            of the instruction.  The value probably depends

    +

                            on the data that was left on the bus by the VIC-II.

    +


    +

            LXA $AB         C=Lehti:   A = X = ANE

    +

                            Alternate: A = X = (A & #byte)

    +


    +

                            TXA and TAX have to be responsible for these.

    +


    +

            SHA $93,$9F     Store (A & X & (ADDR_HI + 1))

    +

            SHX $9E         Store (X & (ADDR_HI + 1))

    +

            SHY $9C         Store (Y & (ADDR_HI + 1))

    +

            SHS $9B         SHA and TXS, where X is replaced by (A & X).

    +


    +

                            Note: The value to be stored is copied also

    +

                            to ADDR_HI if page boundary is crossed.

    +


    +

            SBX $CB         Carry and Decimal flags are ignored but the

    +

                            Carry flag will be set in substraction. This

    +

                            is due to the CMP command, which is executed

    +

                            instead of the real SBC.

    +


    +

            ARR $6B         This instruction first performs an AND

    +

                            between the accumulator and the immediate

    +

                            parameter, then it shifts the accumulator to

    +

                            the right. However, this is not the whole

    +

                            truth. See the description below.

    +


    +

    Many undocumented commands do not use AND between registers, the CPU

    +

    just throws the bytes to a bus simultaneously and lets the

    +

    open-collector drivers perform the AND. I.e. the command called 'SAX',

    +

    which is in the STORE section (opcodes $A0...$BF), stores the result

    +

    of (A & X) by this way.

    +


    +

    More fortunate is its opposite, 'LAX' which just loads a byte

    +

    simultaneously into both A and X.

    +


    +

            $6B  ARR

    +


    +

    This instruction seems to be a harmless combination of AND and ROR at

    +

    first sight, but it turns out that it affects the V flag and also has

    +

    a special kind of decimal mode. This is because the instruction has

    +

    inherited some properties of the ADC instruction ($69) in addition to

    +

    the ROR ($6A).

    +


    +

    In Binary mode (D flag clear), the instruction effectively does an AND

    +

    between the accumulator and the immediate parameter, and then shifts

    +

    the accumulator to the right, copying the C flag to the 8th bit. It

    +

    sets the Negative and Zero flags just like the ROR would. The ADC code

    +

    shows up in the Carry and oVerflow flags. The C flag will be copied

    +

    from the bit 6 of the result (which doesn't seem too logical), and the

    +

    V flag is the result of an Exclusive OR operation between the bit 6

    +

    and the bit 5 of the result.  This makes sense, since the V flag will

    +

    be normally set by an Exclusive OR, too.

    +


    +

    In Decimal mode (D flag set), the ARR instruction first performs the

    +

    AND and ROR, just like in Binary mode. The N flag will be copied from

    +

    the initial C flag, and the Z flag will be set according to the ROR

    +

    result, as expected. The V flag will be set if the bit 6 of the

    +

    accumulator changed its state between the AND and the ROR, cleared

    +

    otherwise.

    +


    +

    Now comes the funny part. If the low nybble of the AND result,

    +

    incremented by its lowmost bit, is greater than 5, the low nybble in

    +

    the ROR result will be incremented by 6. The low nybble may overflow

    +

    as a consequence of this BCD fixup, but the high nybble won't be

    +

    adjusted. The high nybble will be BCD fixed in a similar way. If the

    +

    high nybble of the AND result, incremented by its lowmost bit, is

    +

    greater than 5, the high nybble in the ROR result will be incremented

    +

    by 6, and the Carry flag will be set. Otherwise the C flag will be

    +

    cleared.

    +


    +

    To help you understand this description, here is a C routine that

    +

    illustrates the ARR operation in Decimal mode:

    +


    +

            unsigned

    +

               A,  /* Accumulator */

    +

               AL, /* low nybble of accumulator */

    +

               AH, /* high nybble of accumulator */

    +


    +

               C,  /* Carry flag */

    +

               Z,  /* Zero flag */

    +

               V,  /* oVerflow flag */

    +

               N,  /* Negative flag */

    +


    +

               t,  /* temporary value */

    +

               s;  /* value to be ARRed with Accumulator */

    +


    +

            t = A & s;                      /* Perform the AND. */

    +


    +

            AH = t >> 4;                    /* Separate the high */

    +

            AL = t & 15;                    /* and low nybbles. */

    +


    +

            N = C;                          /* Set the N and */

    +

            Z = !(A = (t >> 1) | (C << 7)); /* Z flags traditionally */

    +

            V = (t ^ A) & 64;               /* and V flag in a weird way. */

    +


    +

            if (AL + (AL & 1) > 5)          /* BCD "fixup" for low nybble. */

    +

              A = (A & 0xF0) | ((A + 6) & 0xF);

    +


    +

            if (C = AH + (AH & 1) > 5)      /* Set the Carry flag. */

    +

              A = (A + 0x60) & 0xFF;        /* BCD "fixup" for high nybble. */

    +


    +

            $CB  SBX   X <- (A & X) - Immediate

    +


    +

    The 'SBX' ($CB) may seem to be very complex operation, even though it

    +

    is a combination of the subtraction of accumulator and parameter, as

    +

    in the 'CMP' instruction, and the command 'DEX'. As a result, both A

    +

    and X are connected to ALU but only the subtraction takes place. Since

    +

    the comparison logic was used, the result of subtraction should be

    +

    normally ignored, but the 'DEX' now happily stores to X the value of

    +

    (A & X) - Immediate.  That is why this instruction does not have any

    +

    decimal mode, and it does not affect the V flag. Also Carry flag will

    +

    be ignored in the subtraction but set according to the result.

    +


    +

     Proof:

    +


    +

    begin 644 vsbx

    +

    M`0@9$,D'GL(H-#,IJC(U-JS"*#0T*:HR-@```*D`H#V1*Z`_D2N@09$KJ0>%

    +

    M^QBE^VEZJ+$KH#F1*ZD`2"BI`*(`RP`(:-B@.5$K*4#P`E@`H#VQ*SAI`)$K

    +

    JD-Z@/[$K:0"1*Y#4J2X@TO\XH$&Q*VD`D2N0Q,;[$+188/_^]_:_OK>V

    +

    `

    +

    end

    +


    +

     and

    +


    +

    begin 644 sbx

    +

    M`0@9$,D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'BI`*!-D2N@3Y$KH%&1*ZD#

    +

    MA?L8I?M*2)`#J1@LJ3B@29$K:$J0`ZGX+*G8R)$K&/BXJ?2B8\L)AOP(:(7]

    +

    MV#B@3;$KH$\Q*Z!1\2L(1?SP`0!H1?TIM]#XH$VQ*SAI`)$KD,N@3[$K:0"1

    +

    9*Y#!J2X@TO\XH%&Q*VD`D2N0L<;[$))88-#X

    +

    `

    +

    end

    +


    +

    These test programs show if your machine is compatible with ours

    +

    regarding the opcode $CB. The first test, vsbx, proves that SBX does

    +

    not affect the V flag. The latter one, sbx, proves the rest of our

    +

    theory. The vsbx test tests 33554432 SBX combinations (16777216

    +

    different A, X and Immediate combinations, and two different V flag

    +

    states), and the sbx test doubles that amount (16777216*4 D and C flag

    +

    combinations). Both tests have run successfully on a C64 and a Vic20.

    +

    They ought to run on C16, +4 and the PET series as well. The tests

    +

    stop with BRK, if the opcode $CB does not work as expected. Successful

    +

    operation ends in RTS. As the tests are very slow, they print dots on

    +

    the screen while running so that you know that the machine has not

    +

    jammed. On computers running at 1 MHz, the first test prints

    +

    approximately one dot every four seconds and a total of 2048 dots,

    +

    whereas the second one prints half that amount, one dot every seven

    +

    seconds.

    +


    +

    If the tests fail on your machine, please let us know your processor's

    +

    part number and revision. If possible, save the executable (after it

    +

    has stopped with BRK) under another name and send it to us so that we

    +

    know at which stage the program stopped.

    +


    +

    The following program is a Commodore 64 executable that Marko M"akel"a

    +

    developed when trying to find out how the V flag is affected by SBX.

    +

    (It was believed that the SBX affects the flag in a weird way, and

    +

    this program shows how SBX sets the flag differently from SBC.)  You

    +

    may find the subroutine at $C150 useful when researching other

    +

    undocumented instructions' flags. Run the program in a machine

    +

    language monitor, as it makes use of the BRK instruction. The result

    +

    tables will be written on pages $C2 and $C3.

    +


    +

    begin 644 sbx-c100

    +

    M`,%XH`",#L&,$,&,$L&XJ8*B@LL7AOL(:(7\N#BM#L$M$,'M$L$(Q?OP`B@`

    +

    M:$7\\`,@4,'N#L'0U.X0P=#/SB#0[A+!T,<``````````````)BJ\!>M#L$M

    +

    L$,'=_\'0":T2P=W_PM`!8,K0Z:T.P2T0P9D`PID`!*T2P9D`PYD`!

    +


    +

    Other undocumented instructions usually cause two preceding opcodes

    +

    being executed. However 'NOP' seems to completely disappear from 'SBC'

    +

    code $EB.

    +


    +

    The most difficult to comprehend are the rest of the instructions

    +

    located on the '$0B' line.

    +


    +

    All the instructions located at the positive (left) side of this line

    +

    should rotate either memory or the accumulator, but the addressing

    +

    mode turns out to be immediate! No problem. Just read the operand, let

    +

    it be ANDed with the accumulator and finally use accumulator

    +

    addressing mode for the instructions above them.

    +


    +

    RELIGION_MODE_ON

    +

    /* This part of the document is not accurate.  You can

    +

       read it as a fairy tale, but do not count on it when

    +

       performing your own measurements. */

    +


    +

    The rest two instructions on the same line, called 'ANE' and 'LXA'

    +

    ($8B and $AB respectively) often give quite unpredictable results.

    +

    However, the most usual operation is to store ((A | #$ee) & X & #$nn)

    +

    to accumulator. Note that this does not work reliably in a real 64!

    +

    In the Commodore 128 the opcode $8B uses values 8C, CC, EE, and

    +

    occasionally 0C and 8E for the OR instead of EE,EF,FE and FF used in

    +

    the C64. With a C128 running at 2 MHz #$EE is always used.  Opcode $AB

    +

    does not cause this OR taking place on 8502 while 6510 always performs

    +

    it. Note that this behaviour depends on processor and/or video chip

    +

    revision.

    +


    +

    Let's take a closer look at $8B (6510).

    +


    +

            A <- X & D & (A | VAL)

    +


    +

            where VAL comes from this table:

    +


    +

           X high   D high  D low   VAL

    +

            even     even    ---    $EE (1)

    +

            even     odd     ---    $EE

    +

            odd      even    ---    $EE

    +

            odd      odd      0     $EE

    +

            odd      odd     not 0  $FE (2)

    +


    +

    (1) If the bottom 2 bits of A are both 1, then the LSB of the result may

    +

        be 0. The values of X and D are different every time I run the test.

    +

        This appears to be very rare.

    +

    (2) VAL is $FE most of the time. Sometimes it is $EE - it seems to be random,

    +

        not related to any of the data. This is much more common than (1).

    +


    +

      In decimal mode, VAL is usually $FE.

    +


    +

    Two different functions have been discovered for LAX, opcode $AB. One

    +

    is A = X = ANE (see above) and the other, encountered with 6510 and

    +

    8502, is less complicated A = X = (A & #byte). However, according to

    +

    what is reported, the version altering only the lowest bits of each

    +

    nybble seems to be more common.

    +


    +

    What happens, is that $AB loads a value into both A and X, ANDing the

    +

    low bit of each nybble with the corresponding bit of the old

    +

    A. However, there are exceptions. Sometimes the low bit is cleared

    +

    even when A contains a '1', and sometimes other bits are cleared. The

    +

    exceptions seem random (they change every time I run the test). Oops -

    +

    that was in decimal mode. Much the same with D=0.

    +


    +

    What causes the randomness?  Probably it is that it is marginal logic

    +

    levels - when too much wired-anding goes on, some of the signals get

    +

    very close to the threshold. Perhaps we're seeing some of them step

    +

    over it. The low bit of each nybble is special, since it has to cope

    +

    with carry differently (remember decimal mode). We never see a '0'

    +

    turn into a '1'.

    +


    +

    Since these instructions are unpredictable, they should not be used.

    +


    +

    There is still very strange instruction left, the one named SHA/X/Y,

    +

    which is the only one with only indexed addressing modes. Actually,

    +

    the commands 'SHA', 'SHX' and 'SHY' are generated by the indexing

    +

    algorithm.

    +


    +

    While using indexed addressing, effective address for page boundary

    +

    crossing is calculated as soon as possible so it does not slow down

    +

    operation. As a result, in the case of SHA/X/Y, the address and data

    +

    are processed at the same time making AND between them to take place.

    +

    Thus, the value to be stored by SAX, for example, is in fact (A & X &

    +

    (ADDR_HI + 1)).  On page boundary crossing the same value is copied

    +

    also to high byte of the effective address.

    +


    +

    RELIGION_MODE_OFF

    +


    +


    +

    Register selection for load and store

    +


    +

       bit1 bit0     A  X  Y

    +

        0    0             x

    +

        0    1          x

    +

        1    0       x

    +

        1    1       x  x

    +


    +

    So, A and X are selected by bits 1 and 0 respectively, while

    +

     ~(bit1|bit0) enables Y.

    +


    +

    Indexing is determined by bit4, even in relative addressing mode,

    +

    which is one kind of indexing.

    +


    +

    Lines containing opcodes xxx000x1 (01 and 03) are treated as absolute

    +

    after the effective address has been loaded into CPU.

    +


    +

    Zeropage,y and Absolute,y (codes 10x1 x11x) are distinquished by bit5.

    +


    +


    +

    Decimal mode in NMOS 6500 series

    +


    +

      Most sources claim that the NMOS 6500 series sets the N, V and Z

    +

    flags unpredictably when performing addition or subtraction in decimal

    +

    mode. Of course, this is not true. While testing how the flags are

    +

    set, I also wanted to see what happens if you use illegal BCD values.

    +


    +

      ADC works in Decimal mode in a quite complicated way. It is amazing

    +

    how it can do that all in a single cycle. Here's a C code version of

    +

    the instruction:

    +


    +

            unsigned

    +

               A,  /* Accumulator */

    +

               AL, /* low nybble of accumulator */

    +

               AH, /* high nybble of accumulator */

    +


    +

               C,  /* Carry flag */

    +

               Z,  /* Zero flag */

    +

               V,  /* oVerflow flag */

    +

               N,  /* Negative flag */

    +


    +

               s;  /* value to be added to Accumulator */

    +


    +

            AL = (A & 15) + (s & 15) + C;         /* Calculate the lower nybble. */

    +


    +

            AH = (A >> 4) + (s >> 4) + (AL > 15); /* Calculate the upper nybble. */

    +


    +

            if (AL > 9) AL += 6;                  /* BCD fixup for lower nybble. */

    +


    +

            Z = ((A + s + C) & 255 != 0);         /* Zero flag is set just

    +

                                                     like in Binary mode. */

    +


    +

            /* Negative and Overflow flags are set with the same logic than in

    +

               Binary mode, but after fixing the lower nybble. */

    +


    +

            N = (AH & 8 != 0);

    +

            V = ((AH << 4) ^ A) & 128 && !((A ^ s) & 128);

    +


    +

            if (AH > 9) AH += 6;                  /* BCD fixup for upper nybble. */

    +


    +

            /* Carry is the only flag set after fixing the result. */

    +


    +

            C = (AH > 15);

    +

            A = ((AH << 4) | (AL & 15)) & 255;

    +


    +

      The C flag is set as the quiche eaters expect, but the N and V flags

    +

    are set after fixing the lower nybble but before fixing the upper one.

    +

    They use the same logic than binary mode ADC. The Z flag is set before

    +

    any BCD fixup, so the D flag does not have any influence on it.

    +


    +

    Proof: The following test program tests all 131072 ADC combinations in

    +

           Decimal mode, and aborts with BRK if anything breaks this theory.

    +

           If everything goes well, it ends in RTS.

    +


    +

    begin 600 dadc

    +

    M 0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@   'BI&*  A/N$_$B@+)$KH(V1

    +

    M*Q@(I?PI#X7]I?LI#V7]R0J0 FD%J"D/A?VE^RGP9?PI\ C $) ":0^JL @H

    +

    ML ?)H) &""@X:5\X!?V%_0AH*3W@ ! ""8"HBD7[$ JE^T7\, 28"4"H**7[

    +

    M9?S0!)@) J@8N/BE^V7\V A%_= G:(3]1?W0(.;[T(?F_-"#:$D8\ )88*D=

    +

    0&&4KA?NI &4LA?RI.&S[  A%

    +


    +

    end

    +


    +

      All programs in this chapter have been successfully tested on a Vic20

    +

    and a Commodore 64 and a Commodore 128D in C64 mode. They should run on

    +

    C16, +4 and on the PET series as well. If not, please report the problem

    +

    to Marko M"akel"a. Each test in this chapter should run in less than a

    +

    minute at 1 MHz.

    +


    +

    SBC is much easier. Just like CMP, its flags are not affected by

    +

    the D flag.

    +


    +

    Proof:

    +


    +

    begin 600 dsbc-cmp-flags

    +

    M 0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@   'B@ (3[A/RB XH8:66HL2N@

    +

    M09$KH$R1*XII::BQ*Z!%D2N@4)$K^#BXI?OE_-@(:(7].+BE^^7\"&A%_? !

    +

    5 .;[T./F_-#?RA"_8!@X&#CEY<7%

    +


    +

    end

    +


    +

      The only difference in SBC's operation in decimal mode from binary mode

    +

    is the result-fixup:

    +


    +

            unsigned

    +

               A,  /* Accumulator */

    +

               AL, /* low nybble of accumulator */

    +

               AH, /* high nybble of accumulator */

    +


    +

               C,  /* Carry flag */

    +

               Z,  /* Zero flag */

    +

               V,  /* oVerflow flag */

    +

               N,  /* Negative flag */

    +


    +

               s;  /* value to be added to Accumulator */

    +


    +

            AL = (A & 15) - (s & 15) - !C;        /* Calculate the lower nybble. */

    +


    +

            if (AL & 16) AL -= 6;                 /* BCD fixup for lower nybble. */

    +


    +

            AH = (A >> 4) - (s >> 4) - (AL & 16); /* Calculate the upper nybble. */

    +


    +

            if (AH & 16) AH -= 6;                 /* BCD fixup for upper nybble. */

    +


    +

            /* The flags are set just like in Binary mode. */

    +


    +

            C = (A - s - !C) & 256 != 0;

    +

            Z = (A - s - !C) & 255 != 0;

    +

            V = ((A - s - !C) ^ s) & 128 && (A ^ s) & 128;

    +

            N = (A - s - !C) & 128 != 0;

    +


    +

            A = ((AH << 4) | (AL & 15)) & 255;

    +


    +

      Again Z flag is set before any BCD fixup. The N and V flags are set

    +

    at any time before fixing the high nybble. The C flag may be set in any

    +

    phase.

    +


    +

      Decimal subtraction is easier than decimal addition, as you have to

    +

    make the BCD fixup only when a nybble overflows. In decimal addition,

    +

    you had to verify if the nybble was greater than 9. The processor has

    +

    an internal "half carry" flag for the lower nybble, used to trigger

    +

    the BCD fixup. When calculating with legal BCD values, the lower nybble

    +

    cannot overflow again when fixing it.

    +

    So, the processor does not handle overflows while performing the fixup.

    +

    Similarly, the BCD fixup occurs in the high nybble only if the value

    +

    overflows, i.e. when the C flag will be cleared.

    +


    +

      Because SBC's flags are not affected by the Decimal mode flag, you

    +

    could guess that CMP uses the SBC logic, only setting the C flag

    +

    first. But the SBX instruction shows that CMP also temporarily clears

    +

    the D flag, although it is totally unnecessary.

    +


    +

      The following program, which tests SBC's result and flags,

    +

    contains the 6502 version of the pseudo code example above.

    +


    +

    begin 600 dsbc

    +

    M 0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@   'BI&*  A/N$_$B@+)$KH':1

    +

    M*S@(I?PI#X7]I?LI#^7]L /I!1@I#ZBE_"GPA?VE^RGP"#CE_2GPL KI7RBP

    +

    M#ND/.+ )*+ &Z0^P NE?A/T%_87]*+BE^^7\"&BH.+CXI?OE_-@(1?W0FVB$

    +

    8_47]T)3F^]">YOS0FFA)&- $J3C0B%A@

    +


    +

    end

    +


    +

      Obviously the undocumented instructions RRA (ROR+ADC) and ISB

    +

    (INC+SBC) have inherited also the decimal operation from the official

    +

    instructions ADC and SBC. The program droradc proves this statement

    +

    for ROR, and the dincsbc test proves this for ISB. Finally,

    +

    dincsbc-deccmp proves that ISB's and DCP's (DEC+CMP) flags are not

    +

    affected by the D flag.

    +


    +

    begin 644 droradc

    +

    M`0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'BI&*``A/N$_$B@+)$KH(V1

    +

    M*S@(I?PI#X7]I?LI#V7]R0J0`FD%J"D/A?VE^RGP9?PI\`C`$)`":0^JL`@H

    +

    ML`?)H)`&""@X:5\X!?V%_0AH*3W@`!`""8"HBD7[$`JE^T7\,`28"4"H**7[

    +

    M9?S0!)@)`J@XN/BE^R;\9_S8"$7]T"=HA/U%_=`@YOO0A>;\T(%H21CP`EA@

    +

    2J1T892N%^ZD`92R%_*DX;/L`

    +

    `

    +

    end

    +


    +

    begin 644 dincsbc

    +

    M`0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'BI&*``A/N$_$B@+)$KH':1

    +

    M*S@(I?PI#X7]I?LI#^7]L`/I!1@I#ZBE_"GPA?VE^RGP"#CE_2GPL`KI7RBP

    +

    M#ND/.+`)*+`&Z0^P`NE?A/T%_87]*+BE^^7\"&BH.+CXI?O&_.?\V`A%_="9

    +

    ::(3]1?W0DN;[T)SF_-"8:$D8T`2I.-"&6&#\

    +

    `

    +

    end

    +


    +

    begin 644 dincsbc-deccmp

    +

    M`0@9",D'GL(H-#,IJC(U-JS"*#0T*:HR-@```'B@`(3[A/RB`XH8:7>HL2N@

    +

    M3Y$KH%R1*XII>ZBQ*Z!3D2N@8)$KBFE_J+$KH%61*Z!BD2OX.+BE^^;\Q_S8

    +

    L"&B%_3BXI?OF_,?\"&A%_?`!`.;[T-_F_-#;RA"M8!@X&#CFYL;&Q\?GYP#8

    +

    `

    +

    end

    +


    +


    +

    6510 features

    +


    +

       o  PHP always pushes the Break (B) flag as a `1' to the stack.

    +

          Jukka Tapanim"aki claimed in C=lehti issue 3/89, on page 27 that the

    +

          processor makes a logical OR between the status register's bit 4

    +

          and the bit 8 of the stack pointer register (which is always 1).

    +

          He did not give any reasons for this argument, and has refused to clarify

    +

          it afterwards. Well, this was not the only error in his article...

    +


    +

       o  Indirect addressing modes do not handle page boundary crossing at all.

    +

          When the parameter's low byte is $FF, the effective address wraps

    +

          around and the CPU fetches high byte from $xx00 instead of $xx00+$0100.

    +

          E.g. JMP ($01FF) fetches PCL from $01FF and PCH from $0100,

    +

          and LDA ($FF),Y fetches the base address from $FF and $00.

    +


    +

       o  Indexed zero page addressing modes never fix the page address on

    +

          crossing the zero page boundary.

    +

          E.g. LDX #$01 : LDA ($FF,X) loads the effective address from $00 and $01.

    +


    +

       o  The processor always fetches the byte following a relative branch

    +

          instruction. If the branch is taken, the processor reads then the

    +

          opcode from the destination address. If page boundary is crossed, it

    +

          first reads a byte from the old page from a location that is bigger

    +

          or smaller than the correct address by one page.

    +


    +

       o  If you cross a page boundary in any other indexed mode,

    +

          the processor reads an incorrect location first, a location that is

    +

          smaller by one page.

    +


    +

       o  Read-Modify-Write instructions write unmodified data, then modified

    +

          (so INC effectively does LDX loc;STX loc;INX;STX loc)

    +


    +

       o  -RDY is ignored during writes

    +

          (This is why you must wait 3 cycles before doing any DMA --

    +

          the maximum number of consecutive writes is 3, which occurs

    +

          during interrupts except -RESET.)

    +


    +

       o  Some undefined opcodes may give really unpredictable results.

    +


    +

       o  All registers except the Program Counter remain unmodified after -RESET.

    +

          (This is why you must preset D and I flags in the RESET handler.)

    +


    +


    +

    Different CPU types

    +


    +

    The Rockwell data booklet 29651N52 (technical information about R65C00

    +

    microprocessors, dated October 1984), lists the following differences between

    +

    NMOS R6502 microprocessor and CMOS R65C00 family:

    +


    +


    +

         1. Indexed addressing across page boundary.

    +

                 NMOS: Extra read of invalid address.

    +

                 CMOS: Extra read of last instruction byte.

    +


    +


    +

         2. Execution of invalid op codes.

    +

                 NMOS: Some terminate only by reset. Results are undefined.

    +

                 CMOS: All are NOPs (reserved for future use).

    +


    +


    +

         3. Jump indirect, operand = XXFF.

    +

                 NMOS: Page address does not increment.

    +

                 CMOS: Page address increments and adds one additional cycle.

    +


    +


    +

         4. Read/modify/write instructions at effective address.

    +

                 NMOS: One read and two write cycles.

    +

                 CMOS: Two read and one write cycle.

    +


    +


    +

         5. Decimal flag.

    +

                 NMOS: Indeterminate after reset.

    +

                 CMOS: Initialized to binary mode (D=0) after reset and interrupts.

    +


    +


    +

         6. Flags after decimal operation.

    +

                 NMOS: Invalid N, V and Z flags.

    +

                 CMOS: Valid flag adds one additional cycle.

    +


    +


    +

         7. Interrupt after fetch of BRK instruction.

    +

                 NMOS: Interrupt vector is loaded, BRK vector is ignored.

    +

                 CMOS: BRK is executed, then interrupt is executed.

    +


    +


    +

    6510 Instruction Timing

    +


    +

      The NMOS 6500 series processors always perform at least two reads

    +

    for each instruction. In addition to the operation code (opcode), they

    +

    fetch the next byte. This is quite efficient, as most instructions are

    +

    two or three bytes long.

    +


    +

      The processors also use a sort of pipelining. If an instruction does

    +

    not store data in memory on its last cycle, the processor can fetch

    +

    the opcode of the next instruction while executing the last cycle. For

    +

    instance, the instruction EOR #$FF truly takes three cycles. On the

    +

    first cycle, the opcode $49 will be fetched. During the second cycle

    +

    the processor decodes the opcode and fetches the parameter #$FF. On

    +

    the third cycle, the processor will perform the operation and store

    +

    the result to accumulator, but simultaneously it fetches the opcode

    +

    for the next instruction. This is why the instruction effectively

    +

    takes only two cycles.

    +


    +

      The following tables show what happens on the bus while executing

    +

    different kinds of instructions.

    +


    +

      Interrupts

    +


    +

         NMI and IRQ both take 7 cycles. Their timing diagram is much like

    +

         BRK's (see below). IRQ will be executed only when the I flag is

    +

         clear. IRQ and BRK both set the I flag, whereas the NMI does not

    +

         affect its state.

    +


    +

         The processor will usually wait for the current instruction to

    +

         complete before executing the interrupt sequence. To process the

    +

         interrupt before the next instruction, the interrupt must occur

    +

         before the last cycle of the current instruction.

    +


    +

         There is one exception to this rule: the BRK instruction. If a

    +

         hardware interrupt (NMI or IRQ) occurs before the fourth (flags

    +

         saving) cycle of BRK, the BRK instruction will be skipped, and

    +

         the processor will jump to the hardware interrupt vector. This

    +

         sequence will always take 7 cycles.

    +


    +

         You do not completely lose the BRK interrupt, the B flag will be

    +

         set in the pushed status register if a BRK instruction gets

    +

         interrupted. When BRK and IRQ occur at the same time, this does

    +

         not cause any problems, as your program will consider it as a

    +

         BRK, and the IRQ would occur again after the processor returned

    +

         from your BRK routine, unless you cleared the interrupt source in

    +

         your BRK handler. But the simultaneous occurrence of NMI and BRK

    +

         is far more fatal. If you do not check the B flag in the NMI

    +

         routine and subtract two from the return address when needed, the

    +

         BRK instruction will be skipped.

    +


    +

         If the NMI and IRQ interrupts overlap each other (one interrupt

    +

         occurs before fetching the interrupt vector for the other

    +

         interrupt), the processor will most probably jump to the NMI

    +

         vector in every case, and then jump to the IRQ vector after

    +

         processing the first instruction of the NMI handler. This has not

    +

         been measured yet, but the IRQ is very similar to BRK, and many

    +

         sources state that the NMI has higher priority than IRQ. However,

    +

         it might be that the processor takes the interrupt that comes

    +

         later, i.e. you could lose an NMI interrupt if an IRQ occurred in

    +

         four cycles after it.

    +


    +

         After finishing the interrupt sequence, the processor will start

    +

         to execute the first instruction of the interrupt routine. This

    +

         proves that the processor uses a sort of pipelining: it finishes

    +

         the current instruction (or interrupt sequence) while reading the

    +

         opcode of the next instruction.

    +


    +

         RESET does not push program counter on stack, and it lasts

    +

         probably 6 cycles after deactivating the signal. Like NMI, RESET

    +

         preserves all registers except PC.

    +


    +

      Instructions accessing the stack

    +


    +

         BRK

    +


    +

            #  address R/W description

    +

           --- ------- --- -----------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  read next instruction byte (and throw it away),

    +

                           increment PC

    +

            3  $0100,S  W  push PCH on stack (with B flag set), decrement S

    +

            4  $0100,S  W  push PCL on stack, decrement S

    +

            5  $0100,S  W  push P on stack, decrement S

    +

            6   $FFFE   R  fetch PCL

    +

            7   $FFFF   R  fetch PCH

    +


    +

         RTI

    +


    +

            #  address R/W description

    +

           --- ------- --- -----------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  read next instruction byte (and throw it away)

    +

            3  $0100,S  R  increment S

    +

            4  $0100,S  R  pull P from stack, increment S

    +

            5  $0100,S  R  pull PCL from stack, increment S

    +

            6  $0100,S  R  pull PCH from stack

    +


    +

         RTS

    +


    +

            #  address R/W description

    +

           --- ------- --- -----------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  read next instruction byte (and throw it away)

    +

            3  $0100,S  R  increment S

    +

            4  $0100,S  R  pull PCL from stack, increment S

    +

            5  $0100,S  R  pull PCH from stack

    +

            6    PC     R  increment PC

    +


    +

         PHA, PHP

    +


    +

            #  address R/W description

    +

           --- ------- --- -----------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  read next instruction byte (and throw it away)

    +

            3  $0100,S  W  push register on stack, decrement S

    +


    +

         PLA, PLP

    +


    +

            #  address R/W description

    +

           --- ------- --- -----------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  read next instruction byte (and throw it away)

    +

            3  $0100,S  R  increment S

    +

            4  $0100,S  R  pull register from stack

    +


    +

         JSR

    +


    +

            #  address R/W description

    +

           --- ------- --- -------------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch low address byte, increment PC

    +

            3  $0100,S  R  internal operation (predecrement S?)

    +

            4  $0100,S  W  push PCH on stack, decrement S

    +

            5  $0100,S  W  push PCL on stack, decrement S

    +

            6    PC     R  copy low address byte to PCL, fetch high address

    +

                           byte to PCH

    +


    +

      Accumulator or implied addressing

    +


    +

            #  address R/W description

    +

           --- ------- --- -----------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  read next instruction byte (and throw it away)

    +


    +

      Immediate addressing

    +


    +

            #  address R/W description

    +

           --- ------- --- ------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch value, increment PC

    +


    +

      Absolute addressing

    +


    +

         JMP

    +


    +

            #  address R/W description

    +

           --- ------- --- -------------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch low address byte, increment PC

    +

            3    PC     R  copy low address byte to PCL, fetch high address

    +

                           byte to PCH

    +


    +

         Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    +

                            LAX, NOP)

    +


    +

            #  address R/W description

    +

           --- ------- --- ------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch low byte of address, increment PC

    +

            3    PC     R  fetch high byte of address, increment PC

    +

            4  address  R  read from effective address

    +


    +

         Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    +

                                         SLO, SRE, RLA, RRA, ISB, DCP)

    +


    +

            #  address R/W description

    +

           --- ------- --- ------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch low byte of address, increment PC

    +

            3    PC     R  fetch high byte of address, increment PC

    +

            4  address  R  read from effective address

    +

            5  address  W  write the value back to effective address,

    +

                           and do the operation on it

    +

            6  address  W  write the new value to effective address

    +


    +

         Write instructions (STA, STX, STY, SAX)

    +


    +

            #  address R/W description

    +

           --- ------- --- ------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch low byte of address, increment PC

    +

            3    PC     R  fetch high byte of address, increment PC

    +

            4  address  W  write register to effective address

    +


    +

      Zero page addressing

    +


    +

         Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    +

                            LAX, NOP)

    +


    +

            #  address R/W description

    +

           --- ------- --- ------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch address, increment PC

    +

            3  address  R  read from effective address

    +


    +

         Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    +

                                         SLO, SRE, RLA, RRA, ISB, DCP)

    +


    +

            #  address R/W description

    +

           --- ------- --- ------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch address, increment PC

    +

            3  address  R  read from effective address

    +

            4  address  W  write the value back to effective address,

    +

                           and do the operation on it

    +

            5  address  W  write the new value to effective address

    +


    +

         Write instructions (STA, STX, STY, SAX)

    +


    +

            #  address R/W description

    +

           --- ------- --- ------------------------------------------

    +

            1    PC     R  fetch opcode, increment PC

    +

            2    PC     R  fetch address, increment PC

    +

            3  address  W  write register to effective address

    +


    +

      Zero page indexed addressing

    +


    +

         Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    +

                            LAX, NOP)

    +


    +

            #   address  R/W description

    +

           --- --------- --- ------------------------------------------

    +

            1     PC      R  fetch opcode, increment PC

    +

            2     PC      R  fetch address, increment PC

    +

            3   address   R  read from address, add index register to it

    +

            4  address+I* R  read from effective address

    +


    +

           Notes: I denotes either index register (X or Y).

    +


    +

                  * The high byte of the effective address is always zero,

    +

                    i.e. page boundary crossings are not handled.

    +


    +

         Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    +

                                         SLO, SRE, RLA, RRA, ISB, DCP)

    +


    +

            #   address  R/W description

    +

           --- --------- --- ---------------------------------------------

    +

            1     PC      R  fetch opcode, increment PC

    +

            2     PC      R  fetch address, increment PC

    +

            3   address   R  read from address, add index register X to it

    +

            4  address+X* R  read from effective address

    +

            5  address+X* W  write the value back to effective address,

    +

                             and do the operation on it

    +

            6  address+X* W  write the new value to effective address

    +


    +

           Note: * The high byte of the effective address is always zero,

    +

                   i.e. page boundary crossings are not handled.

    +


    +

         Write instructions (STA, STX, STY, SAX)

    +


    +

            #   address  R/W description

    +

           --- --------- --- -------------------------------------------

    +

            1     PC      R  fetch opcode, increment PC

    +

            2     PC      R  fetch address, increment PC

    +

            3   address   R  read from address, add index register to it

    +

            4  address+I* W  write to effective address

    +


    +

           Notes: I denotes either index register (X or Y).

    +


    +

                  * The high byte of the effective address is always zero,

    +

                    i.e. page boundary crossings are not handled.

    +


    +

      Absolute indexed addressing

    +


    +

         Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,

    +

                            LAX, LAE, SHS, NOP)

    +


    +

            #   address  R/W description

    +

           --- --------- --- ------------------------------------------

    +

            1     PC      R  fetch opcode, increment PC

    +

            2     PC      R  fetch low byte of address, increment PC

    +

            3     PC      R  fetch high byte of address,

    +

                             add index register to low address byte,

    +

                             increment PC

    +

            4  address+I* R  read from effective address,

    +

                             fix the high byte of effective address

    +

            5+ address+I  R  re-read from effective address

    +


    +

           Notes: I denotes either index register (X or Y).

    +


    +

                  * The high byte of the effective address may be invalid

    +

                    at this time, i.e. it may be smaller by $100.

    +


    +

                  + This cycle will be executed only if the effective address

    +

                    was invalid during cycle #4, i.e. page boundary was crossed.

    +


    +

         Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,

    +

                                         SLO, SRE, RLA, RRA, ISB, DCP)

    +


    +

            #   address  R/W description

    +

           --- --------- --- ------------------------------------------

    +

            1    PC       R  fetch opcode, increment PC

    +

            2    PC       R  fetch low byte of address, increment PC

    +

            3    PC       R  fetch high byte of address,

    +

                             add index register X to low address byte,

    +

                             increment PC

    +

            4  address+X* R  read from effective address,

    +

                             fix the high byte of effective address

    +

            5  address+X  R  re-read from effective address

    +

            6  address+X  W  write the value back to effective address,

    +

                             and do the operation on it

    +

            7  address+X  W  write the new value to effective address

    +


    +

           Notes: * The high byte of the effective address may be invalid

    +

                    at this time, i.e. it may be smaller by $100.

    +


    +

         Write instructions (STA, STX, STY, SHA, SHX, SHY)

    +


    +

            #   address  R/W description

    +

           --- --------- --- ------------------------------------------

    +

            1     PC      R  fetch opcode, increment PC

    +

            2     PC      R  fetch low byte of address, increment PC

    +

            3     PC      R  fetch high byte of address,

    +

                             add index register to low address byte,

    +

                             increment PC

    +

            4  address+I* R  read from effective address,

    +

                             fix the high byte of effective address

    +

            5  address+I  W  write to effective address

    +


    +

           Notes: I denotes either index register (X or Y).

    +


    +

                  * The high byte of the effective address may be invalid

    +

                    at this time, i.e. it may be smaller by $100. Because

    +

                    the processor cannot undo a write to an invalid

    +

                    address, it always reads from the address first.

    +


    +

      Relative addressing (BCC, BCS, BNE, BEQ, BPL, BMI, BVC, BVS)

    +


    +

            #   address  R/W description

    +

           --- --------- --- ---------------------------------------------

    +

            1     PC      R  fetch opcode, increment PC

    +

            2     PC      R  fetch operand, increment PC

    +

            3     PC      R  Fetch opcode of next instruction,

    +

                             If branch is taken, add operand to PCL.

    +

                             Otherwise increment PC.

    +

            4+    PC*     R  Fetch opcode of next instruction.

    +

                             Fix PCH. If it did not change, increment PC.

    +

            5!    PC      R  Fetch opcode of next instruction,

    +

                             increment PC.

    +


    +

           Notes: The opcode fetch of the next instruction is included to

    +

                  this diagram for illustration purposes. When determining

    +

                  real execution times, remember to subtract the last

    +

                  cycle.

    +


    +

                  * The high byte of Program Counter (PCH) may be invalid

    +

                    at this time, i.e. it may be smaller or bigger by $100.

    +


    +

                  + If branch is taken, this cycle will be executed.

    +


    +

                  ! If branch occurs to different page, this cycle will be

    +

                    executed.

    +


    +

      Indexed indirect addressing

    +


    +

         Read instructions (LDA, ORA, EOR, AND, ADC, CMP, SBC, LAX)

    +


    +

            #    address   R/W description

    +

           --- ----------- --- ------------------------------------------

    +

            1      PC       R  fetch opcode, increment PC

    +

            2      PC       R  fetch pointer address, increment PC

    +

            3    pointer    R  read from the address, add X to it

    +

            4   pointer+X   R  fetch effective address low

    +

            5  pointer+X+1  R  fetch effective address high

    +

            6    address    R  read from effective address

    +


    +

           Note: The effective address is always fetched from zero page,

    +

                 i.e. the zero page boundary crossing is not handled.

    +


    +

         Read-Modify-Write instructions (SLO, SRE, RLA, RRA, ISB, DCP)

    +


    +

            #    address   R/W description

    +

           --- ----------- --- ------------------------------------------

    +

            1      PC       R  fetch opcode, increment PC

    +

            2      PC       R  fetch pointer address, increment PC

    +

            3    pointer    R  read from the address, add X to it

    +

            4   pointer+X   R  fetch effective address low

    +

            5  pointer+X+1  R  fetch effective address high

    +

            6    address    R  read from effective address

    +

            7    address    W  write the value back to effective address,

    +

                               and do the operation on it

    +

            8    address    W  write the new value to effective address

    +


    +

           Note: The effective address is always fetched from zero page,

    +

                 i.e. the zero page boundary crossing is not handled.

    +


    +

         Write instructions (STA, SAX)

    +


    +

            #    address   R/W description

    +

           --- ----------- --- ------------------------------------------

    +

            1      PC       R  fetch opcode, increment PC

    +

            2      PC       R  fetch pointer address, increment PC

    +

            3    pointer    R  read from the address, add X to it

    +

            4   pointer+X   R  fetch effective address low

    +

            5  pointer+X+1  R  fetch effective address high

    +

            6    address    W  write to effective address

    +


    +

           Note: The effective address is always fetched from zero page,

    +

                 i.e. the zero page boundary crossing is not handled.

    +


    +

      Indirect indexed addressing

    +


    +

         Read instructions (LDA, EOR, AND, ORA, ADC, SBC, CMP)

    +


    +

            #    address   R/W description

    +

           --- ----------- --- ------------------------------------------

    +

            1      PC       R  fetch opcode, increment PC

    +

            2      PC       R  fetch pointer address, increment PC

    +

            3    pointer    R  fetch effective address low

    +

            4   pointer+1   R  fetch effective address high,

    +

                               add Y to low byte of effective address

    +

            5   address+Y*  R  read from effective address,

    +

                               fix high byte of effective address

    +

            6+  address+Y   R  read from effective address

    +


    +

           Notes: The effective address is always fetched from zero page,

    +

                  i.e. the zero page boundary crossing is not handled.

    +


    +

                  * The high byte of the effective address may be invalid

    +

                    at this time, i.e. it may be smaller by $100.

    +


    +

                  + This cycle will be executed only if the effective address

    +

                    was invalid during cycle #5, i.e. page boundary was crossed.

    +


    +

         Read-Modify-Write instructions (SLO, SRE, RLA, RRA, ISB, DCP)

    +


    +

            #    address   R/W description

    +

           --- ----------- --- ------------------------------------------

    +

            1      PC       R  fetch opcode, increment PC

    +

            2      PC       R  fetch pointer address, increment PC

    +

            3    pointer    R  fetch effective address low

    +

            4   pointer+1   R  fetch effective address high,

    +

                               add Y to low byte of effective address

    +

            5   address+Y*  R  read from effective address,

    +

                               fix high byte of effective address

    +

            6   address+Y   R  read from effective address

    +

            7   address+Y   W  write the value back to effective address,

    +

                               and do the operation on it

    +

            8   address+Y   W  write the new value to effective address

    +


    +

           Notes: The effective address is always fetched from zero page,

    +

                  i.e. the zero page boundary crossing is not handled.

    +


    +

                  * The high byte of the effective address may be invalid

    +

                    at this time, i.e. it may be smaller by $100.

    +


    +

         Write instructions (STA, SHA)

    +


    +

            #    address   R/W description

    +

           --- ----------- --- ------------------------------------------

    +

            1      PC       R  fetch opcode, increment PC

    +

            2      PC       R  fetch pointer address, increment PC

    +

            3    pointer    R  fetch effective address low

    +

            4   pointer+1   R  fetch effective address high,

    +

                               add Y to low byte of effective address

    +

            5   address+Y*  R  read from effective address,

    +

                               fix high byte of effective address

    +

            6   address+Y   W  write to effective address

    +


    +

           Notes: The effective address is always fetched from zero page,

    +

                  i.e. the zero page boundary crossing is not handled.

    +


    +

                  * The high byte of the effective address may be invalid

    +

                    at this time, i.e. it may be smaller by $100.

    +


    +

      Absolute indirect addressing (JMP)

    +


    +

            #   address  R/W description

    +

           --- --------- --- ------------------------------------------

    +

            1     PC      R  fetch opcode, increment PC

    +

            2     PC      R  fetch pointer address low, increment PC

    +

            3     PC      R  fetch pointer address high, increment PC

    +

            4   pointer   R  fetch low address to latch

    +

            5  pointer+1* R  fetch PCH, copy latch to PCL

    +


    +

           Note: * The PCH will always be fetched from the same page

    +

                   than PCL, i.e. page boundary crossing is not handled.

    +


    +

                    How Real Programmers Acknowledge Interrupts

    +


    +

      With RMW instructions:

    +


    +

            ; beginning of combined raster/timer interrupt routine

    +

            LSR $D019       ; clear VIC interrupts, read raster interrupt flag to C

    +

            BCS raster      ; jump if VIC caused an interrupt

    +

            ...             ; timer interrupt routine

    +


    +

            Operational diagram of LSR $D019:

    +


    +

              #  data  address  R/W

    +

             --- ----  -------  ---  ---------------------------------

    +

              1   4E     PC      R   fetch opcode

    +

              2   19    PC+1     R   fetch address low

    +

              3   D0    PC+2     R   fetch address high

    +

              4   xx    $D019    R   read memory

    +

              5   xx    $D019    W   write the value back, rotate right

    +

              6  xx/2   $D019    W   write the new value back

    +


    +

            The 5th cycle acknowledges the interrupt by writing the same

    +

            value back. If only raster interrupts are used, the 6th cycle

    +

            has no effect on the VIC. (It might acknowledge also some

    +

            other interrupts.)

    +


    +

      With indexed addressing:

    +


    +

            ; acknowledge interrupts to both CIAs

    +

            LDX #$10

    +

            LDA $DCFD,X

    +


    +

            Operational diagram of LDA $DCFD,X:

    +


    +

              #  data  address  R/W  description

    +

             --- ----  -------  ---  ---------------------------------

    +

              1   BD     PC      R   fetch opcode

    +

              2   FD    PC+1     R   fetch address low

    +

              3   DC    PC+2     R   fetch address high, add X to address low

    +

              4   xx    $DC0D    R   read from address, fix high byte of address

    +

              5   yy    $DD0D    R   read from right address

    +


    +

            ; acknowledge interrupts to CIA 2

    +

            LDX #$10

    +

            STA $DDFD,X

    +


    +

            Operational diagram of STA $DDFD,X:

    +


    +

              #  data  address  R/W  description

    +

             --- ----  -------  ---  ---------------------------------

    +

              1   9D     PC      R   fetch opcode

    +

              2   FD    PC+1     R   fetch address low

    +

              3   DC    PC+2     R   fetch address high, add X to address low

    +

              4   xx    $DD0D    R   read from address, fix high byte of address

    +

              5   ac    $DE0D    W   write to right address

    +


    +

      With branch instructions:

    +


    +

            ; acknowledge interrupts to CIA 2

    +

                    LDA #$00  ; clear N flag

    +

                    JMP $DD0A

    +

            DD0A    BPL $DC9D ; branch

    +

            DC9D    BRK       ; return

    +


    +

            You need the following preparations to initialize the CIA registers:

    +


    +

                    LDA #$91  ; argument of BPL

    +

                    STA $DD0B

    +

                    LDA #$10  ; BPL

    +

                    STA $DD0A

    +

                    STA $DD08 ; load the ToD values from the latches

    +

                    LDA $DD0B ; freeze the ToD display

    +

                    LDA #$7F

    +

                    STA $DC0D ; assure that $DC0D is $00

    +


    +

            Operational diagram of BPL $DC9D:

    +


    +

              #  data  address  R/W  description

    +

             --- ----  -------  ---  ---------------------------------

    +

              1   10    $DD0A    R   fetch opcode

    +

              2   91    $DD0B    R   fetch argument

    +

              3   xx    $DD0C    R   fetch opcode, add argument to PCL

    +

              4   yy    $DD9D    R   fetch opcode, fix PCH

    +

            ( 5   00    $DC9D    R   fetch opcode )

    +


    +

            ; acknowledge interrupts to CIA 1

    +

                    LSR       ; clear N flag

    +

                    JMP $DCFA

    +

            DCFA    BPL $DD0D

    +

            DD0D    BRK

    +


    +

            ; Again you need to set the ToD registers of CIA 1 and the

    +

            ; Interrupt Control Register of CIA 2 first.

    +


    +

            Operational diagram of BPL $DD0D:

    +


    +

              #  data  address  R/W  description

    +

             --- ----  -------  ---  ---------------------------------

    +

              1   10    $DCFA    R   fetch opcode

    +

              2   11    $DCFB    R   fetch argument

    +

              3   xx    $DCFC    R   fetch opcode, add argument to PCL

    +

              4   yy    $DC0D    R   fetch opcode, fix PCH

    +

            ( 5   00    $DD0D    R   fetch opcode )

    +


    +

            ; acknowledge interrupts to CIA 2 automagically

    +

                    ; preparations

    +

                    LDA #$7F

    +

                    STA $DD0D       ; disable all interrupt sources of CIA2

    +

                    LDA $DD0E

    +

                    AND #$BE        ; ensure that $DD0C remains constant

    +

                    STA $DD0E       ; and stop the timer

    +

                    LDA #$FD

    +

                    STA $DD0C       ; parameter of BPL

    +

                    LDA #$10

    +

                    STA $DD0B       ; BPL

    +

                    LDA #$40

    +

                    STA $DD0A       ; RTI/parameter of LSR

    +

                    LDA #$46

    +

                    STA $DD09       ; LSR

    +

                    STA $DD08       ; load the ToD values from the latches

    +

                    LDA $DD0B       ; freeze the ToD display

    +

                    LDA #$09

    +

                    STA $0318

    +

                    LDA #$DD

    +

                    STA $0319       ; change NMI vector to $DD09

    +

                    LDA #$FF        ; Try changing this instruction's operand

    +

                    STA $DD05       ; (see comment below).

    +

                    LDA #$FF

    +

                    STA $DD04       ; set interrupt frequency to 1/65536 cycles

    +

                    LDA $DD0E

    +

                    AND #$80

    +

                    ORA #$11

    +

                    LDX #$81

    +

                    STX $DD0D       ; enable timer interrupt

    +

                    STA $DD0E       ; start timer

    +


    +

                    LDA #$00        ; To see that the interrupts really occur,

    +

                    STA $D011       ; use something like this and see how

    +

            LOOP    DEC $D020       ; changing the byte loaded to $DD05 from

    +

                    BNE LOOP        ; #$FF to #$0F changes the image.

    +


    +

            When an NMI occurs, the processor jumps to Kernal code, which jumps to

    +

            ($0318), which points to the following routine:

    +


    +

            DD09    LSR $40         ; clear N flag

    +

                    BPL $DD0A       ; Note: $DD0A contains RTI.

    +


    +

            Operational diagram of BPL $DD0A:

    +


    +

              #  data  address  R/W  description

    +

             --- ----  -------  ---  ---------------------------------

    +

              1   10    $DD0B    R   fetch opcode

    +

              2   11    $DD0C    R   fetch argument

    +

              3   xx    $DD0D    R   fetch opcode, add argument to PCL

    +

              4   40    $DD0A    R   fetch opcode, (fix PCH)

    +


    +

      With RTI:

    +


    +

            ; the fastest possible interrupt handler in the 6500 family

    +

                    ; preparations

    +

                    SEI

    +

                    LDA $01         ; disable ROM and enable I/O

    +

                    AND #$FD

    +

                    ORA #$05

    +

                    STA $01

    +

                    LDA #$7F

    +

                    STA $DD0D       ; disable CIA 2's all interrupt sources

    +

                    LDA $DD0E

    +

                    AND #$BE        ; ensure that $DD0C remains constant

    +

                    STA $DD0E       ; and stop the timer

    +

                    LDA #$40

    +

                    STA $DD0C       ; store RTI to $DD0C

    +

                    LDA #$0C

    +

                    STA $FFFA

    +

                    LDA #$DD

    +

                    STA $FFFB       ; change NMI vector to $DD0C

    +

                    LDA #$FF        ; Try changing this instruction's operand

    +

                    STA $DD05       ; (see comment below).

    +

                    LDA #$FF

    +

                    STA $DD04       ; set interrupt frequency to 1/65536 cycles

    +

                    LDA $DD0E

    +

                    AND #$80

    +

                    ORA #$11

    +

                    LDX #$81

    +

                    STX $DD0D       ; enable timer interrupt

    +

                    STA $DD0E       ; start timer

    +


    +

                    LDA #$00        ; To see that the interrupts really occur,

    +

                    STA $D011       ; use something like this and see how

    +

            LOOP    DEC $D020       ; changing the byte loaded to $DD05 from

    +

                    BNE LOOP        ; #$FF to #$0F changes the image.

    +


    +

            When an NMI occurs, the processor jumps to Kernal code, which

    +

            jumps to ($0318), which points to the following routine:

    +


    +

            DD0C    RTI

    +


    +

            How on earth can this clear the interrupts? Remember, the

    +

            processor always fetches two successive bytes for each

    +

            instruction.

    +


    +

            A little more practical version of this is redirecting the NMI

    +

            (or IRQ) to your own routine, whose last instruction is JMP

    +

            $DD0C or JMP $DC0C.  If you want to confuse more, change the 0

    +

            in the address to a hexadecimal digit different from the one

    +

            you used when writing the RTI.

    +


    +

            Or you can combine the latter two methods:

    +


    +

            DD09    LSR $xx  ; xx is any appropriate BCD value 00-59.

    +

                    BPL $DCFC

    +

            DCFC    RTI

    +


    +

            This example acknowledges interrupts to both CIAs.

    +


    +

      If you want to confuse the examiners of your code, you can use any

    +

    of these techniques. Although these examples use no undefined opcodes,

    +

    they do not necessarily run correctly on CMOS processors. However, the

    +

    RTI example should run on 65C02 and 65C816, and the latter branch

    +

    instruction example might work as well.

    +


    +

      The RMW instruction method has been used in some demos, others were

    +

    developed by Marko M"akel"a. His favourite is the automagical RTI

    +

    method, although it does not have any practical applications, except

    +

    for some time dependent data decryption routines for very complicated

    +

    copy protections.

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create iPhone documentation

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/AVICapturing.html b/web/help/AVICapturing.html index 0ca35f81..4e554a28 100644 --- a/web/help/AVICapturing.html +++ b/web/help/AVICapturing.html @@ -1,94 +1,285 @@ - - + + + + + - AVI Capturing - - - - - - - - - - + + + + + + + + AVI Capturing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    AVI Capturing

    - -
    - General ›› Famicom Disk System ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Video & Audio Capturing

    -


    -

    Introduction

    -


    -

    FCEU allows for outputting Video/Audio into .avi files or capturing audio only into .wav files.  This can be used to capture one's playing or for dumping movie files (.fm2) to .avi files.

    -


    -


    -

    Capturing a Movie File (.fm2) to Video/Audio (AVI)

    -


    -

    -Pause the emulator by navigating to NES > Emulation Speed > pause or pressing the pause hotkey (the pause key by default).  

    -

    -For a faster capture increase emulation speed (you can capture at any emulation speed and FCEUX will still output a 60 (or 50) fps video file).

    -

    -Select "Replay Movie" from the File > Movie Menu and select the movie file

    -

    -If you intend to capture beyond the final frame of the movie file, make sure "Pause after Playback" (Config Menu) is not checked.

    -

    -Select "Record AVI" in the File > AVI/Wav menu.

    -

    -Select a file location and the video codec you wish to use.

    -

    -Unpause the emulator.

    -

    -When capturing is complete, pause the emulator and select "Stop AVI" in the File Menu.

    -


    -


    -

    Capture Audio only

    -


    -

    To capture audio only, navigate to File > AVI/Wav > Record WAV.  Pick a filename and destination for FCEUX to begin capturing the audio to a .wav file (raw .pcm).  To stop WAV recording, select File > AVI/Wav > Stop WAV.

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Create HTML Help, DOC, PDF and print manuals from 1 single source

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    AVI Capturing

    + +
    + +

    +

    Video & Audio Capturing

    +


    +

    Introduction

    +


    +

    FCEU allows for outputting Video/Audio into .avi files or capturing audio only into .wav files.  This can be used to capture one's playing or for dumping movie files (.fm2) to .avi files.

    +


    +


    +

    Capturing a Movie File (.fm2) to Video/Audio (AVI)

    +


    +

    -Pause the emulator by navigating to NES > Emulation Speed > pause or pressing the pause hotkey (the pause key by default).  

    +

    -For a faster capture increase emulation speed (you can capture at any emulation speed and FCEUX will still output a 60 (or 50) fps video file).

    +

    -Select "Replay Movie" from the File > Movie Menu and select the movie file

    +

    -If you intend to capture beyond the final frame of the movie file, make sure "Pause after Playback" (Config Menu) is not checked.

    +

    -Select "Record AVI" in the File > AVI/Wav menu.

    +

    -Select a file location and the video codec you wish to use.

    +

    -Unpause the emulator.

    +

    -When capturing is complete, pause the emulator and select "Stop AVI" in the File Menu.

    +


    +


    +

    Capture Audio only

    +


    +

    To capture audio only, navigate to File > AVI/Wav > Record WAV.  Pick a filename and destination for FCEUX to begin capturing the audio to a .wav file (raw .pcm).  To stop WAV recording, select File > AVI/Wav > Stop WAV.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured Help generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/AutoFireConfigurations.html b/web/help/AutoFireConfigurations.html index e26140fa..c7a1d28d 100644 --- a/web/help/AutoFireConfigurations.html +++ b/web/help/AutoFireConfigurations.html @@ -1,87 +1,278 @@ - - + + + + + - Auto Fire Settings - - - - - - - - - - + + + + + + + + Auto Fire Settings + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Auto Fire Settings

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Auto Fire Settings

    -


    -

    Autofire Pattern

    -


    -

    The default configuration for an auto fire key is the alteration of on/off/on/off every frame.  For most games this works nicely, but there are situations where this doesn't work properly.  For example, Double Dragon 2 and Teenage Mutant Ninja Turtles run at 30fps (screen updates every other frame).  To use autofire in these types of games, you would want to set the autofire pattern to 2 on / 2 off.   In a situation where a players weapon on fires every 4th frame, you can set the autofire pattern to 1 on / 3 off.

    -


    -

    Autofire Offset

    -


    -

    The default is for certain frames to have the on setting and others to have the off setting.  For instance, "on" might be lined up with a movie file's even numbers.  But a situation may need the autofire pattern to have "on" on the odd numbers instead.  In this case the autofire offset should be set to 1.  This will delay the normal "on" fire by 1 frame.  If an autofire pattern is set to 2 on / 2 off, an autofire offset of 2 might be necessary.

    -


    -

    Alternate A and B

    -


    -

    Alternate A and B is for a specific case where both the A and B autofire buttons are pressed simultaneously.  With alternate A and B, the fire pattern will be A,B,A,B rather than A+B, off, A+B, off.

    -


    -


    -

    Note: All autofire patterns read the Lag Counter (see display) and skip over any frames where input is not polled.  This means that in a laggy area, the autofire pattern will not be affected.

    -

    -

    Created with the Personal Edition of HelpNDoc: Produce Kindle eBooks easily

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Auto Fire Settings

    + +
    + +

    +

    Auto Fire Settings

    +


    +

    Autofire Pattern

    +


    +

    The default configuration for an auto fire key is the alteration of on/off/on/off every frame.  For most games this works nicely, but there are situations where this doesn't work properly.  For example, Double Dragon 2 and Teenage Mutant Ninja Turtles run at 30fps (screen updates every other frame).  To use autofire in these types of games, you would want to set the autofire pattern to 2 on / 2 off.   In a situation where a players weapon on fires every 4th frame, you can set the autofire pattern to 1 on / 3 off.

    +


    +

    Autofire Offset

    +


    +

    The default is for certain frames to have the on setting and others to have the off setting.  For instance, "on" might be lined up with a movie file's even numbers.  But a situation may need the autofire pattern to have "on" on the odd numbers instead.  In this case the autofire offset should be set to 1.  This will delay the normal "on" fire by 1 frame.  If an autofire pattern is set to 2 on / 2 off, an autofire offset of 2 might be necessary.

    +


    +

    Alternate A and B

    +


    +

    Alternate A and B is for a specific case where both the A and B autofire buttons are pressed simultaneously.  With alternate A and B, the fire pattern will be A,B,A,B rather than A+B, off, A+B, off.

    +


    +


    +

    Note: All autofire patterns read the Lag Counter (see display) and skip over any frames where input is not polled.  This means that in a laggy area, the autofire pattern will not be affected.

    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/CheatSearch.html b/web/help/CheatSearch.html index 58cfdc85..cc8ace04 100644 --- a/web/help/CheatSearch.html +++ b/web/help/CheatSearch.html @@ -1,171 +1,362 @@ - - + + + + + - Cheat Search - - - - - - - - - - + + + + + + + + Cheat Search + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Cheat Search

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    FCE Ultra Cheat Guide

    -


    -

    Introduction

    -


    -

    FCE Ultra allows cheating by the periodic "patching" of arbitrary addresses in the 6502's memory space with arbitrary values, as well as read substitution. "Read substitution" is the method that would be used on a real NES/Famicom, such as done by the Game Genie and Pro Action Replay. It is required to support GG and PAR codes, but since it is relatively slow when done in emulation, it is not the preferred method when a RAM patch will suffice. Also, in FCE Ultra, read substitution will not work properly with zero-page addressing modes(instructions that operate on RAM at $0000 through $00FF).

    -


    -

    The RAM patches are all applied a short time before the emulated vertical blanking period. This detail shouldn't concern most people, though. However, this does mean that cheating with games that use bank-switched RAM may be problematic. Fortunately, such games are not very common (in relation to the total number of NES and Famicom games).

    -


    -

    The cheat search comes with its own set of tools for finding addresses in memory to use for making cheats (or for monitoring the addresses in the memory watch window)

    -


    -

    Cheat Files

    -


    -

    By default cheat files (.cht) are stored in the "cheats" subdirectory under the base FCEUX. The files are in a simple plain-text format. Each line represents a one-byte memory patch. The format is as follows(text in brackets [] represents optional parameters):

    -


    -

       [S][C][:]Address(hex):Value(hex):[Compare value:]Description

    -


    -

    Example:

    -


    -

       040e:05:Infinite super power.

    -


    -

    A colon(:) near the beginning of the line is used to disable the cheat. "S" denotes a cheat that is a read-substitute-style cheat(such as with Game Genie cheats), and a "C" denotes that the cheat has a compare value.

    -


    -

    Note:  When a game is loaded, FCEUX will load any accompanying saved .cht file automatically.

    -


    -

    The default .cht file folder can be changed with the Directory Override menu.

    -


    -

    The Cheat Search Menu

    -


    -

    The cheat search interface consists of several components: a list of addresses and associated data for a search, several command buttons, and the search parameters.

    -


    -

    All addresses listed in the cheat search windows are in unsigned 16-bit hexadecimal format and all values in these windows are in an unsigned 8-bit decimal format(the range for values is 0 through 255).

    -


    -

    Active Cheats

    -


    -

    The Active cheats window on the left contains the list of cheats for the currently loaded game. Existing cheats can be selected, edited, and updated using the "Update" button.

    -


    -

    Each entry in the list can be named. If you didn't provide a name, it will be automatically named using this format:

    -

    For simple "Substitute" type of cheats: * Address:Value

    -

    For "Compare" type of cheats: * Address?Compare:Value

    -


    -

    The "Address" is the location in the 6502's address space.  The * denotes that the current cheat is active (double clicking will toggle on/off). "Value" is the value (in hex) that is written to the addresses on each update. "Compare" it the value that must be at the address, or else the Value won't be written there. This allows making cheats more safe.

    -


    -

    You can Add, Delete, and Update cheats in the Active Cheats window with the boxes below.

    -

    You can use "Add from CHT file..." button to load cheats from an existing file (in case the file name does not match the ROM name, so it didn't load automatically). Alternatively, you can drag and drop any .cht file into the FCEUX window.

    -


    -

    There is also a right-click menu with the options Toggle selected Cheats, Poke Cheat Value and Goto in Hex Editor, and Delete selected Cheats.

    -


    -

    Toggle Cheats is like Double Clicking, it enables or disables the cheat code. You can select many cheats in the list and toggle them all at once.

    -

    Poke Cheat Value is like turning the cheat on, but in this case there's no off switch. If the code is on when you use this, then when the code is turned off, it will revert to the value last used. Good for one time life refills, if you want that sort of thing.

    -

    Goto in Hex Editor opens the Hex Editor window, and puts the cursor on the address shown. It's somewhat similar to how Bookmarks work in the Hex Editor.

    -


    -

    To create a new cheat, you have to find an address, for this use the cheat search portion of the window.

    -


    -


    -

    Cheat Search

    -


    -

    The cheat search is used to find a specific value in the games RAM by process of elimination.

    -


    -

    The possibilities window is in the format of  Address:Original Value:Current Value

    -

    The address is the location in the 6502's address space, the original value is the value that was stored at this address when the search was reset, and the current value is the value that is currently stored at that address. Selecting an item in this list will automatically cause the "Address" field in the cheat information box on the right side of the window to be updated with the selected address.

    -


    -

    The "Reset" button resets the search process; all valid addresses are displayed in the possibilities window and the data values at those addresses noted in both the left and right columns.  The number of possibilities is displayed at the top.  Resetting will set it to 2048 or 10240 depending on if the game uses "On cartridge ram" ($6000-$7FFF).  (See NES RAM)

    -


    -

    The left column is the "previous value" and the right column is the "current value"

    -


    -

    The "Known Value", "Equal", "Not Equal", Greater than" and Less than" buttons perform a search based on the search parameter and removes any non-matching addresses from the address list.   It then sets the "previous value" column to the contents of the "current value"

    -


    -

    "Known Value" will search for all addresses that match the value in the box to the right (the value is in hex).

    -


    -

    "Equal" will search for all addresses that have the same value now as the last search (or since reset was pressed, if there has not yet been a search).

    -


    -

    "Not equal" will search for all addresses that have changed sine the last search (or since reset was pressed, if there has not yet been a search).

    -

    If the checkbox next to it is checked it will looks for values that have changed by the value in the number box to the right.  For instance, if it is checked and the number is 5, it will search for all values that are +- 5 from the previous value.

    -


    -

    "Greater than" functions like "Not equal" except it only searches for values that have increased since the last search.

    -


    -

    "Less than" functions like "Not equal" except it only searches for values that have decreased since the last search.

    -


    -

    Using the Results

    -


    -

    Any value in the possibilities list can be sent to memory watch by double clicking it.  

    -

    Highlighting it and hitting the "Add" button under the Active cheats window will automatically activate it as a cheat with the value set to its current value.

    -


    -

    Example

    -


    -

    Here is an example of cheat search in action.

    -


    -

    Let's say I am playing Mega man 3 and I want to find Mega man's energy level in the game's ram.  I will start by opening the ROM and selecting a level.  At this point, I know Mega man's energy address is active.  So I will pause the game and open the cheat search and hit the reset button.  The game uses SRAM so the possibilities window will say 10240 "possibilities".  

    -

    Next I will frame advance (or briefly unpause) the game.  At this point I know Mega man's energy level is still the same as it was.  So I click the "equal" button.   Next I want to take damage.  I know for sure now that the energy level has decreased so after the "ouch" animation, I click the "Less than button".  This will cut the possibilities down significantly.  Next I will advance some more and click the "Equal" button since I know the value is still the previous value.  I will repeat this cycle until I am down to 1 or just a few values.  From there I can double click the values to send them to memory watch to monitor them more closely to weed them out.  (Note:  Mega man's energy is located in $00A2).

    -


    -

    Context Menu

    -


    -

    Right-clicking in the active cheats list brings up the context menu.

    -


    -

    Toggle Cheat - does the same thing as double clicking

    -


    -

    Poke cheat value - has a different affect that normal freezing, this makes a one time write of that value as opposed to freezing it temporarily to that value and having it restored later.  It has the same affect as typing in values in the Hex Editor.

    -


    -

    Goto In Hex Editor - Opens the Hex editor dialog to the position of the selected RAM value.

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easy CHM and documentation editor

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Cheat Search

    + +
    + +

    +

    FCE Ultra Cheat Guide

    +


    +

    Introduction

    +


    +

    FCE Ultra allows cheating by the periodic "patching" of arbitrary addresses in the 6502's memory space with arbitrary values, as well as read substitution. "Read substitution" is the method that would be used on a real NES/Famicom, such as done by the Game Genie and Pro Action Replay. It is required to support GG and PAR codes, but since it is relatively slow when done in emulation, it is not the preferred method when a RAM patch will suffice. Also, in FCE Ultra, read substitution will not work properly with zero-page addressing modes(instructions that operate on RAM at $0000 through $00FF).

    +


    +

    The RAM patches are all applied a short time before the emulated vertical blanking period. This detail shouldn't concern most people, though. However, this does mean that cheating with games that use bank-switched RAM may be problematic. Fortunately, such games are not very common (in relation to the total number of NES and Famicom games).

    +


    +

    The cheat search comes with its own set of tools for finding addresses in memory to use for making cheats (or for monitoring the addresses in the memory watch window)

    +


    +

    Cheat Files

    +


    +

    By default cheat files (.cht) are stored in the "cheats" subdirectory under the base FCEUX. The files are in a simple plain-text format. Each line represents a one-byte memory patch. The format is as follows(text in brackets [] represents optional parameters):

    +


    +

        [S][C][:]Address(hex):Value(hex):[Compare value:]Description 

    +


    +

    Example:

    +


    +

        040e:05:Infinite super power.

    +


    +

    A colon(:) near the beginning of the line is used to disable the cheat. "S" denotes a cheat that is a read-substitute-style cheat(such as with Game Genie cheats), and a "C" denotes that the cheat has a compare value.

    +


    +

    Note:  When a game is loaded, FCEUX will load any accompanying saved .cht file automatically.

    +


    +

    The default .cht file folder can be changed with the Directory Override menu.

    +


    +

    The Cheat Search Menu

    +


    +

    The cheat search interface consists of several components: a list of addresses and associated data for a search, several command buttons, and the search parameters.

    +


    +

    All addresses listed in the cheat search windows are in unsigned 16-bit hexadecimal format and all values in these windows are in an unsigned 8-bit decimal format(the range for values is 0 through 255).

    +


    +

    Active Cheats

    +


    +

    The Active cheats window on the left contains the list of cheats for the currently loaded game. Existing cheats can be selected, edited, and updated using the "Update" button.

    +


    +

    Each entry in the list can be named. If you didn't provide a name, it will be automatically named using this format:

    +

    For simple "Substitute" type of cheats: * Address:Value

    +

    For "Compare" type of cheats: * Address?Compare:Value

    +


    +

    The "Address" is the location in the 6502's address space.  The * denotes that the current cheat is active (double clicking will toggle on/off). "Value" is the value (in hex) that is written to the addresses on each update. "Compare" it the value that must be at the address, or else the Value won't be written there. This allows making cheats more safe.

    +


    +

    You can Add, Delete, and Update cheats in the Active Cheats window with the boxes below.

    +

    You can use "Add from CHT file..." button to load cheats from an existing file (in case the file name does not match the ROM name, so it didn't load automatically). Alternatively, you can drag and drop any .cht file into the FCEUX window.

    +


    +

    There is also a right-click menu with the options Toggle selected Cheats, Poke Cheat Value and Goto in Hex Editor, and Delete selected Cheats.

    +


    +

    Toggle Cheats is like Double Clicking, it enables or disables the cheat code. You can select many cheats in the list and toggle them all at once.

    +

    Poke Cheat Value is like turning the cheat on, but in this case there's no off switch. If the code is on when you use this, then when the code is turned off, it will revert to the value last used. Good for one time life refills, if you want that sort of thing.

    +

    Goto in Hex Editor opens the Hex Editor window, and puts the cursor on the address shown. It's somewhat similar to how Bookmarks work in the Hex Editor.

    +


    +

    To create a new cheat, you have to find an address, for this use the cheat search portion of the window.

    +


    +


    +

    Cheat Search

    +


    +

    The cheat search is used to find a specific value in the games RAM by process of elimination.

    +


    +

    The possibilities window is in the format of  Address:Original Value:Current Value

    +

    The address is the location in the 6502's address space, the original value is the value that was stored at this address when the search was reset, and the current value is the value that is currently stored at that address. Selecting an item in this list will automatically cause the "Address" field in the cheat information box on the right side of the window to be updated with the selected address.

    +


    +

    The "Reset" button resets the search process; all valid addresses are displayed in the possibilities window and the data values at those addresses noted in both the left and right columns.  The number of possibilities is displayed at the top.  Resetting will set it to 2048 or 10240 depending on if the game uses "On cartridge ram" ($6000-$7FFF).  (See NES RAM)

    +


    +

    The left column is the "previous value" and the right column is the "current value"

    +


    +

    The "Known Value", "Equal", "Not Equal", Greater than" and Less than" buttons perform a search based on the search parameter and removes any non-matching addresses from the address list.   It then sets the "previous value" column to the contents of the "current value"

    +


    +

    "Known Value" will search for all addresses that match the value in the box to the right (the value is in hex).

    +


    +

    "Equal" will search for all addresses that have the same value now as the last search (or since reset was pressed, if there has not yet been a search).

    +


    +

    "Not equal" will search for all addresses that have changed sine the last search (or since reset was pressed, if there has not yet been a search).

    +

    If the checkbox next to it is checked it will looks for values that have changed by the value in the number box to the right.  For instance, if it is checked and the number is 5, it will search for all values that are +- 5 from the previous value.

    +


    +

    "Greater than" functions like "Not equal" except it only searches for values that have increased since the last search.

    +


    +

    "Less than" functions like "Not equal" except it only searches for values that have decreased since the last search.

    +


    +

    Using the Results

    +


    +

    Any value in the possibilities list can be sent to memory watch by double clicking it.  

    +

    Highlighting it and hitting the "Add" button under the Active cheats window will automatically activate it as a cheat with the value set to its current value.

    +


    +

    Example

    +


    +

    Here is an example of cheat search in action.

    +


    +

    Let's say I am playing Mega man 3 and I want to find Mega man's energy level in the game's ram.  I will start by opening the ROM and selecting a level.  At this point, I know Mega man's energy address is active.  So I will pause the game and open the cheat search and hit the reset button.  The game uses SRAM so the possibilities window will say 10240 "possibilities".  

    +

    Next I will frame advance (or briefly unpause) the game.  At this point I know Mega man's energy level is still the same as it was.  So I click the "equal" button.   Next I want to take damage.  I know for sure now that the energy level has decreased so after the "ouch" animation, I click the "Less than button".  This will cut the possibilities down significantly.  Next I will advance some more and click the "Equal" button since I know the value is still the previous value.  I will repeat this cycle until I am down to 1 or just a few values.  From there I can double click the values to send them to memory watch to monitor them more closely to weed them out.  (Note:  Mega man's energy is located in $00A2).

    +


    +

    Context Menu

    +


    +

    Right-clicking in the active cheats list brings up the context menu.

    +


    +

    Toggle Cheat - does the same thing as double clicking

    +


    +

    Poke cheat value - has a different affect that normal freezing, this makes a one time write of that value as opposed to freezing it temporarily to that value and having it restored later.  It has the same affect as typing in values in the Hex Editor.

    +


    +

    Goto In Hex Editor - Opens the Hex editor dialog to the position of the selected RAM value.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured Documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/CodeDataLogger.html b/web/help/CodeDataLogger.html index 8af31fff..90b0c287 100644 --- a/web/help/CodeDataLogger.html +++ b/web/help/CodeDataLogger.html @@ -1,198 +1,407 @@ - - + + + + + - Code/Data Logger - - - - - - - - - - + + + + + + + + Code/Data Logger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Code/Data Logger

    - -
    - Debug ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Code/Data Logger

    + +
    +

    -

    Code/Data Logger

    -


    -


    -

    Introduction

    -


    -

    The Code/Data Logger makes it much easier to reverse-engineer NES ROMs. The basic idea behind it is that a normal NES disassembler cannot distinguish between code (which is executed) and data (which is read). The Code/Data Logger keeps track of what is executed and what is read while the game is played, and then you can save this information into a .cdl file, which is essentially a mask that tells which bytes in the ROM are code and which are data. The file can be used in conjunction with a suitable disassembler to disassemble only the actual game code, resulting in a much cleaner source code where code and data are properly separated.

    -


    -

    Using the Code/Data Logger

    -


    -

    The Code/Data Logger keeps track of every byte in the ROM and records whether it's code (is executed) or data (is read).

    -

    You can combine this logging feature with other tools to make them much more powerful:

    -
      -
    • combine with Debugger to see which branches of the game code were executed and which weren't yet
    • -
    • combine with Trace Logger to let it log the code selectively
    • -
    • combine with PPU Viewer to let it only display graphics that was drawn on screen at least once
    • -
    • combine with Hex Editor to enable smart coloring of bytes (so you can observe which bytes are used by the game and how/when they are used)
    • -
    • combine with (an external) Tile Viewer to see which graphics was used during certain play session, and which was not
    • -
    • combine with (an external) ROM Corruptor to make it only corrupt data, but not code
    • -
    • combine with (an external) Disassembler to help it separate code from data
    • +

      Code/Data Logger

      +


      +


      +

      Introduction

      +


      +

      The Code/Data Logger makes it much easier to reverse-engineer NES ROMs. The basic idea behind it is that a normal NES disassembler cannot distinguish between code (which is executed) and data (which is read). The Code/Data Logger keeps track of what is executed and what is read while the game is played, and then you can save this information into a .cdl file, which is essentially a mask that tells which bytes in the ROM are code and which are data. The file can be used in conjunction with a suitable disassembler to disassemble only the actual game code, resulting in a much cleaner source code where code and data are properly separated.

      +


      +

      Using the Code/Data Logger

      +


      +

      The Code/Data Logger keeps track of every byte in the ROM and records whether it's code (is executed) or data (is read).

      +

      You can combine this logging feature with other tools to make them much more powerful:

      +
        +
      • combine with Debugger to see which branches of the game code were executed and which weren't yet
      • +
      • combine with Trace Logger to let it log the code selectively
      • +
      • combine with PPU Viewer to let it only display graphics that was drawn on screen at least once
      • +
      • combine with Hex Editor to enable smart coloring of bytes (so you can observe which bytes are used by the game and how/when they are used)
      • +
      • combine with (an external) Tile Viewer to see which graphics was used during certain play session, and which was not
      • +
      • combine with (an external) ROM Corruptor to make it only corrupt data, but not code
      • +
      • combine with (an external) Disassembler to help it separate code from data
      -


      -

      See, it is very useful for finding certain types of data or code branches. It also makes debugging work more visual, since you can always see which lines of the disassembled code were executed and which weren't.

      -


      -

      Furthermore, while the Code/Data Logger is running, the Hex Editor will color-code ROM bytes depending on whether they were logged as code or data:

      -


      -

      For PRG ROM:

      -

      Dark-yellow - the byte is code

      -

      Blue - the byte is data

      -

      Cyan - the byte is PCM audio data

      -

      Green - the byte is both code and data

      -


      -

      For CHR ROM:

      -

      Yellow - the byte was rendered

      -

      Light-blue - the byte was read programmatically

      -

      Light-green - the byte was both rendered and read programmatically

      -


      -

      The Code/Data Logger can also be used to generate a stripped NES ROM.

      -

      "Stripped" NES ROM is a ROM in which everything that was not logged by the Code/Data Logger is removed. It can be useful in many ways, for example, you can view the ROM in an external Hex Editor or a Tile Viewer, and you'll see only the parts that were used while playing. Furthermore, you could use it to create a demo ROM by only playing through the parts you would like others to see.

      -

      Example of such usage:

      -

      1. Open the Code/Data Logger, and press Start to begin logging.

      -

      2. Perform a soft and a hard reset while logging, in order to capture the ROM's startup sequence. If you don't do so, you can distribute a save-state file so they will start from within the game.

      -

      3. If the game has Save-RAM (e.g. Zelda), you will need to capture the game's Save-RAM initialization routines; you can try to do so by deleting the game's *.sav file and then perform a soft and hard reset again while logging.

      -

      4. Play through whatever levels you want present in the demo ROM. Be sure to perform every move, get every item, etc., so that the code and data necessary for those things are logged. If, for example, you fail to perform some special move, and then someone plays the stripped ROM and attempts to perform that move, the game may very well crash or glitch up, because there are zeros in the stripped ROM instead of the code responsible for handling this special move.

      -

      5. Save the stripped NES ROM.

      -


      -

      Alternatively, you can save Unused Data (a ROM which is the opposite to the Stripped ROM). For example, you can play through the game, then save Unused Data ROM and watch it in a Tile Viewer to find unused graphics (possibly stumble upon secrets and easter eggs).

      -


      -

      Note: When you "Load" another .cdl file, it does not clear the current log; instead, it combines ("arithmetical OR") it with the information in the file. This can be useful if you're trying to obtain a complete log of certain game, as multiple people can play through the game and keep own code/data logs, and then the results can be combined into an all-encompassing log. But if you would like to actually clear the code/data log, press the "Reset Log" button.

      -


      -
      -


      -

      CDL files are just a mask of the ROM; that is, they are of the same size as the ROM, and each byte represents the corresponding byte of the ROM. The format of each byte is like so (in binary):

      -


      -

      For PRG ROM:

      -
      - - - - - - - - - - +


      +

      See, it is very useful for finding certain types of data or code branches. It also makes debugging work more visual, since you can always see which lines of the disassembled code were executed and which weren't.

      +


      +

      Furthermore, while the Code/Data Logger is running, the Hex Editor will color-code ROM bytes depending on whether they were logged as code or data:

      +


      +

      For PRG ROM:

      +

      Dark-yellow - the byte is code

      +

      Blue - the byte is data

      +

      Cyan - the byte is PCM audio data

      +

      Green - the byte is both code and data

      +


      +

      For CHR ROM:

      +

      Yellow - the byte was rendered

      +

      Light-blue - the byte was read programmatically

      +

      Light-green - the byte was both rendered and read programmatically

      +


      +

      The Code/Data Logger can also be used to generate a stripped NES ROM.

      +

      "Stripped" NES ROM is a ROM in which everything that was not logged by the Code/Data Logger is removed. It can be useful in many ways, for example, you can view the ROM in an external Hex Editor or a Tile Viewer, and you'll see only the parts that were used while playing. Furthermore, you could use it to create a demo ROM by only playing through the parts you would like others to see.

      +

      Example of such usage:

      +

      1. Open the Code/Data Logger, and press Start to begin logging.

      +

      2. Perform a soft and a hard reset while logging, in order to capture the ROM's startup sequence. If you don't do so, you can distribute a save-state file so they will start from within the game.

      +

      3. If the game has Save-RAM (e.g. Zelda), you will need to capture the game's Save-RAM initialization routines; you can try to do so by deleting the game's *.sav file and then perform a soft and hard reset again while logging.

      +

      4. Play through whatever levels you want present in the demo ROM. Be sure to perform every move, get every item, etc., so that the code and data necessary for those things are logged. If, for example, you fail to perform some special move, and then someone plays the stripped ROM and attempts to perform that move, the game may very well crash or glitch up, because there are zeros in the stripped ROM instead of the code responsible for handling this special move.

      +

      5. Save the stripped NES ROM.

      +


      +

      Alternatively, you can save Unused Data (a ROM which is the opposite to the Stripped ROM). For example, you can play through the game, then save Unused Data ROM and watch it in a Tile Viewer to find unused graphics (possibly stumble upon secrets and easter eggs).

      +


      +

      Note: When you "Load" another .cdl file, it does not clear the current log; instead, it combines ("arithmetical OR") it with the information in the file. This can be useful if you're trying to obtain a complete log of certain game, as multiple people can play through the game and keep own code/data logs, and then the results can be combined into an all-encompassing log. But if you would like to actually clear the code/data log, press the "Reset Log" button.

      +


      +
      +


      +

      CDL files are just a mask of the ROM; that is, they are of the same size as the ROM, and each byte represents the corresponding byte of the ROM. The format of each byte is like so (in binary):

      +


      +

      For PRG ROM:

      +
      +

      x

      -

      P

      -

      d

      -

      c

      -

      A

      -

      A

      -

      D

      -

      C

      -
      + + + + + + + + + +
      +

      x

      +
      +

      P

      +
      +

      d

      +
      +

      c

      +
      +

      A

      +
      +

      A

      +
      +

      D

      +
      +

      C

      +
      -

                     

      -

             C = Whether it was accessed as code.

      -

             D = Whether it was accessed as data.

      -

             AA = Into which ROM bank it was mapped when last accessed:

      -

                     00 = $8000-$9FFF        01 = $A000-$BFFF

      -

                     10 = $C000-$DFFF        11 = $E000-$FFFF

      -

             c = Whether indirectly accessed as code.

      -

                     (e.g. as the destination of a JMP ($nnnn) instruction)

      -

             d = Whether indirectly accessed as data.

      -

                     (e.g. as the destination of an LDA ($nn),Y instruction)

      -

             P = If logged as PCM audio data.

      -

             x = unused.

      -


      -

      For CHR ROM:

      -
      - - - - - - - - - - +

                     

      +

             C = Whether it was accessed as code.

      +

             D = Whether it was accessed as data.

      +

             AA = Into which ROM bank it was mapped when last accessed:

      +

                     00 = $8000-$9FFF        01 = $A000-$BFFF

      +

                     10 = $C000-$DFFF        11 = $E000-$FFFF

      +

             c = Whether indirectly accessed as code.

      +

                     (e.g. as the destination of a JMP ($nnnn) instruction)

      +

             d = Whether indirectly accessed as data.

      +

                     (e.g. as the destination of an LDA ($nn),Y instruction)

      +

             P = If logged as PCM audio data.

      +

             x = unused.

      +


      +

      For CHR ROM:

      +
      +

      x

      -

      x

      -

      x

      -

      x

      -

      x

      -

      x

      -

      R

      -

      D

      -
      + + + + + + + + + +
      +

      x

      +
      +

      x

      +
      +

      x

      +
      +

      x

      +
      +

      x

      +
      +

      x

      +
      +

      R

      +
      +

      D

      +
      -

                     

      -

             D = Whether it was drawn on screen (rendered by PPU at runtime)

      -

             R = Whether it was read programmatically using port $2007

      -

                     (e.g. Argus_(J).nes checks if the bankswitching works by reading the same byte of CHR data before and after switching)

      -

             x = unused.

      -


      -
      -


      -


      -

      CDL files make possible a number of things never done before. First, a PCM data ripper could be created that scans for data that has the 'P' bit set, in order to find/rip/play every PCM sample in a ROM. Also, it is possible for someone to make a more intelligent ROM corruptor that only corrupts data (by checking the 'D' bit). In any case, the Code/Data Logger opens many new possibilities for discovering useful things in games. Another interesting possibility would be to use the Code/Data Logger on an NSF file to create a stripped NSF. Such an NSF would contain nothing but the relevant subroutines and data required by each tune played; this would be helpful to NSF rippers by removing irrelevant information. Thus, an NSF ripper could create a stripped NSF by listening to each track while the Code/Data Logger operates on it, and then saving the stripped NSF. It should be noted that this capability, though tested and working on private builds, is detrimental to the process of fixing broken NSF files. For this reason, data logging is allowed for NSF files, but stripping NSF files of unused data is disabled.

      -


      -

      The Code/Data Logger becomes the most useful when you need to restore a full source code of a game using e.g. IDA or another disassembler. There you can write a custom IDC script that uses a CDL file and calls MakeCode()/MakeData() functions to help the disassembler distinguish code from data. Making full and working/reassemblable disassembly becomes really easy this way.

      -


      -


      -


      -


      -


      +

                     

      +

             D = Whether it was drawn on screen (rendered by PPU at runtime)

      +

             R = Whether it was read programmatically using port $2007

      +

                     (e.g. Argus_(J).nes checks if the bankswitching works by reading the same byte of CHR data before and after switching)

      +

             x = unused.

      +


      +
      +


      +


      +

      CDL files make possible a number of things never done before. First, a PCM data ripper could be created that scans for data that has the 'P' bit set, in order to find/rip/play every PCM sample in a ROM. Also, it is possible for someone to make a more intelligent ROM corruptor that only corrupts data (by checking the 'D' bit). In any case, the Code/Data Logger opens many new possibilities for discovering useful things in games. Another interesting possibility would be to use the Code/Data Logger on an NSF file to create a stripped NSF. Such an NSF would contain nothing but the relevant subroutines and data required by each tune played; this would be helpful to NSF rippers by removing irrelevant information. Thus, an NSF ripper could create a stripped NSF by listening to each track while the Code/Data Logger operates on it, and then saving the stripped NSF. It should be noted that this capability, though tested and working on private builds, is detrimental to the process of fixing broken NSF files. For this reason, data logging is allowed for NSF files, but stripping NSF files of unused data is disabled.

      +


      +

      The Code/Data Logger becomes the most useful when you need to restore a full source code of a game using e.g. IDA or another disassembler. There you can write a custom IDC script that uses a CDL file and calls MakeCode()/MakeData() functions to help the disassembler distinguish code from data. Making full and working/reassemblable disassembly becomes really easy this way.

      +


      +


      +


      +


      +


      -

      Created with the Personal Edition of HelpNDoc: Free HTML Help documentation generator

      -
    - - + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + - -
    - - diff --git a/web/help/CommandLineOptions.html b/web/help/CommandLineOptions.html index 8f983b56..a4ffd72b 100644 --- a/web/help/CommandLineOptions.html +++ b/web/help/CommandLineOptions.html @@ -1,250 +1,441 @@ - - + + + + + - Command Line Options - - - - - - - - - - + + + + + + + + Command Line Options + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Command Line Options

    - -
    - General ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Command Line Options

    -


    -


    -

    FCEUX offers numerous command line options.

    -

    All commands are case sensitive.

    -


    -

    ROM name

    -

    Plays specified ROM (ROM name must always be put last in command line arguments)

    -


    -

    fceux path\rom.nes (or rom.zip)

    -


    -

           fceux smb.nes

    -

           fceux c:\fceux\roms\smb.zip

    -


    -


    -

    Play Movie File

    -

    Plays a specified movie (.fm2) file.  A valid ROM must be specified or movie will not be played.

    -


    -

    fcuex -playmovie path\movie.fm2 romname

    -


    -

           fceux -playmovie smb.fm2 smb.nes

    -


    -


    -

    Read-only Status

    -

    Specifies whether a movie will be in "read-only" or "read & write" mode.  (Note: a specified movie is not required to be used in conjunction with this command). 1 specifies read only status, 0 specifies read & write.

    -


    -

    fceux -readonly flag

    -


    -

           fceux -readonly 1

    -

           fceux -readonly 0 -playmovie smb.fm2 smb.nes

    -

           fceux -readonly 1 -playmovie c:\fceux\movies\smb.fm2 c:\fceux\roms\smb.nes

    -


    -


    -

    Stop Movie at frame x

    -

    Specifies that the movie will automatically stop at the specified frame.  (A movie must be specified with -playmovie for this command to work)

    -


    -

    fceux -playmovie path\movie.fm2 -stopframe framenumber romname

    -


    -

           fceux -playmovie smb.fm2 -stopframe 10000 smb.nes

    -


    -


    -

    Load State

    -

    Specifies FCEUX to automatically load a specified savestate file.  (Must have a specified ROM for this to work).

    -


    -

    fceux -loadstate path\savestatefile romname

    -


    -

           fceux -loadstate smb0.fc0 smb.nes

    -

           fceux -playmovie smb.fm2 -readonly 0 -loadstate smb0.fc0 smb.nes

    -


    -


    -

    Pause Movie After Playback

    -

    Sets the "Pause Movie After Playback" switch on/off.  1 sets it to enabled, 0 sets it to disabled.

    -


    -

    fceux -stopmovie flag

    -


    -

           fceux -stopmovie 1

    -

           fceux -playmovie smb.fm2 -readonly 0 - stopmovie 1 smb0.nes

    -


    -


    -

    Frame Display Toggle

    -

    Toggles whether or not the frame count will be displayed.  1 sets it to on, 0 sets it to off.

    -


    -

    fceux -framedisplay flag

    -


    -

           fceux -framedisplay 1

    -

           fceux -playmovie smb2.fm2 -framedisplay 1 smb0.nes

    -


    -


    -

    Input Display Toggle

    -

    Toggles whether the movie input will be displayed.  1 sets it to on, 0 sets it to off.

    -


    -

    fceux -inputdisplay flag

    -


    -

           fceux -inputdisplay 1

    -

           fceux -playmovie smb2.fm2 -inputdisplay 1 smb0.nes

    -


    -


    -

    Allow L+R/U+D

    -

    Sets whether or not the game will allow L+R/U+D input (see Input config).  1 enables L+R, 0 disables it.

    -


    -

    fceux -allowUDLR flag

    -


    -

           fceux -allowUDLR 1

    -

           fceux -allowUDLR 0 smb0.nes

    -


    -


    -

    Enable Background Input

    -

    Sets the "Enable Background Input" switch on/off.  1 sets it to enabled, 0 sets it to disabled.

    -


    -

    fceux -bginput flag

    -


    -

           fceux -bginput 0

    -

           fceux -playmovie smb.fm2 -readonly 0 -bginput 1 smb0.nes

    -


    -


    -

    Use Game Genie

    -

    Sets the Game Genie Flag (see Toggle Switches).  1 sets it to enabled, 0 sets it to disabled.

    -


    -

    fceux -gg flag

    -


    -

           fceux -gg 1

    -

           fceux -gg 1 smb0.nes

    -


    -

    PAL Emulation

    -

    Sets the PAL region. 1 sets it to enabled, 0 sets it to disabled.

    -

    (note: FCEUX will assign PAL emulation automatically if a PAL ROM is loaded)

    -


    -

    fceux -pal flag

    -


    -

           fceux -pal 1

    -

           fceux -pal 1 smb0.nes

    -


    -

    Dendy Emulation

    -

    Sets the Dendy region. 1 sets it to enabled, 0 sets it to disabled.

    -

    (note: If set to 1, it will override -pal argument)

    -


    -

    fceux -dendy flag

    -


    -

           fceux -dendy 1

    -

           fceux -dendy 1 smb0.nes

    -


    -

    Movie Status Icon Toggle

    -

    Sets the Status Icon Toggle (see Toggle Switches).  1 turns off the status icon, 0 turns it on.

    -


    -

    fceux -noicon flag

    -


    -

           fceux -noicon 1

    -

           fceux -noicon 0 smb0.nes

    -


    -


    -

    Clip Left and Right Sides

    -

    Sets the Clip Left and Right Sides Toggle (see Video Config).  1 turns on clipping, 0 turns it off.

    -


    -

    fceux -clipsides flag

    -


    -

           fceux -clipsides 0 smb0.nes

    -


    -


    -

    Allow More than 8 Sprites per Scanline

    -

    Sets the 8 Sprites per scanline flag (see Video Config).  1 turns on extra sprites, 0 turns it off.

    -


    -

    fceux -no8lim flag

    -


    -

           fceux -no8lim 0 smb0.nes

    -


    -


    -

    Disable Speed Throttling

    -

    Sets the Disable Speed Throttling When Sound is Disabled flag (see Timing Config).  1 disables throttling, 0 leaves it on.

    -


    -

    fceux -nothrottle flag

    -


    -

           fceux -nothrottle 0 smb0.nes

    -


    -


    -

    Turbo Toggle

    -

    Sets the Turbo Toggle.  1 Sets Turbo on, 0 leaves it off.

    -


    -

    fceux  -turbo flag

    -


    -

           fceux -turbo 1 smb0.nes

    -


    -


    -

    Load Config File

    -

    Loads a specified config file rather than the default fceux.cfg

    -


    -

    Warning:  the config file must be in the base directory.  A pathname can NOT be specified in the filename

    -


    -

    fceux -cfg filename

    -


    -

           fceux -cfg fceux-smbconfig.cfg smb.nes

    -


    -


    -

    Load Lua Script

    -

    Loads a Lua script on startup.

    -


    -

    fceux -lua filename

    -


    -

           fceux -lua memwatch.lua

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Command Line Options

    + +
    + +

    +

    Command Line Options

    +


    +


    +

    FCEUX offers numerous command line options.

    +

    All commands are case sensitive.

    +


    +

    ROM name

    +

    Plays specified ROM (ROM name must always be put last in command line arguments)

    +


    +

    fceux path\rom.nes (or rom.zip)

    +


    +

           fceux smb.nes

    +

           fceux c:\fceux\roms\smb.zip

    +


    +


    +

    Play Movie File

    +

    Plays a specified movie (.fm2) file.  A valid ROM must be specified or movie will not be played.

    +


    +

    fcuex -playmovie path\movie.fm2 romname

    +


    +

           fceux -playmovie smb.fm2 smb.nes

    +


    +


    +

    Read-only Status

    +

    Specifies whether a movie will be in "read-only" or "read & write" mode.  (Note: a specified movie is not required to be used in conjunction with this command). 1 specifies read only status, 0 specifies read & write.

    +


    +

    fceux -readonly flag

    +


    +

           fceux -readonly 1

    +

           fceux -readonly 0 -playmovie smb.fm2 smb.nes

    +

           fceux -readonly 1 -playmovie c:\fceux\movies\smb.fm2 c:\fceux\roms\smb.nes

    +


    +


    +

    Stop Movie at frame x

    +

    Specifies that the movie will automatically stop at the specified frame.  (A movie must be specified with -playmovie for this command to work)

    +


    +

    fceux -playmovie path\movie.fm2 -stopframe framenumber romname

    +


    +

           fceux -playmovie smb.fm2 -stopframe 10000 smb.nes

    +


    +


    +

    Load State

    +

    Specifies FCEUX to automatically load a specified savestate file.  (Must have a specified ROM for this to work).

    +


    +

    fceux -loadstate path\savestatefile romname

    +


    +

           fceux -loadstate smb0.fc0 smb.nes

    +

           fceux -playmovie smb.fm2 -readonly 0 -loadstate smb0.fc0 smb.nes

    +


    +


    +

    Pause Movie After Playback

    +

    Sets the "Pause Movie After Playback" switch on/off.  1 sets it to enabled, 0 sets it to disabled.

    +


    +

    fceux -stopmovie flag

    +


    +

           fceux -stopmovie 1

    +

           fceux -playmovie smb.fm2 -readonly 0 - stopmovie 1 smb0.nes

    +


    +


    +

    Frame Display Toggle

    +

    Toggles whether or not the frame count will be displayed.  1 sets it to on, 0 sets it to off.

    +


    +

    fceux -framedisplay flag

    +


    +

           fceux -framedisplay 1

    +

           fceux -playmovie smb2.fm2 -framedisplay 1 smb0.nes

    +


    +


    +

    Input Display Toggle

    +

    Toggles whether the movie input will be displayed.  1 sets it to on, 0 sets it to off.

    +


    +

    fceux -inputdisplay flag

    +


    +

           fceux -inputdisplay 1

    +

           fceux -playmovie smb2.fm2 -inputdisplay 1 smb0.nes

    +


    +


    +

    Allow L+R/U+D

    +

    Sets whether or not the game will allow L+R/U+D input (see Input config).  1 enables L+R, 0 disables it.

    +


    +

    fceux -allowUDLR flag

    +


    +

           fceux -allowUDLR 1

    +

           fceux -allowUDLR 0 smb0.nes

    +


    +


    +

    Enable Background Input

    +

    Sets the "Enable Background Input" switch on/off.  1 sets it to enabled, 0 sets it to disabled.

    +


    +

    fceux -bginput flag

    +


    +

           fceux -bginput 0

    +

           fceux -playmovie smb.fm2 -readonly 0 -bginput 1 smb0.nes

    +


    +


    +

    Use Game Genie

    +

    Sets the Game Genie Flag (see Toggle Switches).  1 sets it to enabled, 0 sets it to disabled.

    +


    +

    fceux -gg flag

    +


    +

           fceux -gg 1

    +

           fceux -gg 1 smb0.nes

    +


    +

    PAL Emulation

    +

    Sets the PAL region. 1 sets it to enabled, 0 sets it to disabled.

    +

    (note: FCEUX will assign PAL emulation automatically if a PAL ROM is loaded) 

    +


    +

    fceux -pal flag

    +


    +

           fceux -pal 1

    +

           fceux -pal 1 smb0.nes

    +


    +

    Dendy Emulation

    +

    Sets the Dendy region. 1 sets it to enabled, 0 sets it to disabled.

    +

    (note: If set to 1, it will override -pal argument) 

    +


    +

    fceux -dendy flag

    +


    +

           fceux -dendy 1

    +

           fceux -dendy 1 smb0.nes

    +


    +

    Movie Status Icon Toggle

    +

    Sets the Status Icon Toggle (see Toggle Switches).  1 turns off the status icon, 0 turns it on.

    +


    +

    fceux -noicon flag

    +


    +

           fceux -noicon 1

    +

           fceux -noicon 0 smb0.nes

    +


    +


    +

    Clip Left and Right Sides

    +

    Sets the Clip Left and Right Sides Toggle (see Video Config).  1 turns on clipping, 0 turns it off.

    +


    +

    fceux -clipsides flag

    +


    +

           fceux -clipsides 0 smb0.nes

    +


    +


    +

    Allow More than 8 Sprites per Scanline

    +

    Sets the 8 Sprites per scanline flag (see Video Config).  1 turns on extra sprites, 0 turns it off.

    +


    +

    fceux -no8lim flag

    +


    +

           fceux -no8lim 0 smb0.nes

    +


    +


    +

    Disable Speed Throttling

    +

    Sets the Disable Speed Throttling When Sound is Disabled flag (see Timing Config).  1 disables throttling, 0 leaves it on.

    +


    +

    fceux -nothrottle flag

    +


    +

           fceux -nothrottle 0 smb0.nes

    +


    +


    +

    Turbo Toggle

    +

    Sets the Turbo Toggle.  1 Sets Turbo on, 0 leaves it off.

    +


    +

    fceux  -turbo flag

    +


    +

           fceux -turbo 1 smb0.nes

    +


    +


    +

    Load Config File

    +

    Loads a specified config file rather than the default fceux.cfg

    +


    +

    Warning:  the config file must be in the base directory.  A pathname can NOT be specified in the filename

    +


    +

    fceux -cfg filename

    +


    +

           fceux -cfg fceux-smbconfig.cfg smb.nes

    +


    +


    +

    Load Lua Script

    +

    Loads a Lua script on startup.

    +


    +

    fceux -lua filename

    +


    +

           fceux -lua memwatch.lua

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easy EBook and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Commands.html b/web/help/Commands.html index 164774cc..aa3bc325 100644 --- a/web/help/Commands.html +++ b/web/help/Commands.html @@ -1,264 +1,455 @@ - - + + + + + - Using Lua - - - - - - - - - - + + + + + + + + Using Lua + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Using Lua

    - -
    - Lua Scripting ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    (written by qFox)

    -


    -

    Introduction

    -


    -

    Lua is a scripting language. It is used in games like Farcry and World of Warcraft (and many other games and applications!). Even though you can find all kinds of tutorials online, let me help you with the basics.

    -


    -

    I will assume you are at least somewhat familiar with the basics of programming. So basic stuff like arrays, variables, strings, loops and if-then-else and branching are not explained here.

    -


    -

    A hello world EmuLua program looks like this:

    -


    -

    while (true) do

    -

           gui.text(50,50,"Hello world!");

    -

           emu.frameadvance();

    -

    end;

    -


    -

    When you load the script, the emulator will sort of go into pause mode and hand controls over to Lua (you!). Hence you are responsible for frameadvancing the emulator.

    -

    IF YOU DO NOT CALL emu.frameadvance AT THE CYCLE OF THE MAIN LOOP YOU WILL FREEZE THE EMULATOR! There. You have been warned. Don't worry though, you'll make this mistake at least once. Just force-quit the application and try again :)

    -


    -

    Syntax

    -


    -

    Now then. Just like any other language, Lua has a few quirks you should be aware of.

    -


    -

    First of all, if's require a then and end. After a couple of days intensive Lua coding, I still make this mistake myself, but the Lua interpreter will prompt you of such errors on load, so don't worry too much about it. So:

    -


    -

    if (something) then

    -

           dostuff

    -

    end;

    -


    -

    Lua uses nil instead of null.

    -


    -

    There are only two values that evaluate to "false", these are "nil" and "false". ANYTHING else will evaluate to true, even 0 or the empty string.

    -


    -

    Comments are denoted by two consecutive dashes; --. Anything after it on the same line is a comment and ignored by Lua. There is no /* */ type of commenting in Lua.

    -


    -

    Variables have a local and global scope. You explicitly make a variable local by declaring it with the "local" keyword.

    -


    -

    somethingglobal; -- accessible by any function or flow

    -

    local something; -- only known to the same or deeper scope as where it was declared

    -


    -

    Note that variables declared in for loops (see below) are always considered local.

    -


    -

    Arrays are called tables in Lua. To be more precise, Lua uses associative arrays.

    -


    -

    Do not rely on the table.length() when your table can contain nil values, this function stops when it encounters a nil value, thus possibly cutting your table short.

    -


    -

    One experienced programmers will have to get used to is the table offset; tables start at index 1, not 0. That's just the way it is, deal with it.

    -


    -

    There are a few ways to create a table:

    -


    -

    local tbl1 = {}; -- empty table

    -

    local tbl2 = {"a","b","c","d"}; -- table with 5 strings

    -

    local tbl3 = {a=1,b=2,c=3}; -- associative table with 3 numbers

    -

    local tbl4 = {"a",b=2,c="x","d"=5}; -- associative table with mixed content

    -


    -

    Note that you can mix up the data in one table, as shown by tbl4.

    -


    -

    You can refer to table values in a few equivalent manners, using the examples above:

    -


    -

    tbl1[1] -- = nil because tbl1 is empty

    -

    tbl2[2] -- = "b"

    -

    tbl3["a"] -- = 1

    -

    tbl4.b -- = 2

    -

    tbl2.3 -- = "c"

    -


    -

    When the argument of a function is just a table, the parantheses "()" are optional. So for instance:

    -


    -

    processTable({a=2,b=3});

    -


    -

    Is equivalent to

    -


    -

    processTable{a=2,b=3};

    -


    -

    Another notation that's equivalent is

    -


    -

    filehandle.read(filehandle, 5);

    -

    filehandle:read(5);

    -


    -

    When using the colon notation ":" Lua will call the function adding the self-reference to the front of the parameterstack.

    -


    -

    Functions behave like objects and are declared in the follow manner:

    -


    -

    function doSomething(somevalue, anothervalue)

    -

           dostuffhere

    -

    end;

    -


    -

    So no curly braces "{}" !

    -


    -

    Some flow control:

    -


    -

    for i=0,15 do

    -

     -- do stuff here, i runs from 0 to 15 (inclusive!)

    -

    end;

    -


    -

    for key,value in pairs(table) do

    -

     -- do stuff here. pairs will iterate through the table, splitting the keys and values

    -

    end;

    -


    -

    while (somethingistrue) do

    -


    -

    end;

    -


    -

    if (somethingistrue) then

    -


    -

    end;

    -


    -

    if (somethingistrue) then

    -


    -

    else

    -


    -

    end;

    -


    -

    if (somethingistrue) then

    -


    -

    elseif (somethingelseistrue) then

    -


    -

    end;

    -


    -

    For comparison, you only have to remember that the exclamationmark is not used. Not equal "!=" is written like tilde-equals "~=" and if (!something) then ... is written with "not " in front of it; if (not something) then...

    -


    -

    For easy reference to the standard libraries look on the bottom half of this page: http://www.lua.org/manual/5.1/

    -


    -

    Lua in FCEUX

    -


    -

    Now then, let's get to the emulator specifics!

    -


    -

    To load a Lua script in FCEU first load a rom (Lua can only do things after each frame cycle so load a rom first). Go to file, at the bottom choose Run Lua Script and select and load the file.

    -


    -

    When Lua starts, the emulator pauses and hands control over to Lua. Lua (that's you!) decides when the next frame is processed. That's why it's very common to write an endless while loop, exiting the main loop of a script will exit the script and hand control back to the emulator. This also happens when a script unexpectingly crashes.

    -


    -

    A bare script looks like this:

    -


    -

    while (true) do

    -

     emu.frameadvance();

    -

    end;

    -


    -

    And is about equal to not running Lua at all. The frameadvance function is the same called internally, so no loss of speed there!

    -


    -

    Bitwise operators:

    -


    -

    Lua does not have bitwise operators, so we supply some for you. These are common bitwise operators, nothing fancy.

    -


    -

    AND(a,b);

    -

    OR(a,b);

    -

    XOR(a,b);

    -

    BIT(n); -- returns a number with only bit n set (1)

    -


    -

    The emulator specific Lua is equal to the one of snes9x, with some platform specific changes (few buttons, for instance).

    -

    You can find the reference here: http://dehacked.2y.net/snes9x-lua.html

    -

    The following is a quick reference, you can go to the snes9x reference for more details.

    -


    -

    To paint stuff on screen, use the gui table. This contains a few predefined functions to manipulate the main window. For any coordinate, 0,0 is the top-left pixel of the window. You have to prevent out-of-bound errors yourself for now. If a color can be passed on, it is a string. HTML-syntax is supported ("#34053D"), as well as a FEW colors ("red", "green", "blue" ...).

    -


    -

    gui.text(x, y, str); -- Print a line to the window, you can use \n for a return but it will only work once

    -

    gui.pixel(x, y, color); -- plot a pixel at the given coordinate

    -

    gui.line(x1, y1, x2, y2, color); -- plot a line from x1,y1 to x2,y2

    -

    gui.box(x1, y1, x2, y2, color); -- draw a square from x1,y1 to x2,y2

    -

    gui.popup(str); -- pops up a messagebox informing the user of something. Real handy when debugging!

    -

    gui.getpixel(x,y); -- return the values of the pixel at given position. Returns three numbers of the emulator image before paiting is applied.

    -

    gui.gdscreenshot(); -- Takes a screen shot of the image and returns it in the form of a string which can be imported by the gd library using the gd.createFromGdStr() function

    -

    (for more gd functions see DeHackED's reference: http://dehacked.2y.net/snes9x-lua.html)

    -


    -

    PAINTING IS ALWAYS ONE FRAME BEHIND! This is because the painting is done at the creation of the next frame, not while Lua is running.

    -


    -

    Emulator control:

    -


    -

    emu.frameadvance(); -- advances emulation ONE frame

    -

    emu.pause(); -- same as pressing the pause button

    -

    emu.speedmode(strMode); -- Supported are "normal","turbo","nothrottle","maximum". But know that except for "normal", all other modes will run as "turbo" for now.

    -

    emu.wait(); -- skips the emulation of the next frame, in case your script needs to wait for something

    -


    -

    Memory control:

    -


    -

    memory.readbyte(adr); -- read one byte from given address and return it. Besides decimal values Lua also allows the hex notation 0x00FA. In FCEUX reading is done BEFORE the cheats are applied!

    -

    memory.writebyte(adr, value); -- write one byte to the RAM of the NES. writing is done AFTER the hexeditor receives its values, so if you are freezing an address by Lua, it will not show in the hex editor (but it will in the game :)

    -

    memory.readbytesigned(adr); -- same as readbyte, except this returns a signed value, rather then an unsigned value.

    -

    memory.register(adr, function); -- binds a function to an address. The function will be called when an address changes. NOTE THAT THIS IS EXPENSIVE (eg.: slow)! Only one function allowed per address.

    -


    -

    Input control:

    -


    -

    You can read and write input by using the joypad table. A input table has the following (case sensitive) keys, where nil denotes they are not to be pressed: up down left right start select A B

    -


    -

    joypad.read(playern); -- get the input table for the player who's input you want to read (a number!)

    -

    joypad.write(playern, inputtable); -- set the input for player n. Note that this will overwrite any input from the user, and only when this is used.

    -


    -

    Savestates:

    -


    -

    You can load and save to the predefined savestates 1 ... 9 or create new "anonymous" savestates. You must first create a savestate object, which is your handle to a savestate. Then you can pass this handle on to savestate.load or save to do so.

    -


    -

    savestate.create(n); -- n is optional. When supplied, it will create a savestate for slot n, otherwise a new (anonymous) savestate object is created. Note that this does not yet save or load anything!

    -

    savestate.load(state); -- load the given savestate

    -

    savestate.save(state); -- save the given savestate

    -


    -

    For an up-to-date list of functions, see the Lua Functions List.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Web Help sites

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Using Lua

    + +
    + +

    +

    (written by qFox)

    +


    +

    Introduction

    +


    +

    Lua is a scripting language. It is used in games like Farcry and World of Warcraft (and many other games and applications!). Even though you can find all kinds of tutorials online, let me help you with the basics.

    +


    +

    I will assume you are at least somewhat familiar with the basics of programming. So basic stuff like arrays, variables, strings, loops and if-then-else and branching are not explained here.

    +


    +

    A hello world EmuLua program looks like this:

    +


    +

    while (true) do

    +

           gui.text(50,50,"Hello world!");

    +

           emu.frameadvance();

    +

    end;

    +


    +

    When you load the script, the emulator will sort of go into pause mode and hand controls over to Lua (you!). Hence you are responsible for frameadvancing the emulator.

    +

    IF YOU DO NOT CALL emu.frameadvance AT THE CYCLE OF THE MAIN LOOP YOU WILL FREEZE THE EMULATOR! There. You have been warned. Don't worry though, you'll make this mistake at least once. Just force-quit the application and try again :)

    +


    +

    Syntax

    +


    +

    Now then. Just like any other language, Lua has a few quirks you should be aware of.

    +


    +

    First of all, if's require a then and end. After a couple of days intensive Lua coding, I still make this mistake myself, but the Lua interpreter will prompt you of such errors on load, so don't worry too much about it. So:

    +


    +

    if (something) then

    +

           dostuff

    +

    end;

    +


    +

    Lua uses nil instead of null.

    +


    +

    There are only two values that evaluate to "false", these are "nil" and "false". ANYTHING else will evaluate to true, even 0 or the empty string.

    +


    +

    Comments are denoted by two consecutive dashes; --. Anything after it on the same line is a comment and ignored by Lua. There is no /* */ type of commenting in Lua.

    +


    +

    Variables have a local and global scope. You explicitly make a variable local by declaring it with the "local" keyword.

    +


    +

    somethingglobal; -- accessible by any function or flow

    +

    local something; -- only known to the same or deeper scope as where it was declared

    +


    +

    Note that variables declared in for loops (see below) are always considered local.

    +


    +

    Arrays are called tables in Lua. To be more precise, Lua uses associative arrays.

    +


    +

    Do not rely on the table.length() when your table can contain nil values, this function stops when it encounters a nil value, thus possibly cutting your table short.

    +


    +

    One experienced programmers will have to get used to is the table offset; tables start at index 1, not 0. That's just the way it is, deal with it.

    +


    +

    There are a few ways to create a table:

    +


    +

    local tbl1 = {}; -- empty table

    +

    local tbl2 = {"a","b","c","d"}; -- table with 5 strings

    +

    local tbl3 = {a=1,b=2,c=3}; -- associative table with 3 numbers

    +

    local tbl4 = {"a",b=2,c="x","d"=5}; -- associative table with mixed content

    +


    +

    Note that you can mix up the data in one table, as shown by tbl4.

    +


    +

    You can refer to table values in a few equivalent manners, using the examples above:

    +


    +

    tbl1[1] -- = nil because tbl1 is empty

    +

    tbl2[2] -- = "b"

    +

    tbl3["a"] -- = 1

    +

    tbl4.b -- = 2

    +

    tbl2.3 -- = "c"

    +


    +

    When the argument of a function is just a table, the parantheses "()" are optional. So for instance:

    +


    +

    processTable({a=2,b=3});

    +


    +

    Is equivalent to

    +


    +

    processTable{a=2,b=3};

    +


    +

    Another notation that's equivalent is

    +


    +

    filehandle.read(filehandle, 5);

    +

    filehandle:read(5);

    +


    +

    When using the colon notation ":" Lua will call the function adding the self-reference to the front of the parameterstack.

    +


    +

    Functions behave like objects and are declared in the follow manner:

    +


    +

    function doSomething(somevalue, anothervalue)

    +

           dostuffhere

    +

    end;

    +


    +

    So no curly braces "{}" !

    +


    +

    Some flow control:

    +


    +

    for i=0,15 do

    +

      -- do stuff here, i runs from 0 to 15 (inclusive!)

    +

    end;

    +


    +

    for key,value in pairs(table) do

    +

      -- do stuff here. pairs will iterate through the table, splitting the keys and values

    +

    end;

    +


    +

    while (somethingistrue) do

    +


    +

    end;

    +


    +

    if (somethingistrue) then

    +


    +

    end;

    +


    +

    if (somethingistrue) then

    +


    +

    else

    +


    +

    end;

    +


    +

    if (somethingistrue) then

    +


    +

    elseif (somethingelseistrue) then

    +


    +

    end;

    +


    +

    For comparison, you only have to remember that the exclamationmark is not used. Not equal "!=" is written like tilde-equals "~=" and if (!something) then ... is written with "not " in front of it; if (not something) then...

    +


    +

    For easy reference to the standard libraries look on the bottom half of this page: http://www.lua.org/manual/5.1/

    +


    +

    Lua in FCEUX

    +


    +

    Now then, let's get to the emulator specifics!

    +


    +

    To load a Lua script in FCEU first load a rom (Lua can only do things after each frame cycle so load a rom first). Go to file, at the bottom choose Run Lua Script and select and load the file.

    +


    +

    When Lua starts, the emulator pauses and hands control over to Lua. Lua (that's you!) decides when the next frame is processed. That's why it's very common to write an endless while loop, exiting the main loop of a script will exit the script and hand control back to the emulator. This also happens when a script unexpectingly crashes.

    +


    +

    A bare script looks like this:

    +


    +

    while (true) do

    +

      emu.frameadvance();

    +

    end;

    +


    +

    And is about equal to not running Lua at all. The frameadvance function is the same called internally, so no loss of speed there!

    +


    +

    Bitwise operators:

    +


    +

    Lua does not have bitwise operators, so we supply some for you. These are common bitwise operators, nothing fancy.

    +


    +

    AND(a,b);

    +

    OR(a,b);

    +

    XOR(a,b);

    +

    BIT(n); -- returns a number with only bit n set (1)

    +


    +

    The emulator specific Lua is equal to the one of snes9x, with some platform specific changes (few buttons, for instance). 

    +

    You can find the reference here: http://dehacked.2y.net/snes9x-lua.html

    +

    The following is a quick reference, you can go to the snes9x reference for more details.

    +


    +

    To paint stuff on screen, use the gui table. This contains a few predefined functions to manipulate the main window. For any coordinate, 0,0 is the top-left pixel of the window. You have to prevent out-of-bound errors yourself for now. If a color can be passed on, it is a string. HTML-syntax is supported ("#34053D"), as well as a FEW colors ("red", "green", "blue" ...).

    +


    +

    gui.text(x, y, str); -- Print a line to the window, you can use \n for a return but it will only work once

    +

    gui.pixel(x, y, color); -- plot a pixel at the given coordinate

    +

    gui.line(x1, y1, x2, y2, color); -- plot a line from x1,y1 to x2,y2

    +

    gui.box(x1, y1, x2, y2, color); -- draw a square from x1,y1 to x2,y2

    +

    gui.popup(str); -- pops up a messagebox informing the user of something. Real handy when debugging!

    +

    gui.getpixel(x,y); -- return the values of the pixel at given position. Returns three numbers of the emulator image before paiting is applied.

    +

    gui.gdscreenshot(); -- Takes a screen shot of the image and returns it in the form of a string which can be imported by the gd library using the gd.createFromGdStr() function

    +

    (for more gd functions see DeHackED's reference: http://dehacked.2y.net/snes9x-lua.html)

    +


    +

    PAINTING IS ALWAYS ONE FRAME BEHIND! This is because the painting is done at the creation of the next frame, not while Lua is running.

    +


    +

    Emulator control:

    +


    +

    emu.frameadvance(); -- advances emulation ONE frame

    +

    emu.pause(); -- same as pressing the pause button

    +

    emu.speedmode(strMode); -- Supported are "normal","turbo","nothrottle","maximum". But know that except for "normal", all other modes will run as "turbo" for now.

    +

    emu.wait(); -- skips the emulation of the next frame, in case your script needs to wait for something

    +


    +

    Memory control:

    +


    +

    memory.readbyte(adr); -- read one byte from given address and return it. Besides decimal values Lua also allows the hex notation 0x00FA. In FCEUX reading is done BEFORE the cheats are applied!

    +

    memory.writebyte(adr, value); -- write one byte to the RAM of the NES. writing is done AFTER the hexeditor receives its values, so if you are freezing an address by Lua, it will not show in the hex editor (but it will in the game :)

    +

    memory.readbytesigned(adr); -- same as readbyte, except this returns a signed value, rather then an unsigned value.

    +

    memory.register(adr, function); -- binds a function to an address. The function will be called when an address changes. NOTE THAT THIS IS EXPENSIVE (eg.: slow)! Only one function allowed per address.

    +


    +

    Input control:

    +


    +

    You can read and write input by using the joypad table. A input table has the following (case sensitive) keys, where nil denotes they are not to be pressed: up down left right start select A B

    +


    +

    joypad.read(playern); -- get the input table for the player who's input you want to read (a number!)

    +

    joypad.write(playern, inputtable); -- set the input for player n. Note that this will overwrite any input from the user, and only when this is used.

    +


    +

    Savestates:

    +


    +

    You can load and save to the predefined savestates 1 ... 9 or create new "anonymous" savestates. You must first create a savestate object, which is your handle to a savestate. Then you can pass this handle on to savestate.load or save to do so.

    +


    +

    savestate.create(n); -- n is optional. When supplied, it will create a savestate for slot n, otherwise a new (anonymous) savestate object is created. Note that this does not yet save or load anything!

    +

    savestate.load(state); -- load the given savestate

    +

    savestate.save(state); -- save the given savestate

    +


    +

    For an up-to-date list of functions, see the Lua Functions List.

    +

    +

    Created with the Personal Edition of HelpNDoc: Benefits of a Help Authoring Tool

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Config.html b/web/help/Config.html index 9c17b87e..97ea86dd 100644 --- a/web/help/Config.html +++ b/web/help/Config.html @@ -1,121 +1,316 @@ - - + + + + + - Config - - - - - - - - - - + + + + + + + + Config + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Config

    - -
    -
    - Previous - - Next - -
    -
    -
    -
    - -

    -

    The Config Menu

    -


    -


    -

    These chapters explain options under FCEUX's Config menu.

    -


    -

    Menu Items & Sub-menus

    -


    -

    Explains the basic menu items and sub-menu items in the top of the menu.

    -


    -

    GUI

    -


    -

    Settings related to the FCEU emulator window.

    -


    -


    -

    Directories

    -


    -

    Sets Directory override assignments.

    -


    -


    -

    Input

    -


    -

    Assigns keys/joypad buttons to emulated controllers.

    -


    -


    -

    Network Play

    -


    -

    Various settings related to playing over the internet.

    -


    -

    Palette

    -


    -

    Palette options.

    -


    -

    Sound

    -


    -

    Sets sound configuration options.

    -


    -


    -

    Timing

    -


    -

    Settings related to emulation timing.

    -


    -

    Video

    -


    -

    Sets video & graphics configuration options.

    -


    -


    -

    Movie Options

    -


    -

    Sets options related to playing/recording movie files

    -


    -


    -

    Map Hotkeys

    -


    -

    Sets Hotkey assignments.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Config

    + +
    + +

    +

    The Config Menu

    +


    +


    +

    These chapters explain options under FCEUX's Config menu.

    +


    +

    Menu Items & Sub-menus

    +


    +

    Explains the basic menu items and sub-menu items in the top of the menu.

    +


    +

    GUI

    +


    +

    Settings related to the FCEU emulator window.

    +


    +


    +

    Directories

    +


    +

    Sets Directory override assignments.

    +


    +


    +

    Input

    +


    +

    Assigns keys/joypad buttons to emulated controllers.

    +


    +


    +

    Network Play

    +


    +

    Various settings related to playing over the internet.

    +


    +

    Palette

    +


    +

    Palette options.

    +


    +

    Sound

    +


    +

    Sets sound configuration options.

    +


    +


    +

    Timing

    +


    +

    Settings related to emulation timing.

    +


    +

    Video

    +


    +

    Sets video & graphics configuration options.

    +


    +


    +

    Movie Options

    +


    +

    Sets options related to playing/recording movie files

    +


    +


    +

    Map Hotkeys

    +


    +

    Sets Hotkey assignments.

    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create PDF Help documents

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/ContextMenuItems.html b/web/help/ContextMenuItems.html index 59e5bb44..1c5c1337 100644 --- a/web/help/ContextMenuItems.html +++ b/web/help/ContextMenuItems.html @@ -1,202 +1,393 @@ - - + + + + + - Context Menu Items - - - - - - - - - - + + + + + + + + Context Menu Items + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Context Menu Items

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Context Menu Items

    + +
    +

    -

    Context Menu

    -


    -

    FCEUX includes a context menu that allows commonly used menu functions for various situations.  There are some functions that appear only here.

    -


    -

    This page describes all the possible menu items in each possible context situation.

    -


    -

    No game loaded.

    -


    -

    Appears when no game is loaded.

    -


    -

    Open ROM

    -

    Same as the File > Open ROM option

    -


    -

    Last ROM used

    -

    Opens the most recently used file from the Recent Files Menu

    -


    -

    Help

    -

    Brings up the Getting Started chapter in the help document.

    -


    -


    -

    Game Loaded

    -


    -

    Appears when a game is loaded, but not a movie (.fm2).

    -


    -

    Play Movie...

    -

    Same as the File > Movie > Play Movie menu item.

    -


    -

    Record Movie...

    -

    Same as the File > Movie > Record Movie menu item.

    -


    -

    Undo savestate

    -

    If this option is enabled it means the last savestate saved over-wrote a previous savestate file.  This option restores the previous savestate file.

    -


    -

    Redo savestate

    -

    If this option is in the menu, it means that Undo savestate was recently used to restore a previous savestate.  This reverts that change.

    -


    -

    Rewind to last auto-save

    -

    Auto-save must be enabled for this menu item to be accessible.  Same as the Load last auto-save Hotkey Item.  It loads the last auto-savestate.  Auto-savestates are created once about every 4 seconds, so this typically has the effect of rewinding emulation.

    -


    -

    Screenshot

    -

    Same as File > Screenshot.

    -


    -

    Close ROM

    -

    Same as File > Close

    -


    -


    -

    Movie loaded - Read-only

    -


    -

    Appears when a movie is loaded and Read-only mode is set.

    -


    -

    Toggle to read+write

    -

    Sets Read status to Read+Write.

    -


    -

    Play Movie from Beginning

    -

    Same as File > Movie > Play from Beginning.  Turns Read status to Read-Only and plays the movie from frame 1.

    -


    -

    Stop Movie Replay

    -

    Same as File > Movie > Stop Movie.

    -


    -

    View comments and subtitles

    -

    Opens up the Metadata dialog.  Same as the Metadata button on the Play movie dialog.

    -


    -

    Undo savestate

    -

    If this option is enabled it means the last savestate saved over-wrote a previous savestate file.  This option restores the previous savestate file.

    -


    -

    Redo savestate

    -

    If this option is in the menu, it means that Undo savestate was recently used to restore a previous savestate.  This reverts that change.

    -


    -

    Rewind to last auto-save

    -

    Auto-save must be enabled for this menu item to be accessible.  Same as the Load last auto-save Hotkey Item.  It loads the last auto-savestate.  Auto-savestates are created once about every 4 seconds, so this typically has the effect of rewinding emulation.

    -


    -

    Help

    -

    Opens the Movie recording chapter of the help document.

    -


    -


    -

    Movie loaded - Read + Write

    -


    -

    Toggle to Read-only

    -

    Sets Read status to Read-Only.

    -


    -

    Play Movie From Beginning

    -

    Same as File > Movie > Play from Beginning.  Turns Read status to Read-Only and plays the movie from frame 1.

    -


    -

    Stop Movie Recording

    -

    Same as File > Movie > Stop Movie.

    -


    -

    View comments and subtitles

    -

    Opens up the Metadata dialog.  Same as the Metadata button on the Play movie dialog.

    -


    -

    Make backup

    -

    Generates a backup .fm2.  Uses the same file naming system as the auto-movie backup.  (See movie options for details).

    -


    -

    Undo savestate

    -

    If this option is enabled it means the last savestate saved over-wrote a previous savestate file.  This option restores the previous savestate file.

    -


    -

    Redo savestate

    -

    If this option is in the menu, it means that Undo savestate was recently used to restore a previous savestate.  This reverts that change.

    -


    -

    Undo loadstate

    -

    If this option is enabled it was because the Loadstate function was called sometime while the game was loaded.  This function restores the game state to where it was before loadstate was called.

    -


    -

    Redo loadstate

    -

    If Undo loadstate was called, this option is available.  It reverts the change and restores the game back to the point it was when loadstate was called.

    -


    -

    Help

    -

    Opens the Movie recording chapter of the help document.

    -


    -

    Additional items may also appear related to these situations:

    -


    -

    Lua

    -


    -

    Load last Lua

    -

    If there is at least 1 filename in the Recent Lua Files menu this calls the most recently used Lua script file.  Has the same effect as the File > Lua > Reload Lua Script menu item.

    -


    -

    Stop Lua

    -

    If a Lua script is currently loaded this option is available.  Same as File > Lua > Stop Lua Script.

    -


    -

    Hide Menu

    -


    -

    Unhide menu

    -

    If the main FCEUX menu is hidden this option is available. Restores the main menu.

    -


    -

    Subtitles

    -


    -

    If a movie is loaded and has subtitles:

    -
      -
    • a toggle subtitles option will be in the menu
    • -
    • a Dump to SRT file option will be available.  This dumps the subtitles to a standard subtitle file compatible with A/V containers such as .mkv
    • +

      Context Menu

      +


      +

      FCEUX includes a context menu that allows commonly used menu functions for various situations.  There are some functions that appear only here.

      +


      +

      This page describes all the possible menu items in each possible context situation.

      +


      +

      No game loaded.

      +


      +

      Appears when no game is loaded.

      +


      +

      Open ROM

      +

      Same as the File > Open ROM option

      +


      +

      Last ROM used

      +

      Opens the most recently used file from the Recent Files Menu

      +


      +

      Help

      +

      Brings up the Getting Started chapter in the help document.

      +


      +


      +

      Game Loaded

      +


      +

      Appears when a game is loaded, but not a movie (.fm2).

      +


      +

      Play Movie...

      +

      Same as the File > Movie > Play Movie menu item.

      +


      +

      Record Movie...

      +

      Same as the File > Movie > Record Movie menu item.

      +


      +

      Undo savestate

      +

      If this option is enabled it means the last savestate saved over-wrote a previous savestate file.  This option restores the previous savestate file.

      +


      +

      Redo savestate

      +

      If this option is in the menu, it means that Undo savestate was recently used to restore a previous savestate.  This reverts that change.

      +


      +

      Rewind to last auto-save

      +

      Auto-save must be enabled for this menu item to be accessible.  Same as the Load last auto-save Hotkey Item.  It loads the last auto-savestate.  Auto-savestates are created once about every 4 seconds, so this typically has the effect of rewinding emulation.

      +


      +

      Screenshot

      +

      Same as File > Screenshot.

      +


      +

      Close ROM

      +

      Same as File > Close

      +


      +


      +

      Movie loaded - Read-only

      +


      +

      Appears when a movie is loaded and Read-only mode is set.

      +


      +

      Toggle to read+write

      +

      Sets Read status to Read+Write.

      +


      +

      Play Movie from Beginning

      +

      Same as File > Movie > Play from Beginning.  Turns Read status to Read-Only and plays the movie from frame 1.

      +


      +

      Stop Movie Replay

      +

      Same as File > Movie > Stop Movie.

      +


      +

      View comments and subtitles

      +

      Opens up the Metadata dialog.  Same as the Metadata button on the Play movie dialog.

      +


      +

      Undo savestate

      +

      If this option is enabled it means the last savestate saved over-wrote a previous savestate file.  This option restores the previous savestate file.

      +


      +

      Redo savestate

      +

      If this option is in the menu, it means that Undo savestate was recently used to restore a previous savestate.  This reverts that change.

      +


      +

      Rewind to last auto-save

      +

      Auto-save must be enabled for this menu item to be accessible.  Same as the Load last auto-save Hotkey Item.  It loads the last auto-savestate.  Auto-savestates are created once about every 4 seconds, so this typically has the effect of rewinding emulation.

      +


      +

      Help

      +

      Opens the Movie recording chapter of the help document.

      +


      +


      +

      Movie loaded - Read + Write

      +


      +

      Toggle to Read-only

      +

      Sets Read status to Read-Only.

      +


      +

      Play Movie From Beginning

      +

      Same as File > Movie > Play from Beginning.  Turns Read status to Read-Only and plays the movie from frame 1.

      +


      +

      Stop Movie Recording

      +

      Same as File > Movie > Stop Movie.

      +


      +

      View comments and subtitles

      +

      Opens up the Metadata dialog.  Same as the Metadata button on the Play movie dialog.

      +


      +

      Make backup

      +

      Generates a backup .fm2.  Uses the same file naming system as the auto-movie backup.  (See movie options for details).

      +


      +

      Undo savestate

      +

      If this option is enabled it means the last savestate saved over-wrote a previous savestate file.  This option restores the previous savestate file.

      +


      +

      Redo savestate

      +

      If this option is in the menu, it means that Undo savestate was recently used to restore a previous savestate.  This reverts that change.

      +


      +

      Undo loadstate

      +

      If this option is enabled it was because the Loadstate function was called sometime while the game was loaded.  This function restores the game state to where it was before loadstate was called.

      +


      +

      Redo loadstate

      +

      If Undo loadstate was called, this option is available.  It reverts the change and restores the game back to the point it was when loadstate was called.

      +


      +

      Help

      +

      Opens the Movie recording chapter of the help document.

      +


      +

      Additional items may also appear related to these situations:

      +


      +

      Lua

      +


      +

      Load last Lua

      +

      If there is at least 1 filename in the Recent Lua Files menu this calls the most recently used Lua script file.  Has the same effect as the File > Lua > Reload Lua Script menu item.

      +


      +

      Stop Lua

      +

      If a Lua script is currently loaded this option is available.  Same as File > Lua > Stop Lua Script.

      +


      +

      Hide Menu

      +


      +

      Unhide menu

      +

      If the main FCEUX menu is hidden this option is available. Restores the main menu.

      +


      +

      Subtitles

      +


      +

      If a movie is loaded and has subtitles:

      +
        +
      • a toggle subtitles option will be in the menu
      • +
      • a Dump to SRT file option will be available.  This dumps the subtitles to a standard subtitle file compatible with A/V containers such as .mkv
      -


      -


      +


      +


      -

      Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

      -
    - - + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + - -
    - - diff --git a/web/help/Covertfcm.html b/web/help/Covertfcm.html index 1ae47fa4..91f13403 100644 --- a/web/help/Covertfcm.html +++ b/web/help/Covertfcm.html @@ -1,78 +1,269 @@ - - + + + + + - Convert fcm - - - - - - - - - - + + + + + + + + Convert fcm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Convert fcm

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Converting .fcm to .fm2 files

    -


    -

    FCEUX uses a new movie file format (.fm2).  In order to use movie files frame previous FCE Ultra versions (.fcm) you will need to convert to .fm2 first.

    -


    -

    Using .fcm Convert

    -


    -

    To use it simply highlight it.  Then select the .fcm you wish to convert (or shift+click to select multiple .fcm files).  Then click Open to have the select files converted.  All files selected will have a matching .fm2 file copied into the same folder.

    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Help generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Convert fcm

    + +
    + +

    +

    Converting .fcm to .fm2 files

    +


    +

    FCEUX uses a new movie file format (.fm2).  In order to use movie files frame previous FCE Ultra versions (.fcm) you will need to convert to .fm2 first.

    +


    +

    Using .fcm Convert

    +


    +

    To use it simply highlight it.  Then select the .fcm you wish to convert (or shift+click to select multiple .fcm files).  Then click Open to have the select files converted.  All files selected will have a matching .fm2 file copied into the same folder.

    +

    +

    Created with the Personal Edition of HelpNDoc: Free EPub and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/CustomizingthroughtheConfigFil.html b/web/help/CustomizingthroughtheConfigFil.html index 5eb70869..9592cdb8 100644 --- a/web/help/CustomizingthroughtheConfigFil.html +++ b/web/help/CustomizingthroughtheConfigFil.html @@ -1,121 +1,312 @@ - - + + + + + - Customizing through the Config File - - - - - - - - - - + + + + + + + + Customizing through the Config File + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Customizing through the Config File

    - -
    - General ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Customizing through the Config File

    -


    -


    -

    There are some options that can only be done by directly editing the config (fceux.cfg) file.  All of those options are documented here.

    -

    The .cfg file is a text file and can be opened by any text editor (just as wordpad).

    -


    -


    -

    Emulator background Color when Graphics Background is disabled

    -


    -

    gNoBGFillColor

    -


    -

    When you disable the backgrounds (Config > Display > Graphics: GB), the default color is black.  You can change that color by modifying this value.  By default it is 255 (black).

    -


    -


    -

    Debugger

    -


    -

    debuggerFontSize 15

    -


    -

    This value determines the size of the "Courier" font used by Debugger and Trace Logger. By default it is 15.

    -


    -


    -

    Hex Editor

    -


    -

    hexeditorFontSize 15

    -


    -

    This value determines the size of the "Courier" font used by Hex Editor. By default it is 15.

    -


    -


    -

    HexRowHeightBorder 0

    -


    -

    This value determines the number of pixels between each row of values in the Hex Editor.  By default it is 0.

    -


    -


    -

    HexBackColorR 255

    -

    HexBackColorG 255

    -

    HexBackColorB 255

    -


    -

    HexForeColorR 0

    -

    HexForeColorG 0

    -

    HexForeColorB 0

    -


    -

    HexFreezeColorR 0

    -

    HexFreezeColorG 0

    -

    HexFreezeColorB 255

    -


    -

    These values allows are the Hex Editor color scheme values (RGB).  The background color is 255,255,255 (white) by default.  The foreground color (text) is 0,0,0 (black) by default. When an address is frozen it is 0,0,255 (blue) by default.

    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create HTML Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Customizing through the Config File

    + +
    + +

    +

    Customizing through the Config File

    +


    +


    +

    There are some options that can only be done by directly editing the config (fceux.cfg) file.  All of those options are documented here.

    +

    The .cfg file is a text file and can be opened by any text editor (just as wordpad).

    +


    +


    +

    Emulator background Color when Graphics Background is disabled

    +


    +

    gNoBGFillColor

    +


    +

    When you disable the backgrounds (Config > Display > Graphics: GB), the default color is black.  You can change that color by modifying this value.  By default it is 255 (black).

    +


    +


    +

    Debugger

    +


    +

    debuggerFontSize 15

    +


    +

    This value determines the size of the "Courier" font used by Debugger and Trace Logger. By default it is 15.

    +


    +


    +

    Hex Editor

    +


    +

    hexeditorFontSize 15

    +


    +

    This value determines the size of the "Courier" font used by Hex Editor. By default it is 15.

    +


    +


    +

    HexRowHeightBorder 0

    +


    +

    This value determines the number of pixels between each row of values in the Hex Editor.  By default it is 0.

    +


    +


    +

    HexBackColorR 255

    +

    HexBackColorG 255

    +

    HexBackColorB 255

    +


    +

    HexForeColorR 0

    +

    HexForeColorG 0

    +

    HexForeColorB 0

    +


    +

    HexFreezeColorR 0

    +

    HexFreezeColorG 0

    +

    HexFreezeColorB 255

    +


    +

    These values allows are the Hex Editor color scheme values (RGB).  The background color is 255,255,255 (white) by default.  The foreground color (text) is 0,0,0 (black) by default. When an address is frozen it is 0,0,255 (blue) by default.

    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create EPub books

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Debug.html b/web/help/Debug.html index 249818e2..9989d0de 100644 --- a/web/help/Debug.html +++ b/web/help/Debug.html @@ -1,107 +1,302 @@ - - + + + + + - Debug - - - - - - - - - - + + + + + + + + Debug + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Debug

    - -
    -
    - Previous - - Next - -
    -
    -
    -
    - -

    -

    Debug

    -


    -

    Guides for the specific tools and settings under FCEUX's Debug menu.

    -


    -

    Debugger

    -


    -

    A tool for looking at game instructions in assembly language. With experience,

    -

    one can use it to fix game patching errors, or find RAM and Game Genie codes.

    -


    -

    PPU Viewer

    -


    -

    A tool that displays the current PPU contents and related information. The PPU

    -

    viewer allows you to view the graphic squares that make up what's displayed.

    -


    -

    Name Table Viewer

    -


    -

    A tool for displaying the current Name Table contents. Helps to isolate PPU

    -

    and tile information, which allows the debugger to be used to check PPU coding.

    -


    -

    Hex Editor

    -


    -

    A tool for displaying a game's RAM contents and for memory poking. Also allows

    -

    for reading in the raw PPU data, copy/paste-ing RAM, and visually debugging RAM.

    -


    -

    Trace Logger

    -


    -

    Captures assembly code instructions and outputs them to a file or the window. Very

    -

    useful for analyzing code, finding crash addresses, fixing transferred routines, and

    -

    for comparing routine function between a game and a persistently buggy NSF.

    -


    -

    Code/Data Logger

    -


    -

    Allows you to extract the data used by a game. Make patch demos, find data

    -

    loaded by a game around a certain point, or just map out a single routine run.

    -


    -

    Game Genie Encoder/Decoder

    -


    -

    Allows you to add Game Genie codes to the Cheats menu, decode existing

    -

    ones to their component information, and (re)create a code with desired values.

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Produce Kindle eBooks easily

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Debug

    + +
    + +

    +

    Debug

    +


    +

    Guides for the specific tools and settings under FCEUX's Debug menu.

    +


    +

    Debugger

    +


    +

    A tool for looking at game instructions in assembly language. With experience,

    +

    one can use it to fix game patching errors, or find RAM and Game Genie codes.

    +


    +

    PPU Viewer

    +


    +

    A tool that displays the current PPU contents and related information. The PPU

    +

    viewer allows you to view the graphic squares that make up what's displayed.

    +


    +

    Name Table Viewer

    +


    +

    A tool for displaying the current Name Table contents. Helps to isolate PPU

    +

    and tile information, which allows the debugger to be used to check PPU coding.

    +


    +

    Hex Editor

    +


    +

    A tool for displaying a game's RAM contents and for memory poking. Also allows

    +

    for reading in the raw PPU data, copy/paste-ing RAM, and visually debugging RAM.

    +


    +

    Trace Logger

    +


    +

    Captures assembly code instructions and outputs them to a file or the window. Very

    +

    useful for analyzing code, finding crash addresses, fixing transferred routines, and

    +

    for comparing routine function between a game and a persistently buggy NSF.

    +


    +

    Code/Data Logger

    +


    +

    Allows you to extract the data used by a game. Make patch demos, find data

    +

    loaded by a game around a certain point, or just map out a single routine run.

    +


    +

    Game Genie Encoder/Decoder

    +


    +

    Allows you to add Game Genie codes to the Cheats menu, decode existing

    +

    ones to their component information, and (re)create a code with desired values.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Debugger.html b/web/help/Debugger.html index 95363187..00276440 100644 --- a/web/help/Debugger.html +++ b/web/help/Debugger.html @@ -1,304 +1,495 @@ - - + + + + + - Debugger - - - - - - - - - - + + + + + + + + Debugger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Debugger

    - -
    - Debug ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Debugger

    + +
    +

    -

    Debugger

    -


    -


    -

    Introduction

    -


    -

    The debugger is a tool for inspecting and manipulating machine instructions and their execution. The debugger window has several components:

    -
      -
    • Execution - a small set of controls for controlling the execution of code.
    • -
    • CPU State - display of registers, flags, the stack, cycles and instructions counters, and also the PPU state.
    • -
    • Memory disassembly - displays a disassembly of the bytes currently accessible by the CPU data bus.
    • -
    • Breakpoints - a list of breakpoints for debugging.
    • -
    • Bookmarks - a list of bookmarked addresses for quick navigation.
    • -
    • Other - buttons for controlling symbolic debugging, rom patching, etc.
    • +

      Debugger

      +


      +


      +

      Introduction

      +


      +

      The debugger is a tool for inspecting and manipulating machine instructions and their execution. The debugger window has several components:

      +
        +
      • Execution - a small set of controls for controlling the execution of code.
      • +
      • CPU State - display of registers, flags, the stack, cycles and instructions counters, and also the PPU state.
      • +
      • Memory disassembly - displays a disassembly of the bytes currently accessible by the CPU data bus.
      • +
      • Breakpoints - a list of breakpoints for debugging.
      • +
      • Bookmarks - a list of bookmarked addresses for quick navigation.
      • +
      • Other - buttons for controlling symbolic debugging, rom patching, etc.
      -


      -


      -

      Execution and CPU State

      -


      -

      Execution is controlled by the set of buttons at the top-middle of the window. These allow you to break (pause) execution and inspect the current state of the NES.

      -


      -

      When an NES ROM is opened, it will be normally be running right away (unless you manually pause the emulator before loading). Most of the debugger window does not update while the game is running. To begin debugging you may click one of the buttons that will break (pause) execution, such as "Step Into".

      -


      -
        -
      • Run - runs the program continuously until the next breakpoint is hit, or the emulator is paused manually. The same effect can be achieved by pressing the Pause hotkey which will unpause emulator when it's paused.
      • -
      • Step Into - runs one instruction and then breaks.
      • -
      • Step Out - attempt to run until the current subroutine ends with an RTS; in some cases will behave the same as Run.
      • -
      • Step Over - runs one instruction, unless it is a JSR instruction, which will run until its RTS.
      • -
      • Run Line - runs one scanline before breaking.
      • -
      • 128 Lines - runs 128 scanlines before breaking.
      • +


        +


        +

        Execution and CPU State

        +


        +

        Execution is controlled by the set of buttons at the top-middle of the window. These allow you to break (pause) execution and inspect the current state of the NES.

        +


        +

        When an NES ROM is opened, it will be normally be running right away (unless you manually pause the emulator before loading). Most of the debugger window does not update while the game is running. To begin debugging you may click one of the buttons that will break (pause) execution, such as "Step Into".

        +


        +
          +
        • Run - runs the program continuously until the next breakpoint is hit, or the emulator is paused manually. The same effect can be achieved by pressing the Pause hotkey which will unpause emulator when it's paused.
        • +
        • Step Into - runs one instruction and then breaks.
        • +
        • Step Out - attempt to run until the current subroutine ends with an RTS; in some cases will behave the same as Run.
        • +
        • Step Over - runs one instruction, unless it is a JSR instruction, which will run until its RTS.
        • +
        • Run Line - runs one scanline before breaking.
        • +
        • 128 Lines - runs 128 scanlines before breaking.
        -


        -

        The Pause hotkey will break execution or resume it. The Frame Advance hotkey will run the emulator for one frame and then break.

        -


        -

        When execution is paused, the disassembly view will begin with the memory near the current program counter location (PC). The ">" mark shows the line which will be executed next. You can scroll the disassembly up or down (using scrollbar or mouse wheel) to observe the code. Then you can click "Seek PC" to return to the program counter at any time.

        -


        -

        You can also use "Seek To" button that will navigate to the specified address. Either type a hexadecimal address to the text field or simply left-click on any address in the Disassembly window.

        -


        -
        - - - +


        +

        The Pause hotkey will break execution or resume it. The Frame Advance hotkey will run the emulator for one frame and then break.

        +


        +

        When execution is paused, the disassembly view will begin with the memory near the current program counter location (PC). The ">" mark shows the line which will be executed next. You can scroll the disassembly up or down (using scrollbar or mouse wheel) to observe the code. Then you can click "Seek PC" to return to the program counter at any time.

        +


        +

        You can also use "Seek To" button that will navigate to the specified address. Either type a hexadecimal address to the text field or simply left-click on any address in the Disassembly window.

        +


        +
        +

        HINT: When entering the address manually, these convenient strings may be used instead of the hexadecimal memory address:

        -

        NES special addresses:

        -
          -
        • NMI/VBL - non-maskable interrupt vector (at FFFA)
        • -
        • RST     - reset vector (at FFFC)
        • -
        • IRQ     - interrupt vector (at FFFE)
        • -
        -

        FDS special addresses:

        -
          -
        • NMI1 - non-maskable interrupt vector (at DFF6)
        • -
        • NMI2 - non-maskable interrupt vector (at DFF8)
        • -
        • NMI3 - non-maskable interrupt vector (at DFFA)
        • -
        • RST  - reset vector (at DFFC)
        • -
        • IRQ  - interrupt vector (at DFFE)
        • -
        -

        NSF special addresses:

        -
          -
        • LOAD - NSF LOAD address
        • -
        • INIT - NSF INIT address
        • -
        • PLAY - NSF PLAY address
        • -
        -
        + + +
        +

        HINT: When entering the address manually, these convenient strings may be used instead of the hexadecimal memory address:

        +

        NES special addresses:

        +
          +
        • NMI/VBL - non-maskable interrupt vector (at FFFA)
        • +
        • RST     - reset vector (at FFFC)
        • +
        • IRQ     - interrupt vector (at FFFE)
        • +
        +

        FDS special addresses:

        +
          +
        • NMI1 - non-maskable interrupt vector (at DFF6)
        • +
        • NMI2 - non-maskable interrupt vector (at DFF8)
        • +
        • NMI3 - non-maskable interrupt vector (at DFFA)
        • +
        • RST  - reset vector (at DFFC)
        • +
        • IRQ  - interrupt vector (at DFFE)
        • +
        +

        NSF special addresses:

        +
          +
        • LOAD - NSF LOAD address
        • +
        • INIT - NSF INIT address
        • +
        • PLAY - NSF PLAY address
        • +
        +
        -


        -

        While execution is broken (emulation is paused), the program counter (PC) can be edited, as well as the three registers A/X/Y, and the status flags. Normally they should be left as-is, but changing them at runtime can be useful for more advanced debugging.

        -


        -

        The contents of memory starting at the stack pointer (somewhere in the range $0100-01FF) is displayed in the Stack frame below the A/X/Y registers.

        -


        -

        The current PPU memory address, sprite memory address, scanline, and rendering pixel are displayed below the stack and status flags. Examples of Scanline number: -1 means Prerender time, 240 is Idle scanline, 0-239 are visible scanlines, 241-260/310 are VBlank scanlines.

        -


        -

        To the right from the PPU section there's Cycles counter and Instructions counter that keep counting while the game is running. You can use the information for keeping statistics, for code profiling or writing PPU-synchronized code (e.g. raster effects). You can also make the debugger break automatically based on the counters values. The "Reset counters" button resets both counters to 0. You can also access the counters via Lua.

        -


        -


        -

        Disassembly

        -


        -

        This large frame takes up the left side of the debugger window. It displays the current contents of memory accessible by the CPU with an automatic disassembly of that data into assembly instructions. The following memory ranges may contain useful data for inspection:

        -
          -
        • 0000-00FF - zero page (RAM)
        • -
        • 0100-01FF - stack (RAM)
        • -
        • 0200-07FF - RAM
        • -
        • 4018-FFFF - mapper controlled (ROM or RAM, may be bankswitched)
        • +


          +

          While execution is broken (emulation is paused), the program counter (PC) can be edited, as well as the three registers A/X/Y, and the status flags. Normally they should be left as-is, but changing them at runtime can be useful for more advanced debugging.

          +


          +

          The contents of memory starting at the stack pointer (somewhere in the range $0100-01FF) is displayed in the Stack frame below the A/X/Y registers.

          +


          +

          The current PPU memory address, sprite memory address, scanline, and rendering pixel are displayed below the stack and status flags. Examples of Scanline number: -1 means Prerender time, 240 is Idle scanline, 0-239 are visible scanlines, 241-260/310 are VBlank scanlines.

          +


          +

          To the right from the PPU section there's Cycles counter and Instructions counter that keep counting while the game is running. You can use the information for keeping statistics, for code profiling or writing PPU-synchronized code (e.g. raster effects). You can also make the debugger break automatically based on the counters values. The "Reset counters" button resets both counters to 0. You can also access the counters via Lua.

          +


          +


          +

          Disassembly

          +


          +

          This large frame takes up the left side of the debugger window. It displays the current contents of memory accessible by the CPU with an automatic disassembly of that data into assembly instructions. The following memory ranges may contain useful data for inspection:

          +
            +
          • 0000-00FF - zero page (RAM)
          • +
          • 0100-01FF - stack (RAM)
          • +
          • 0200-07FF - RAM
          • +
          • 4018-FFFF - mapper controlled (ROM or RAM, may be bankswitched)
          -


          -

          Memory contents are displayed in this form:

          -


          -

          0F:C0A8:24 1F     BIT $001F = #$80

          -

          bb:mmmm:dd dd dd  iiiiiiiiiiiii...

          -


          -
            -
          • bb - 16k iNES bank, designates which 16k bank from the iNES file is mapped here. Note that the number may be not the same as the actual hardware bank of the mapper.
          • -
          • mmmm - physical address on the NES CPU data bus.
          • -
          • dd - data bytes belonging to the instruction beginning at this address.
          • -
          • iiii - assembly description of the instruction, possibly with symbolic decoration.
          • +


            +

            Memory contents are displayed in this form:

            +


            +

            0F:C0A8:24 1F     BIT $001F = #$80

            +

            bb:mmmm:dd dd dd  iiiiiiiiiiiii...

            +


            +
              +
            • bb - 16k iNES bank, designates which 16k bank from the iNES file is mapped here. Note that the number may be not the same as the actual hardware bank of the mapper.
            • +
            • mmmm - physical address on the NES CPU data bus.
            • +
            • dd - data bytes belonging to the instruction beginning at this address.
            • +
            • iiii - assembly description of the instruction, possibly with symbolic decoration.
            -


            -

            When debugging an NSF program, the bank designation will be a 4k NSF bank instead of the 16k iNES bank.

            -


            -

            A single instruction may be one to three bytes, and will all appear on the line before the assembly code description of that instruction. An instruction with "= #$xx" at the end conveniently indicates the value currently in memory at the address referenced by the instruction.

            -


            -

            Hovering the mouse over the disassembly will display at the bottom of the window more detailed information about the location of this code in the iNES file.

            -


            -

            There is narrow column to the left of the Disassembly window. Left clicking on this column will open the Inline Assembler, which allows you to patch the ROM at runtime. Right clicking on this column will open the Hex Editor, which allows you to directly edit the ROM. Middle-clicking on this column will bring up the Game Genie Encoder at that address, so you can easily make Game Genie codes.

            -

            Also, when Code/Data Logger is running, this small column displays whether the respective line of the disassembled memory was executed ("c") or it was read as Data ("d"), or it wasn't logged yet (empty space). This way you can easily distinguish which branches of the game code were executed and which weren't.

            -


            -


            -

            Symbolic Debugging

            -


            -

            FCEUX allows you to label any address of RAM or ROM with a human-readable symbolic name.

            -

            For example, when you've figured out that at the address $C022 there's a subroutine which refills player HP, you can right-click the address and type a name like "AddHealthpoints". You can also add a comment, which will be seen while browsing the code near this address. From now on, the address will be substituted by the name everywhere - in all instructions referencing this address, in Hex Editor window, in the log produced by Trace Logger. E.g., JSR $C022 will look like JSR AddHealthpoints.

            -


            -

            When entering the name, you can use any symbols except #. It's also recommended to avoid whitespaces in names.

            -

            To rename an address, just right-click the name.

            -


            -

            The data for Symbolic Debugging is stored in NL files in the same folder as the ROM. You can edit the files in any text editor (to reload all NL files of the currently active ROM file press the "Reload Symbols" button), but it's more convenient to use right-clicks.

            -


            -

            You can enable and disable symbolic debugging by clicking the checkbox "Symbolic debug" in the lower right corner. In general, there's no need to disable this feature. If you need to see the actual address which got substituted by a name, you can simply left-click the name and watch its address in the "Seek To" text field. This also works when clicking a name in the Trace Logger window.

            -


            -


            -

            Breakpoints

            -


            -

            Breakpoints will automatically break execution when chosen conditions are met. To create a breakpoint, click the Add button in the Breakpoints frame in the upper right corner of the debugger.

            -


            -

            Each breakpoint has an address range to watch. Use only the left address field if you wish to watch a single byte address. When entering the address of a breakpoint, you can also use the aforementioned convenient strings (such as IRQ) instead of hexadecimal memory addresses.

            -


            -

            Check one or more of the options to watch for Read, Write, or Execute at the given address. Note that fetching of code from an address will not break as a Read; so use the Execute box for this case. Breakpoints can be given a name that will appear in the breakpoints list. The condition field can be used to break only on particular conditions; see "Conditional Breakpoints" below.

            -


            -

            Double click on a breakpoint in the Breakpoints list to quickly disable or enable this breakpoint. So you don't have to delete breakpoints to stop them from causing the debugger to halt the game.

            -


            -

            A special kind of breakpoints with the "Forbid" option will prevent any breakpoints from occurring within the specified memory address range. This can be enabled and disabled like other breakpoints.

            -


            -

            A quicker way to add PC breakpoints is to double click on any address in the Disassembly when you want to set the breakpoint to that address. Example: when you need to quickly advance emulation to a given line of code, double-click on the address part of the line, and the "Add Execute breakpoint here" dialog will appear, just click "OK" and then hit "Run", Debugger will break at this line of code.

            -


            -

            There is also an option to Break on Bad Opcodes, which will halt execution if a bad instruction opcode is reached.

            -


            -

            Finally, you can make the debugger break after executing a certain number of instructions or CPU cycles.

            -


            -

            More advanced breakpoints conditions and full automation may be achieved through Lua script breakpoints. See the Lua reference for more information.

            -


            -

            Breakpoints are listed in the following form:

            -


            -

            aaaa EmRWXF nnnn cccc

            -

            or

            -

            aaaa-aaaa EmRWXF nnnn cccc

            -


            -
              -
            • aaaa - address of breakpoint
            • -
            • E    - enabled
            • -
            • m    - memory area: C = CPU, P = PPU, S = sprite
            • -
            • R    - read
            • -
            • W    - write
            • -
            • X    - execute
            • -
            • F    - Forbid
            • -
            • nnnn - (optional) name of breakpoint
            • -
            • nnnn - (optional) condition of breakpoint
            • +


              +

              When debugging an NSF program, the bank designation will be a 4k NSF bank instead of the 16k iNES bank.

              +


              +

              A single instruction may be one to three bytes, and will all appear on the line before the assembly code description of that instruction. An instruction with "= #$xx" at the end conveniently indicates the value currently in memory at the address referenced by the instruction.

              +


              +

              Hovering the mouse over the disassembly will display at the bottom of the window more detailed information about the location of this code in the iNES file.

              +


              +

              There is narrow column to the left of the Disassembly window. Left clicking on this column will open the Inline Assembler, which allows you to patch the ROM at runtime. Right clicking on this column will open the Hex Editor, which allows you to directly edit the ROM. Middle-clicking on this column will bring up the Game Genie Encoder at that address, so you can easily make Game Genie codes.

              +

              Also, when Code/Data Logger is running, this small column displays whether the respective line of the disassembled memory was executed ("c") or it was read as Data ("d"), or it wasn't logged yet (empty space). This way you can easily distinguish which branches of the game code were executed and which weren't.

              +


              +


              +

              Symbolic Debugging

              +


              +

              FCEUX allows you to label any address of RAM or ROM with a human-readable symbolic name.

              +

              For example, when you've figured out that at the address $C022 there's a subroutine which refills player HP, you can right-click the address and type a name like "AddHealthpoints". You can also add a comment, which will be seen while browsing the code near this address. From now on, the address will be substituted by the name everywhere - in all instructions referencing this address, in Hex Editor window, in the log produced by Trace Logger. E.g., JSR $C022 will look like JSR AddHealthpoints.

              +


              +

              When entering the name, you can use any symbols except #. It's also recommended to avoid whitespaces in names.

              +

              To rename an address, just right-click the name.

              +


              +

              The data for Symbolic Debugging is stored in NL files in the same folder as the ROM. You can edit the files in any text editor (to reload all NL files of the currently active ROM file press the "Reload Symbols" button), but it's more convenient to use right-clicks.

              +


              +

              You can enable and disable symbolic debugging by clicking the checkbox "Symbolic debug" in the lower right corner. In general, there's no need to disable this feature. If you need to see the actual address which got substituted by a name, you can simply left-click the name and watch its address in the "Seek To" text field. This also works when clicking a name in the Trace Logger window.

              +


              +


              +

              Breakpoints

              +


              +

              Breakpoints will automatically break execution when chosen conditions are met. To create a breakpoint, click the Add button in the Breakpoints frame in the upper right corner of the debugger.

              +


              +

              Each breakpoint has an address range to watch. Use only the left address field if you wish to watch a single byte address. When entering the address of a breakpoint, you can also use the aforementioned convenient strings (such as IRQ) instead of hexadecimal memory addresses.

              +


              +

              Check one or more of the options to watch for Read, Write, or Execute at the given address. Note that fetching of code from an address will not break as a Read; so use the Execute box for this case. Breakpoints can be given a name that will appear in the breakpoints list. The condition field can be used to break only on particular conditions; see "Conditional Breakpoints" below.

              +


              +

              Double click on a breakpoint in the Breakpoints list to quickly disable or enable this breakpoint. So you don't have to delete breakpoints to stop them from causing the debugger to halt the game.

              +


              +

              A special kind of breakpoints with the "Forbid" option will prevent any breakpoints from occurring within the specified memory address range. This can be enabled and disabled like other breakpoints.

              +


              +

              A quicker way to add PC breakpoints is to double click on any address in the Disassembly when you want to set the breakpoint to that address. Example: when you need to quickly advance emulation to a given line of code, double-click on the address part of the line, and the "Add Execute breakpoint here" dialog will appear, just click "OK" and then hit "Run", Debugger will break at this line of code.

              +


              +

              There is also an option to Break on Bad Opcodes, which will halt execution if a bad instruction opcode is reached.

              +


              +

              Finally, you can make the debugger break after executing a certain number of instructions or CPU cycles.

              +


              +

              More advanced breakpoints conditions and full automation may be achieved through Lua script breakpoints. See the Lua reference for more information.

              +


              +

              Breakpoints are listed in the following form:

              +


              +

              aaaa EmRWXF nnnn cccc

              +

              or

              +

              aaaa-aaaa EmRWXF nnnn cccc

              +


              +
                +
              • aaaa - address of breakpoint
              • +
              • E    - enabled
              • +
              • m    - memory area: C = CPU, P = PPU, S = sprite
              • +
              • R    - read
              • +
              • W    - write
              • +
              • X    - execute
              • +
              • F    - Forbid
              • +
              • nnnn - (optional) name of breakpoint
              • +
              • nnnn - (optional) condition of breakpoint
              -


              -


              -

              Conditional Breakpoints

              -


              -

              Breakpoints may also have a conditional statement that causes them to execute only if that statement evaluates to true. The conditional breakpoint grammar has this form:

              -


              -
                -
              • Connect   -> Compare { ('||' | '&&') Compare }
              • -
              • Compare   -> Sum { ('==' | '!=' | '<=' | '>=' | '<' | '>') Sum }
              • -
              • Sum       -> Product { ('+' | '-') Product }
              • -
              • Product   -> Primitive { ('*' | '/') Primitive }
              • -
              • Primitive -> Number | Address | Register | Flag | PC Bank | Data Bank | '(' Connect ')'
              • -
              • Number    -> '#' [0123456789ABCDEF]*
              • -
              • Address   -> '$' [0123456789ABCDEF]* | '$' '[' Connect ']'
              • -
              • Register  -> 'A' | 'X' | 'Y' | 'P'
              • -
              • Flag      -> 'N' | 'C' | 'Z' | 'I' | 'B' | 'V' | 'D' | 'U'
              • -
              • PC Bank   -> 'K'
              • -
              • Data Bank   -> 'T'
              • -
              • Read/Write Value   -> 'R' | 'W'
              • +


                +


                +

                Conditional Breakpoints

                +


                +

                Breakpoints may also have a conditional statement that causes them to execute only if that statement evaluates to true. The conditional breakpoint grammar has this form:

                +


                +
                  +
                • Connect   -> Compare { ('||' | '&&') Compare }
                • +
                • Compare   -> Sum { ('==' | '!=' | '<=' | '>=' | '<' | '>') Sum }
                • +
                • Sum       -> Product { ('+' | '-') Product }
                • +
                • Product   -> Primitive { ('*' | '/') Primitive }
                • +
                • Primitive -> Number | Address | Register | Flag | PC Bank | Data Bank | '(' Connect ')'
                • +
                • Number    -> '#' [0123456789ABCDEF]*
                • +
                • Address   -> '$' [0123456789ABCDEF]* | '$' '[' Connect ']'
                • +
                • Register  -> 'A' | 'X' | 'Y' | 'P'
                • +
                • Flag      -> 'N' | 'C' | 'Z' | 'I' | 'B' | 'V'
                • +
                • PC Bank   -> 'K'
                • +
                • Data Bank   -> 'T'
                -


                -

                The parser is very strict. All numbers are hexadecimal. Always prefix a number with # for an immediate value, or $ for a memory address. If a memory address needs to be calculated use $[] with the calculation inside the brackets.

                -


                -

                Registers A/X/Y are 8-bit unsigned values. Register P is the 16-bit program counter.

                -

                Flags evaluate to 1 if set, 0 if clear. (U is the unused bit of the status register, and D is the unused decimal flag.)

                -

                For instructions that read or write a single byte (e.g. LDA, STY, PHA, ASL abs), condition R evaluates to the value that will be read by the instruction, and condition W evaluates to the value that will be written.

                -


                -

                Connecting operators || or && combine boolean terms. Parentheses dictate order of operations.

                -


                -

                Example conditions:

                -


                -

                Break only if register A is less than value at memory address $0005:

                -

                A < $0005

                -


                -

                Break only if the value at the indirect address is not equal to FF:

                -

                #FF != $[$10+($11*#100)]

                -


                -

                Break only if flag N is clear or A is not equal to 00:

                -

                (N==#0 || A!=#0)

                -


                -

                Break only when accessing a data from bank 2 (the condiition is relevant when using with Read/Write-type breakpoints):

                -

                T==#2

                -


                -


                -

                Bookmarks

                -


                -

                A list of bookmarked addresses can be kept in the Address Bookmarks frame to make memory navigation easier. Simply type a hexadecimal address (or a convenient string, such as "NMI") and click "Add" to add it to your bookmarks. Alternatively, just left-click any address in the Disassembly window, and the address will appear in the Bookmark Add field, so you don't have to type it.

                -

                Next time you wish to go to this address just double click on the bookmark.

                -

                You can also name bookmarks.

                -

                When you exit the emulator, bookmarks are saved in a .deb file named after the ROM of the debugged game. Next time you return to debugging the game, the list of bookmarks will be automatically loaded from the file.

                -


                -


                -

                Inline Assembler

                -


                -

                Open the inline assembler by left-clicking in the empty column to the left of the memory view.

                -


                -

                The starting memory address is displayed in the PC field at the top of the inline assembler window. Type a line of assembly to add in the empty field just below this, and hit enter. The assembled code of your patch will appear below as you enter each line.

                -


                -

                Click Apply to apply your patch to the ROM in memory. Click Undo to remove the last assembled line. After applying a patch, clicking Save will allow you to save this patch directly to the ROM file.

                -


                -


                -

                Other

                -


                -

                If the ".DEB files" checkbox in the lower right corner of the debugger window is checked, the emulator will automatically save debug settings such as breakpoints and bookmarks in a .deb file alongside the NES ROM, and load these settings next time you open the ROM.

                -


                -

                There is a "Rom Patcher" button that may be used to apply a small patch to a ROM, although Hex Editor is more convenient in general.

                -


                -

                The "ROM offsets" option will display ROM offsets instead of CPU addresses in the Disassembly window.

                -


                -

                The "Restore Original Window Size" button will restore the original size of the debugger window if you resized it manually.

                -


                -

                The "Auto-open" checkbox causes the debugger window to open automatically whenever an NES ROM is opened.

                -


                -


                -


                -


                -


                +


                +

                The parser is very strict. All numbers are hexadecimal. Always prefix a number with # for an immediate value, or $ for a memory address. If a memory address needs to be calculated use $[] with the calculation inside the brackets.

                +


                +

                Registers A/X/Y are 8-bit unsigned values. Register P is the 16-bit program counter.

                +

                Flags evaluate to 1 if set, 0 if clear.

                +


                +

                Connecting operators || or && combine boolean terms. Parentheses dictate order of operations.

                +


                +

                Example conditions:

                +


                +

                Break only if register A is less than value at memory address $0005:

                +

                A < $0005

                +


                +

                Break only if the value at the indirect address is not equal to FF:

                +

                #FF != $[$10+($11*#100)]

                +


                +

                Break only if flag N is clear or A is not equal to 00:

                +

                (N==#0 || A!=#0)

                +


                +

                Break only when accessing a data from bank 2 (the condiition is relevant when using with Read/Write-type breakpoints):

                +

                T==#2

                +


                +


                +

                Bookmarks

                +


                +

                A list of bookmarked addresses can be kept in the Address Bookmarks frame to make memory navigation easier. Simply type a hexadecimal address (or a convenient string, such as "NMI") and click "Add" to add it to your bookmarks. Alternatively, just left-click any address in the Disassembly window, and the address will appear in the Bookmark Add field, so you don't have to type it.

                +

                Next time you wish to go to this address just double click on the bookmark.

                +

                You can also name bookmarks.

                +

                When you exit the emulator, bookmarks are saved in a .deb file named after the ROM of the debugged game. Next time you return to debugging the game, the list of bookmarks will be automatically loaded from the file.

                +


                +


                +

                Inline Assembler

                +


                +

                Open the inline assembler by left-clicking in the empty column to the left of the memory view.

                +


                +

                The starting memory address is displayed in the PC field at the top of the inline assembler window. Type a line of assembly to add in the empty field just below this, and hit enter. The assembled code of your patch will appear below as you enter each line.

                +


                +

                Click Apply to apply your patch to the ROM in memory. Click Undo to remove the last assembled line. After applying a patch, clicking Save will allow you to save this patch directly to the ROM file.

                +


                +


                +

                Other

                +


                +

                If the ".DEB files" checkbox in the lower right corner of the debugger window is checked, the emulator will automatically save debug settings such as breakpoints and bookmarks in a .deb file alongside the NES ROM, and load these settings next time you open the ROM.

                +


                +

                There is a "Rom Patcher" button that may be used to apply a small patch to a ROM, although Hex Editor is more convenient in general.

                +


                +

                The "ROM offsets" option will display ROM offsets instead of CPU addresses in the Disassembly window.

                +


                +

                The "Restore Original Window Size" button will restore the original size of the debugger window if you resized it manually.

                +


                +

                The "Auto-open" checkbox causes the debugger window to open automatically whenever an NES ROM is opened.

                +


                +


                +


                +


                +


                -

                Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

                -
    - - + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + - -
    - - diff --git a/web/help/Directories.html b/web/help/Directories.html index fad7c6cf..13e23c09 100644 --- a/web/help/Directories.html +++ b/web/help/Directories.html @@ -1,126 +1,317 @@ - - + + + + + - Directories - - - - - - - - - - + + + + + + + + Directories + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Directories

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Directory Overrides

    -


    -


    -

    This menu sets a default directory override for various files relating to FCEU.

    -


    -

    Base Directory

    -

    sets the default directory FCEU will use.  It will be the folder that FCEU creates all the sub folders (unless they are also overridden).

    -


    -


    -

    ROMS

    -

    where FCEU will look for ROMS by default.  (What folder will appear when selecting the Files > Open...)

    -


    -


    -

    Battery Saves

    -

    where .sav files will stored and opened from.  These files contain the battery backed SRAM used in some games (such as Dragon Warrior).

    -


    -


    -

    Save States

    -

    where .fcs (savestate) files will be stored.

    -


    -


    -

    FDS BIOS ROM

    -

    where FCEU can find disksys.rom.  disksys.rom is a required file in order to load FDS (Famicom Disk System) games.  If not specified, FCEUX will default to the base directory.

    -


    -


    -

    Screenshots

    -

    where screen captures (.png) files will be saved.

    -


    -


    -

    Save Screenshots as "<filebase>-<x>.png"

    -

    sets how the .png files will be named.  Left unchecked, the file names will simply be 0.png, 1.png etc.  Checked adds the ROM name into the file as well (such as Double Dragon 2 (U)-0.png)

    -


    -


    -

    Cheats

    -

    where .cht files will be stored.  .cht files store the active cheats set up in Cheat Search.

    -


    -


    -

    Movies

    -

    where  .fm2 files will be saved/loaded.  These files are the input files used in movie recording.

    -


    -


    -

    Memory Watch

    -

    where memory watch files are saved/loaded.  These are used by memory watch.

    -


    -


    -

    Input Presets

    -

    where input presets will be saved/loaded.  These are used in the presets section on the input config window.

    -


    -


    -

    Lua Scripts

    -

    where Lua scripts will be saved/loaded.  These are used when using the Lua Scripting tool.

    -


    -


    -

    AVI Output

    -

    overrides which directory FCEUX will default to when saving a .avi file.

    -

    -

    Created with the Personal Edition of HelpNDoc: Free EPub producer

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Directories

    + +
    + +

    +

    Directory Overrides

    +


    +


    +

    This menu sets a default directory override for various files relating to FCEU.

    +


    +

    Base Directory

    +

    sets the default directory FCEU will use.  It will be the folder that FCEU creates all the sub folders (unless they are also overridden).

    +


    +


    +

    ROMS

    +

    where FCEU will look for ROMS by default.  (What folder will appear when selecting the Files > Open...)

    +


    +


    +

    Battery Saves

    +

    where .sav files will stored and opened from.  These files contain the battery backed SRAM used in some games (such as Dragon Warrior).

    +


    +


    +

    Save States

    +

    where .fcs (savestate) files will be stored. 

    +


    +


    +

    FDS BIOS ROM

    +

    where FCEU can find disksys.rom.  disksys.rom is a required file in order to load FDS (Famicom Disk System) games.  If not specified, FCEUX will default to the base directory.

    +


    +


    +

    Screenshots

    +

    where screen captures (.png) files will be saved.

    +


    +


    +

    Save Screenshots as "<filebase>-<x>.png"

    +

    sets how the .png files will be named.  Left unchecked, the file names will simply be 0.png, 1.png etc.  Checked adds the ROM name into the file as well (such as Double Dragon 2 (U)-0.png)

    +


    +


    +

    Cheats

    +

    where .cht files will be stored.  .cht files store the active cheats set up in Cheat Search.

    +


    +


    +

    Movies

    +

    where  .fm2 files will be saved/loaded.  These files are the input files used in movie recording.

    +


    +


    +

    Memory Watch

    +

    where memory watch files are saved/loaded.  These are used by memory watch.

    +


    +


    +

    Input Presets

    +

    where input presets will be saved/loaded.  These are used in the presets section on the input config window.

    +


    +


    +

    Lua Scripts

    +

    where Lua scripts will be saved/loaded.  These are used when using the Lua Scripting tool.

    +


    +


    +

    AVI Output

    +

    overrides which directory FCEUX will default to when saving a .avi file.

    +

    +

    Created with the Personal Edition of HelpNDoc: Produce electronic books easily

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/FAQGuides.html b/web/help/FAQGuides.html index fee96374..124e24c3 100644 --- a/web/help/FAQGuides.html +++ b/web/help/FAQGuides.html @@ -1,92 +1,287 @@ - - + + + + + - FAQ / Guides - - - - - - - - - - + + + + + + + + FAQ / Guides + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    FAQ / Guides

    - -
    -
    - Previous - - Next - -
    -
    -
    -
    - -

    -

    FAQ / Guides

    -


    -

    Information regarding various concepts such as TAS, ROM Hacking, RAM Mapping.

    -


    -

    Troubleshooting FAQ

    -


    -

    A guide to common problems people experience, and what to do about them.

    -


    -


    -

    Tool Assisted Speedruns (TAS)

    -


    -

    Information regarding Tool Assisted Speedruns and the TAS community.

    -


    -


    -

    ROM Hacking

    -


    -

    Information regarding making ROM Hacks and the ROM Hacking community.

    -


    -


    -

    NES RAM Mapping

    -


    -

    A guide to the layout of NES RAM, and how to interpret its contents.

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free HTML Help documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    FAQ / Guides

    + +
    + +

    +

    FAQ / Guides

    +


    +

    Information regarding various concepts such as TAS, ROM Hacking, RAM Mapping.

    +


    +

    Troubleshooting FAQ

    +


    +

    A guide to common problems people experience, and what to do about them.

    +


    +


    +

    Tool Assisted Speedruns (TAS)

    +


    +

    Information regarding Tool Assisted Speedruns and the TAS community.

    +


    +


    +

    ROM Hacking

    +


    +

    Information regarding making ROM Hacks and the ROM Hacking community.

    +


    +


    +

    NES RAM Mapping

    +


    +

    A guide to the layout of NES RAM, and how to interpret its contents.

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Produce online help for Qt applications

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/FCEUltraVersionHistory.html b/web/help/FCEUltraVersionHistory.html index 6b31de52..0a91b618 100644 --- a/web/help/FCEUltraVersionHistory.html +++ b/web/help/FCEUltraVersionHistory.html @@ -1,149 +1,340 @@ - - + + + + + - FCE Ultra Version History - - - - - - - - - - + + + + + + + + FCE Ultra Version History + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    FCE Ultra Version History

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    History of FCEUX / FCE Ultra

    -


    -

    FCEUX was started in 2006 by zeromus and rheiny (sp) as an attempt to merge various branches of FCE Ultra into a unified emulator.  Additional authors joined the project, including mz, adelikat, nitsujrehtona, maximus, CaH4e3, qFox, punkrockguy318, Sebastian Porst, AnS, feos, and rainwarrior.

    -


    -

    FCEUX contains all features and enhancements from FCE, FCE Ultra, FCEU rerecording, FCEUXD, and FCEUXDSP as well as many new mappers from FCEU-mm.

    -


    -

    FCEUX sourceforge page

    -


    -


    -

    Version Releases

    -


    -

    Look at the Side Bar navigation for changelog information on FCEUX 2.1 and newer.

    -


    -

    FCEUX 2.0.3 - Released November 02, 2008 (see changelog)

    -


    -

    FCEUX 2.0.2 - Released August 14, 2008 (see changelog)

    -


    -

    FCEUX 2.0.1 - Released August 04, 2008 (see changelog)

    -


    -

    FCEUX 2.0.0 - Released August 02, 2008 (see changelog)

    -


    -

    FCE / FCEUltra

    -


    -

    Bero originally wrote a Nintendo Entertainment System/Famicom emulator that was referred to as FCE. This name was apparently meant only to serve as a temporary name, but its usage remained. Xodnizel originally ported it to Linux SVGAlib, and made a few improvements. This code base was abandoned, and work began anew, under DOS, with the original FCE source code. At the end of November, 1998, FCE Ultra Beta 1 was released.

    -


    -

    FCE Ultra remained DOS-only until version 0.18, when it was ported to Linux SVGAlib, and released as a statically-linked executable. The first MS Windows port was released as version 0.25.

    -


    -

    The source code of 0.40 was released on November 12, 2000. It retained the simple license of FCE for a long time, which stated that "This software is freeware. You can use it non-commercially." Almost two years later, in June 2002, 0.80 was released, and FCE Ultra was re-licensed under the GNU GPL.

    -


    -

    It has been tested (and runs) under DOS, Linux SVGAlib, Linux X, Mac OS X, and Windows. A native GUI is provided for the Windows port, and the other ports use a command-line interface. The SDL port should run on any modern UNIX-like operating system (such as FreeBSD, Solaris or IRIX) with no code changes. It has also been ported to the GP2X, PlayStation Portable as PSPFceUltra, the Nintendo GameCube and Pepper Pad.

    -


    -

    FCE Ultra was created by Xodnizel. Development appeared to stop and the homepage and forums for the emulator were taken down. The last version before this was v0.98.13-pre, released in September 2004 as source-only. The last binary release was v0.98.12 in August 2004.

    -


    -

    However, it was resurrected again in March of 2006 by Anthony Giorgio and Mark Doliner.

    -


    -

    There is also a graphical frontend for FCE Ultra. GFCE Ultra is written in Python and uses the GTK2 user interface library. Because is it written in Python and with portability in mind, it can be run on any UNIX-like platform and any processor architecture that is supported by Python.

    -


    -


    -

    FCEU Rerecording

    -


    -

    The "rerecording" version of FCE Ultra was implemented to FCE Ultra 0.98.10 with movie recording support.  This was done by blip, and was implemented for the purpose of creating Tool-Assisted Speedruns.

    -


    -

    The rerecording branch continued with 0.98.12, adding movie support features, such as "bullet proof" recording.  In 2006, FCEU 0.98.16 was implemented by nitsuja and luke.  Various tools such as read-only toggling, increased hotkey mapping, and memory watch were added.

    -


    -

    In 2008, FCEU rerecording was picked up again by mz, maximus, adelikat, and nitsujrehtona with various updates named FCEU.0.98.17 - 0.98.28

    -


    -

    FCEU.28 GoogleCode Page

    -


    -


    -

    FCEUD / FCEUXD / FCEUXDSP / FCEUXDSP CE

    -


    -

    FCEUD

    -

    In 2002, Parasyte modified the then-current version (0.81.3) of FCE Ultra and added a Nesten-style debugger, along with several other features, and named it "FCEUD" (FCE Ultra Debugger).

    -


    -

    FCEUXD

    -

    In January 2004, bbitmaster began working on more features and called it "FCEUXD" (FCE Ultra Extended Debugger).

    -

    It is a branch of FCE Ultra that contains many extended debugging features compared to the original FCE Ultra code such as a trace logger, a built-in hex editor, a name table viewer, code/data logger, inline assembler, and Game Genie decoder/encoder in addition to the debugger and PPU viewer from FCEUD.  The last version made was FCEUXD 1.0a.

    -


    -

    FCEUXDSP

    -

    FCEUXDSP stands for FCEUXD "SP" version and is a branch of FCEUXD 1.0a.

    -

    It was created in 2006 by sp.  The project extends the debugging tools even further compared to FCEUXD by adding new tools, functions, and usability of debugging tools.  

    -


    -

    The last version of FCEUXDSP was 1.07 which adds a feature known as the RAM Filter. This has since been removed, due to functional redundancy.

    -


    -

    FCEUXDSP homepage

    -


    -

    FCEUXDSP CE

    -

    CE stands for "Champion Edition" and is a branch of XDSP that adds a text hooker tool.

    -


    -

    FCEUXDSP CE homepage

    -


    -

    FCEU-mm

    -


    -

    FCEU "mappers modified" is an unofficial build of FCEU Ultra by CaH4e3, which supports a lot of new mappers including some obscure mappers such as one for unlicensed NES ROM's.

    -


    -

    FCEUX supports mappers from older versions of FCEU-mm.

    -


    -

    FCEU-mm SourceForge page

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create CHM Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    FCE Ultra Version History

    + +
    + +

    +

    History of FCEUX / FCE Ultra

    +


    +

    FCEUX was started in 2006 by zeromus and rheiny (sp) as an attempt to merge various branches of FCE Ultra into a unified emulator.  Additional authors joined the project, including mz, adelikat, nitsujrehtona, maximus, CaH4e3, qFox, punkrockguy318, Sebastian Porst, AnS, feos, and rainwarrior.

    +


    +

    FCEUX contains all features and enhancements from FCE, FCE Ultra, FCEU rerecording, FCEUXD, and FCEUXDSP as well as many new mappers from FCEU-mm.

    +


    +

    FCEUX sourceforge page

    +


    +


    +

    Version Releases

    +


    +

    Look at the Side Bar navigation for changelog information on FCEUX 2.1 and newer.

    +


    +

    FCEUX 2.0.3 - Released November 02, 2008 (see changelog)

    +


    +

    FCEUX 2.0.2 - Released August 14, 2008 (see changelog)

    +


    +

    FCEUX 2.0.1 - Released August 04, 2008 (see changelog)

    +


    +

    FCEUX 2.0.0 - Released August 02, 2008 (see changelog)

    +


    +

    FCE / FCEUltra

    +


    +

    Bero originally wrote a Nintendo Entertainment System/Famicom emulator that was referred to as FCE. This name was apparently meant only to serve as a temporary name, but its usage remained. Xodnizel originally ported it to Linux SVGAlib, and made a few improvements. This code base was abandoned, and work began anew, under DOS, with the original FCE source code. At the end of November, 1998, FCE Ultra Beta 1 was released.

    +


    +

    FCE Ultra remained DOS-only until version 0.18, when it was ported to Linux SVGAlib, and released as a statically-linked executable. The first MS Windows port was released as version 0.25.

    +


    +

    The source code of 0.40 was released on November 12, 2000. It retained the simple license of FCE for a long time, which stated that "This software is freeware. You can use it non-commercially." Almost two years later, in June 2002, 0.80 was released, and FCE Ultra was re-licensed under the GNU GPL. 

    +


    +

    It has been tested (and runs) under DOS, Linux SVGAlib, Linux X, Mac OS X, and Windows. A native GUI is provided for the Windows port, and the other ports use a command-line interface. The SDL port should run on any modern UNIX-like operating system (such as FreeBSD, Solaris or IRIX) with no code changes. It has also been ported to the GP2X, PlayStation Portable as PSPFceUltra, the Nintendo GameCube and Pepper Pad.

    +


    +

    FCE Ultra was created by Xodnizel. Development appeared to stop and the homepage and forums for the emulator were taken down. The last version before this was v0.98.13-pre, released in September 2004 as source-only. The last binary release was v0.98.12 in August 2004.

    +


    +

    However, it was resurrected again in March of 2006 by Anthony Giorgio and Mark Doliner.

    +


    +

    There is also a graphical frontend for FCE Ultra. GFCE Ultra is written in Python and uses the GTK2 user interface library. Because is it written in Python and with portability in mind, it can be run on any UNIX-like platform and any processor architecture that is supported by Python.

    +


    +


    +

    FCEU Rerecording

    +


    +

    The "rerecording" version of FCE Ultra was implemented to FCE Ultra 0.98.10 with movie recording support.  This was done by blip, and was implemented for the purpose of creating Tool-Assisted Speedruns.

    +


    +

    The rerecording branch continued with 0.98.12, adding movie support features, such as "bullet proof" recording.  In 2006, FCEU 0.98.16 was implemented by nitsuja and luke.  Various tools such as read-only toggling, increased hotkey mapping, and memory watch were added.

    +


    +

    In 2008, FCEU rerecording was picked up again by mz, maximus, adelikat, and nitsujrehtona with various updates named FCEU.0.98.17 - 0.98.28

    +


    +

    FCEU.28 GoogleCode Page

    +


    +


    +

    FCEUD / FCEUXD / FCEUXDSP / FCEUXDSP CE

    +


    +

    FCEUD

    +

    In 2002, Parasyte modified the then-current version (0.81.3) of FCE Ultra and added a Nesten-style debugger, along with several other features, and named it "FCEUD" (FCE Ultra Debugger).

    +


    +

    FCEUXD

    +

    In January 2004, bbitmaster began working on more features and called it "FCEUXD" (FCE Ultra Extended Debugger).

    +

    It is a branch of FCE Ultra that contains many extended debugging features compared to the original FCE Ultra code such as a trace logger, a built-in hex editor, a name table viewer, code/data logger, inline assembler, and Game Genie decoder/encoder in addition to the debugger and PPU viewer from FCEUD.  The last version made was FCEUXD 1.0a.

    +


    +

    FCEUXDSP

    +

    FCEUXDSP stands for FCEUXD "SP" version and is a branch of FCEUXD 1.0a.

    +

    It was created in 2006 by sp.  The project extends the debugging tools even further compared to FCEUXD by adding new tools, functions, and usability of debugging tools.  

    +


    +

    The last version of FCEUXDSP was 1.07 which adds a feature known as the RAM Filter. This has since been removed, due to functional redundancy.

    +


    +

    FCEUXDSP homepage

    +


    +

    FCEUXDSP CE

    +

    CE stands for "Champion Edition" and is a branch of XDSP that adds a text hooker tool.

    +


    +

    FCEUXDSP CE homepage

    +


    +

    FCEU-mm

    +


    +

    FCEU "mappers modified" is an unofficial build of FCEU Ultra by CaH4e3, which supports a lot of new mappers including some obscure mappers such as one for unlicensed NES ROM's.

    +


    +

    FCEUX supports mappers from older versions of FCEU-mm.

    +


    +

    FCEU-mm SourceForge page

    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring tool

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/GUI.html b/web/help/GUI.html index 2517e362..3fa0c707 100644 --- a/web/help/GUI.html +++ b/web/help/GUI.html @@ -1,120 +1,311 @@ - - + + + + + - GUI - - - - - - - - - - + + + + + + + + GUI + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    GUI

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    GUI

    -


    -

    Various toggle boxes related to the FCEUX main window.

    -


    -


    -

    Load "File Open" dialog when FCEUX starts.

    -


    -

    If enabled, FCEUX will ask for a ROM to open upon FCEUX start up.

    -


    -


    -

    Automatically hide menu on game load.

    -


    -

    If enabled, the FCEU Menu will be hidden while a ROM is loaded.  To unhide it, press the ESC key.

    -


    -


    -

    Ask confirmation on exit attempt.

    -


    -

    If enabled, FCEUX will ask you before closing the window.  (It may also say some other things...)

    -


    -


    -

    Disable screen saver while game is loaded.

    -


    -

    This is enabled by default.  If a game is running, the windows screen saver will not turn on.

    -


    -


    -

    Enable right-click context menu.

    -


    -

    This is enabled by default.  This allows you to right-click on the emulator to get context menus.  The context menu gives many common options for a given situation and has a few options not available otherwise.

    -


    -


    -

    Switch fullscreen by double-click

    -


    -

    If enabled, you may switch between fullscreen mode and windowed mode by a double-click on the emulator.

    -


    -


    -

    Partially disable Visual Themes (Requires restart)

    -


    -

    If enabled, dialog windows in FCEUX will use classic Visual Theme (a la Windows98 interface).

    -


    -


    -

    Single Instance Mode

    -


    -

    If enabled, starting a second copy of FCEUX with a path to a game will make FCEUX load the file into the first window, then exit. This will ensure that only one instance of FCEUX is running in your OS.

    -


    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    GUI

    + +
    + +

    +

    GUI

    +


    +

    Various toggle boxes related to the FCEUX main window.

    +


    +


    +

    Load "File Open" dialog when FCEUX starts.

    +


    +

    If enabled, FCEUX will ask for a ROM to open upon FCEUX start up. 

    +


    +


    +

    Automatically hide menu on game load.

    +


    +

    If enabled, the FCEU Menu will be hidden while a ROM is loaded.  To unhide it, press the ESC key.

    +


    +


    +

    Ask confirmation on exit attempt.

    +


    +

    If enabled, FCEUX will ask you before closing the window.  (It may also say some other things...)

    +


    +


    +

    Disable screen saver while game is loaded. 

    +


    +

    This is enabled by default.  If a game is running, the windows screen saver will not turn on.

    +


    +


    +

    Enable right-click context menu.

    +


    +

    This is enabled by default.  This allows you to right-click on the emulator to get context menus.  The context menu gives many common options for a given situation and has a few options not available otherwise.

    +


    +


    +

    Switch fullscreen by double-click

    +


    +

    If enabled, you may switch between fullscreen mode and windowed mode by a double-click on the emulator.

    +


    +


    +

    Partially disable Visual Themes (Requires restart)

    +


    +

    If enabled, dialog windows in FCEUX will use classic Visual Theme (a la Windows98 interface).

    +


    +


    +

    Single Instance Mode

    +


    +

    If enabled, starting a second copy of FCEUX with a path to a game will make FCEUX load the file into the first window, then exit. This will ensure that only one instance of FCEUX is running in your OS.

    +


    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free EPub producer

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/GameGenieEncoderDecoder.html b/web/help/GameGenieEncoderDecoder.html index baa14de8..a935ce9e 100644 --- a/web/help/GameGenieEncoderDecoder.html +++ b/web/help/GameGenieEncoderDecoder.html @@ -1,104 +1,295 @@ - - + + + + + - Game Genie Encoder/Decoder - - - - - - - - - - + + + + + + + + Game Genie Encoder/Decoder + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Game Genie Encoder/Decoder

    - -
    - Debug ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Game Genie Decoder/Encoder

    -


    -

    This will take an NES address space PRG address ($8000-$FFFF), a comparison value (for 8-letter GG codes; refer to a Game Genie code FAQ for an explanation of what this does), and a Value that replaces the addressed byte.

    -


    -

    Filling in the Address and Value fields will produce a 6-letter code; if you also fill out the Compare field, it will produce an 8-letter code.  The code so produced will appear in the Game Genie Code box immediately; you can then click "Add to Cheat List" to activate it.

    -


    -

    To decrypt a Game Genie code, enter it into the Game Genie Code box, and the Address and Value fields will be automatically filled in, as will the Compare field if it was an 8-letter code.

    -


    -

    Adding Game Genie codes

    -


    -

    In the Game Genie Code Decoder/Encoder window, type the code into the Game Genie Code box and click "Add to Cheat List", which will add it to the Cheat Search cheat list. You can then enable/disable them by double-clicking the code in the box (a * means the code is active).

    -


    -


    -

    Making Game Genie codes permanent

    -


    -

    Using the Game Genie Code Decoder/Encoder, enter in your code in the "Game Genie Code" box, and under "Possible Affected ROM File Addresses", a list of possible matches (usually from 1 to 5) is displayed. Using the built-in Hex Editor, go to the first listed address in the ROM, and change its value to the value given in the "Value" box (of the GG code Decoder/Encoder window). If the desired effect isn't achieved, undo the change (Ctrl+Z) and try the next address. Repeat until the desired effect is achieved, and then save the ROM.

    -


    -


    -

    How do I make my own Game Genie codes?

    -


    -

    First of all, you must:

    -


    -

    * have a decent amount of ASM knowledge;

    -

    * know how to use the debugger;

    -

    * understand NES PRG-ROM bank switching.

    -


    -

    Once you've found a part of PRG-ROM you want to change to create a code effect, snap the Debugger (if it's not so already) and find the code's location in the PRG-ROM's address space ($8000-$FFFF) (you'll want the debugger snapped so the game won't swap banks out from under you). Then, using the built-in Hex Editor, view the NES memory and go to the PRG-ROM address you wish to modify, then right-click the byte and choose "Create Game Genie Code at this Address". The Game Genie Code Decoder/Encoder will appear, with the Address and Compare boxes filled in (the Compare box represents the address's original value). Enter the new value into the "Value" box.

    -


    -

    An alternative way to enter the code is to locate the desired address in the debugger, and then middle-click on it, which will summon the GG Code Decoder/Encoder. Then enter the code as described above.

    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free EPub and documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Game Genie Encoder/Decoder

    + +
    + +

    +

    Game Genie Decoder/Encoder

    +


    +

    This will take an NES address space PRG address ($8000-$FFFF), a comparison value (for 8-letter GG codes; refer to a Game Genie code FAQ for an explanation of what this does), and a Value that replaces the addressed byte.

    +


    +

    Filling in the Address and Value fields will produce a 6-letter code; if you also fill out the Compare field, it will produce an 8-letter code.  The code so produced will appear in the Game Genie Code box immediately; you can then click "Add to Cheat List" to activate it.

    +


    +

    To decrypt a Game Genie code, enter it into the Game Genie Code box, and the Address and Value fields will be automatically filled in, as will the Compare field if it was an 8-letter code.

    +


    +

    Adding Game Genie codes

    +


    +

    In the Game Genie Code Decoder/Encoder window, type the code into the Game Genie Code box and click "Add to Cheat List", which will add it to the Cheat Search cheat list. You can then enable/disable them by double-clicking the code in the box (a * means the code is active).

    +


    +


    +

    Making Game Genie codes permanent

    +


    +

    Using the Game Genie Code Decoder/Encoder, enter in your code in the "Game Genie Code" box, and under "Possible Affected ROM File Addresses", a list of possible matches (usually from 1 to 5) is displayed. Using the built-in Hex Editor, go to the first listed address in the ROM, and change its value to the value given in the "Value" box (of the GG code Decoder/Encoder window). If the desired effect isn't achieved, undo the change (Ctrl+Z) and try the next address. Repeat until the desired effect is achieved, and then save the ROM.

    +


    +


    +

    How do I make my own Game Genie codes?

    +


    +

    First of all, you must:

    +


    +

    * have a decent amount of ASM knowledge;

    +

    * know how to use the debugger;

    +

    * understand NES PRG-ROM bank switching.

    +


    +

    Once you've found a part of PRG-ROM you want to change to create a code effect, snap the Debugger (if it's not so already) and find the code's location in the PRG-ROM's address space ($8000-$FFFF) (you'll want the debugger snapped so the game won't swap banks out from under you). Then, using the built-in Hex Editor, view the NES memory and go to the PRG-ROM address you wish to modify, then right-click the byte and choose "Create Game Genie Code at this Address". The Game Genie Code Decoder/Encoder will appear, with the Address and Compare boxes filled in (the Compare box represents the address's original value). Enter the new value into the "Value" box. 

    +


    +

    An alternative way to enter the code is to locate the desired address in the debugger, and then middle-click on it, which will summon the GG Code Decoder/Encoder. Then enter the code as described above.

    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured Kindle eBooks generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Gamefilecompatibility.html b/web/help/Gamefilecompatibility.html index 2112c569..a5df5589 100644 --- a/web/help/Gamefilecompatibility.html +++ b/web/help/Gamefilecompatibility.html @@ -1,100 +1,291 @@ - - + + + + + - Game file compatibility - - - - - - - - - - + + + + + + + + Game file compatibility + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Game file compatibility

    - -
    - General ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    File Formats/Expansion Hardware

    -


    -

    Valid Game Types

    -


    -

    FCEUX supports the iNES, FDS(raw and with a header), UNIF, and NSF file formats. FDS ROM images in the iNES format are not supported; it would be silly to do so and storing them in that format is nonsensical.

    -


    -

    FCEUX supports loading ROM/disk images from some types of compressed files. FCEUX can load data from both PKZIP-format files and gzip-format files. Only the "deflate" algorithm is supported, but this is the most widely used algorithm for these formats.

    -


    -

    Playing from compressed (.zip) files

    -


    -

    FCEUX is compatible with all compression types compatible with 7z.  Compatible types include .7z, .zip, .rar, and .tar.

    -


    -

    If an archive file is opened, it will be scanned for the followings extensions: .nes, .fds, .nsf, .unf, .nez, .unif.  If more than one valid type is detected, a dialog box will open up with a list of available choices.

    -


    -

    Automatic IPS Patching (Playing Hacked Games)

    -


    -

    FCEUX supports automatic IPS patching.  

    -


    -

    Place the IPS file in the same directory as the file to load, and name it [filename.extension].ips.

    -


    -

           Examples:        Boat.nes -      Boat.nes.ips

    -

                           Boat.zip -       Boat.zip.ips

    -

                           Boat.nes.gz -  Boat.nes.gz.ips

    -

                           Boat     -         Boat.ips

    -

           

    -


    -

    (Some operating systems and environments will hide file extensions. Keep this in mind if you are having trouble.)

    -


    -

    Patching is supported for all supported formats (iNES, FDS, UNIF, and NSF), but it will probably only be useful for the iNES and FDS formats. UNIF files can't be patched well with the IPS format because they are chunk-based with no fixed offsets.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Game file compatibility

    + +
    + +

    +

    File Formats/Expansion Hardware

    +


    +

    Valid Game Types

    +


    +

    FCEUX supports the iNES, FDS(raw and with a header), UNIF, and NSF file formats. FDS ROM images in the iNES format are not supported; it would be silly to do so and storing them in that format is nonsensical.

    +


    +

    FCEUX supports loading ROM/disk images from some types of compressed files. FCEUX can load data from both PKZIP-format files and gzip-format files. Only the "deflate" algorithm is supported, but this is the most widely used algorithm for these formats.

    +


    +

    Playing from compressed (.zip) files

    +


    +

    FCEUX is compatible with all compression types compatible with 7z.  Compatible types include .7z, .zip, .rar, and .tar.

    +


    +

    If an archive file is opened, it will be scanned for the followings extensions: .nes, .fds, .nsf, .unf, .nez, .unif.  If more than one valid type is detected, a dialog box will open up with a list of available choices.

    +


    +

    Automatic IPS Patching (Playing Hacked Games)

    +


    +

    FCEUX supports automatic IPS patching.  

    +


    +

    Place the IPS file in the same directory as the file to load, and name it [filename.extension].ips.

    +


    +

            Examples:        Boat.nes -      Boat.nes.ips

    +

                            Boat.zip -       Boat.zip.ips

    +

                            Boat.nes.gz -  Boat.nes.gz.ips

    +

                            Boat     -         Boat.ips

    +

            

    +


    +

    (Some operating systems and environments will hide file extensions. Keep this in mind if you are having trouble.)

    +


    +

    Patching is supported for all supported formats (iNES, FDS, UNIF, and NSF), but it will probably only be useful for the iNES and FDS formats. UNIF files can't be patched well with the IPS format because they are chunk-based with no fixed offsets. 

    +

    +

    Created with the Personal Edition of HelpNDoc: Easy EBook and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/General.html b/web/help/General.html index c0ff4d31..3a0bacf5 100644 --- a/web/help/General.html +++ b/web/help/General.html @@ -1,94 +1,289 @@ - - + + + + + - General - - - - - - - - - - + + + + + + + + General + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    General

    - -
    -
    - Previous - - Next - -
    -
    -
    -
    - -

    -

    General

    -


    -

    Guides for general uses of FCEUX.

    -


    -

    Getting Started

    -


    -

    A guide for loading games, setting up controls, etc.

    -


    -


    -

    Command Line Options

    -


    -

    FCEUX as an extensive set of options for running from command line (or .bat file).  This guide explains all command options available.

    -


    -


    -

    Famicom Disk System

    -


    -

    A guide for playing Famicom Disk System (.fds) games.

    -


    -


    -

    Movie Recording

    -


    -

    A guide for playing and recording movie input files (.fm2).

    -


    -


    -

    AVI Capturing

    -


    -

    A guide for capturing a game/movie file into an AVI file.

    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    General

    + +
    + +

    +

    General

    +


    +

    Guides for general uses of FCEUX.

    +


    +

    Getting Started

    +


    +

    A guide for loading games, setting up controls, etc.

    +


    +


    +

    Command Line Options

    +


    +

    FCEUX as an extensive set of options for running from command line (or .bat file).  This guide explains all command options available.

    +


    +


    +

    Famicom Disk System

    +


    +

    A guide for playing Famicom Disk System (.fds) games.

    +


    +


    +

    Movie Recording

    +


    +

    A guide for playing and recording movie input files (.fm2).

    +


    +


    +

    AVI Capturing

    +


    +

    A guide for capturing a game/movie file into an AVI file.

    +

    +

    Created with the Personal Edition of HelpNDoc: Generate Kindle eBooks with ease

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Gettingstarted.html b/web/help/Gettingstarted.html index bb09df83..529377f1 100644 --- a/web/help/Gettingstarted.html +++ b/web/help/Gettingstarted.html @@ -1,110 +1,301 @@ - - + + + + + - Getting Started - - - - - - - - - - + + + + + + + + Getting Started + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Getting Started

    - -
    - General ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Getting Started

    -


    -

    Playing Games

    -


    -

    The most basic function of FCEUX is to play Nintendo Entertainment System (NES) and Famicom Disk System (FDS) games.

    -


    -

    To play a game, simply open a ROM by selecting "Open" in the File Menu (or press Ctrl+O).  (See Game Compatibility for information regarding file types that are compatible with FCEU.)

    -


    -

    To get set up properly, you may need to configure any of the following:

    -


    -

    -Input

    -

    -Video

    -

    -Sound

    -

    -Timing

    -

    -GUI settings

    -

    -Hotkeys

    -

    -Directory Overrides

    -


    -


    -

    Using Savestates

    -


    -

    In emulation, a savestate (alternatively called freeze state or game freeze) is a snapshot of all of an emulated device's state information at a given moment. This makes it possible to pause emulation, and restart it later, even in another instance of the emulator, or to test the emulated machines reaction to different series of inputs using the saved state as a common starting point.

    -


    -

    To make a savestate press shift + F1-F10 to save to a save slot (0-9).  Or select a save slot with the number keys (0-9) and select the quick save command (Default hotkey is "I")

    -


    -

    To load a savestate press F1-F10.  Or select a save slot with the number keys (0-9) and loadstate by navigating to File > Savestate >  Loadstate or by pressing the loadstate hotkey (Default hotkey is "P").

    -


    -

    To save a state to a specific file, go to "Save state as..." in the FCEUX File menu.

    -


    -

    To load a specific savestate file, go to the "Load state from..." in the FCEUX File menu.

    -


    -


    -

    Undo Savestate / Loadstate

    -


    -

    If you load a state by accident, you can right-click and select "Undo Loadstate" to restore the emulator back to the state it was in before the loadstate.  Upon using undo loadstate, a redo loadstate will appear as an option.  

    -


    -

    If you make a savestate, it will overwrite the existing savestate for that slot.  You have the option to undo this and restore the previous savestate file by right-clicking and selecting undo savestate.  Once you undo, you will have the option to redo savestate to restore the savestate that you made.  You can also map a hotkey to this function, by default it's mapped to Ctrl+Z.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Create iPhone web-based documentation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Getting Started

    + +
    + +

    +

    Getting Started

    +


    +

    Playing Games

    +


    +

    The most basic function of FCEUX is to play Nintendo Entertainment System (NES) and Famicom Disk System (FDS) games.

    +


    +

    To play a game, simply open a ROM by selecting "Open" in the File Menu (or press Ctrl+O).  (See Game Compatibility for information regarding file types that are compatible with FCEU.)

    +


    +

    To get set up properly, you may need to configure any of the following:

    +


    +

    -Input

    +

    -Video

    +

    -Sound

    +

    -Timing

    +

    -GUI settings

    +

    -Hotkeys

    +

    -Directory Overrides

    +


    +


    +

    Using Savestates

    +


    +

    In emulation, a savestate (alternatively called freeze state or game freeze) is a snapshot of all of an emulated device's state information at a given moment. This makes it possible to pause emulation, and restart it later, even in another instance of the emulator, or to test the emulated machines reaction to different series of inputs using the saved state as a common starting point. 

    +


    +

    To make a savestate press shift + F1-F10 to save to a save slot (0-9).  Or select a save slot with the number keys (0-9) and select the quick save command (Default hotkey is "I")

    +


    +

    To load a savestate press F1-F10.  Or select a save slot with the number keys (0-9) and loadstate by navigating to File > Savestate >  Loadstate or by pressing the loadstate hotkey (Default hotkey is "P").

    +


    +

    To save a state to a specific file, go to "Save state as..." in the FCEUX File menu.

    +


    +

    To load a specific savestate file, go to the "Load state from..." in the FCEUX File menu.

    +


    +


    +

    Undo Savestate / Loadstate

    +


    +

    If you load a state by accident, you can right-click and select "Undo Loadstate" to restore the emulator back to the state it was in before the loadstate.  Upon using undo loadstate, a redo loadstate will appear as an option.  

    +


    +

    If you make a savestate, it will overwrite the existing savestate for that slot.  You have the option to undo this and restore the previous savestate file by right-clicking and selecting undo savestate.  Once you undo, you will have the option to redo savestate to restore the savestate that you made.  You can also map a hotkey to this function, by default it's mapped to Ctrl+Z.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Qt Help documentation made easy

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/HexEditor.html b/web/help/HexEditor.html index 7ba87969..173b536c 100644 --- a/web/help/HexEditor.html +++ b/web/help/HexEditor.html @@ -1,131 +1,319 @@ - - + + + + + - Hex Editor - - - - - - - - - - + + + + + + + + Hex Editor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Hex Editor

    - -
    - Debug ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Hex Editor

    -


    -


    -

    The Hex Editor is a very powerful memory viewing/editing tool, it obsoletes the Memory Viewer tool from the FCE Ultra and FCEU Rerecording branches.

    -


    -

    It can do a wide range of things.  It allows you to view the entire RAM & ROM contents in a resizable dialog window. It makes it easy to edit the game's RAM, PPU memory, and even its currently-loaded ROM data by simply typing in values in the editor. You can also "freeze" parts of RAM (to prevent the game from modifying the data there), search for data (Ctrl+F), and even copy and paste data to/from the clipboard.  Furthermore, table files are supported, so you can edit a game's text in real-time and see the result immediately.

    -


    -

    Basically, it lets you tinker with any part of a game's RAM or ROM while it is running.

    -


    -

    Using the Hex Editor

    -


    -

    The Hex Editor lets you edit three major areas:

    -


    -

    1. NES MEMORY

    -

    This allows you to directly edit all of the NES address space (System Bus - $0000-$FFFF). While you can easily modify RAM, or write directly to registers by typing in data, you cannot modify ROM data ($8000-$FFFF) itself. This is because most mappers have registers which are located in this space; so writing there can trigger mapper operations that may cause the game to crash or glitch if you don't know what you're doing.  If you want to edit the ROM itself, right-click on the offset and select  "Go here in ROM file"; that will take you directly to where you need to be so you can start editing.  You can also freeze RAM by clicking on it with the middle mouse button, or by using the right-click menu. This works by adding it directly to the Cheat List, which you can see from the Cheat Console. Finally, the right-click menu can be used to quickly add a read or write breakpoint to the debugger. When adding a breakpoint to the range of ROM addresses ($8000-$FFFF), the Hex Editor also takes into account the number of the bank in which the byte is located.

    -


    -

    2. PPU MEMORY

    -

    This allows you to directly view and write to PPU memory (VRAM).

    -


    -

    3. OAM MEMORY

    -

    This allows you to directly view and write to OAM memory (sprite RAM).

    -


    -

    4. THE ROM FILE

    -

    This allows you to edit the ROM file in real time, i.e. while the game is running. If you make a mistake, press Ctrl+Z or Edit->Undo to undo your change (then load a save-state if the game crashed).

    -


    -

    The Hex Editor also has support for table files (*.tbl) to map bytes to text. Each line consists of four characters of the form "xx=y", where "xx" is the hex value, and "y" is the character that that value represents. I have also added an extension to represent the Return key:  xx=ret whereby pressing the Return key will enter that value into the ROM.  You can copy/paste data or text by selecting it and using Ctrl+C (to copy) and Ctrl+V (to paste). Plus, there is an Edit->Find feature that you can use to search for data. This feature should be fairly intuitive, so I won't bother to explain it.

    -


    -

    When you're done editing, remember to save the ROM file (File->Save) or your changes will be lost when you close the ROM.

    -


    -

    Why can't I edit NES memory beyond $8000?

    -


    -

    NES memory from $8000-$FFFF is where the game's PRG-ROM code is mapped.  Whenever you type in a value in the NES memory editor, it effectively writes that value to that address. Many games use mappers, which are usually accessed by writing to $8000-$FFFF (which is read-only)... and if *you* were to do so, it may trigger a bankswitch, which could easily make the game crash. In any event, doing so will not modify the ROM itself.  What you *can* do, though, is edit the PRG-ROM itself by right-clicking on the offset you wish to edit, and selecting "Go here in the ROM file", which should take you to that spot in the ROM instead, where you can change the data at instead.

    -


    -

    Highlighting

    -


    -

    The Hex Editor highlights certain bytes with different colors to help you distinguish different data.

    -

    Usually all bytes are colored black.

    -

    Bookmarked RAM addresses are highlighted by green color.

    -

    Freezed RAM addresses are highlighted by blue color.

    -

    Modified ROM bytes are highlighted by red color.

    -

    If you have the Code/Data Logger running, bytes that were logged will be colored:

    -

    For PRG ROM segment:

    -

    Dark-yellow - the byte is code

    -

    Blue - the byte is data

    -

    Cyan - the byte is PCM audio data

    -

    Green - the byte is both code and data

    -

    For CHR ROM segment:

    -

    Yellow - the byte was rendered

    -

    Light-blue - the byte was read programmatically

    -

    Light-green - the byte was both rendered and read programmatically

    -


    -

    Highlight Activity

    -


    -

    This feature of the Hex Editor can draw your attention to bytes that changed their value since the last frame, or since the last update of Hex Editor window (if "Fade when paused" option is enabled).

    -

    If you don't need this feature, you can switch it off in the "Highlighting" submenu.

    -

    You can customize this feature by changing "fading period".

    -

    IMPORTANT NOTE: this feature does not track the actual changes of RAM. It works by simply comparing current values to previously displayed values of the same addresses. That's why the feature works with RAM/PPU/OAM/ROM as well.

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Hex Editor

    + +
    + +

    +

    Hex Editor

    +


    +


    +

    The Hex Editor is a very powerful memory viewing/editing tool, it obsoletes the Memory Viewer tool from the FCE Ultra and FCEU Rerecording branches.

    +


    +

    It can do a wide range of things.  It allows you to view the entire RAM & ROM contents in a resizable dialog window. It makes it easy to edit the game's RAM, PPU memory, and even its currently-loaded ROM data by simply typing in values in the editor. You can also "freeze" parts of RAM (to prevent the game from modifying the data there), search for data (Ctrl+F), and even copy and paste data to/from the clipboard.  Furthermore, table files are supported, so you can edit a game's text in real-time and see the result immediately.

    +


    +

    Basically, it lets you tinker with any part of a game's RAM or ROM while it is running.

    +


    +

    Using the Hex Editor

    +


    +

    The Hex Editor lets you edit three major areas:

    +


    +

    1. NES MEMORY

    +

    This allows you to directly edit all of the NES address space (System Bus - $0000-$FFFF). While you can easily modify RAM, or write directly to registers by typing in data, you cannot modify ROM data ($8000-$FFFF) itself. This is because most mappers have registers which are located in this space; so writing there can trigger mapper operations that may cause the game to crash or glitch if you don't know what you're doing.  If you want to edit the ROM itself, right-click on the offset and select  "Go here in ROM file"; that will take you directly to where you need to be so you can start editing.  You can also freeze RAM by clicking on it with the middle mouse button, or by using the right-click menu. This works by adding it directly to the Cheat List, which you can see from the Cheat Console. Finally, the right-click menu can be used to quickly add a read or write breakpoint to the debugger. When adding a breakpoint to the range of ROM addresses ($8000-$FFFF), the Hex Editor also takes into account the number of the bank in which the byte is located.

    +


    +

    2. PPU MEMORY

    +

    This allows you to directly view and write to PPU memory (VRAM).

    +


    +

    3. THE ROM FILE

    +

    This allows you to edit the ROM file in real time, i.e. while the game is running. If you make a mistake, press Ctrl+Z or Edit->Undo to undo your change (then load a save-state if the game crashed).

    +


    +

    The Hex Editor also has support for table files (*.tbl) to map bytes to text. Each line consists of four characters of the form "xx=y", where "xx" is the hex value, and "y" is the character that that value represents. I have also added an extension to represent the Return key:  xx=ret whereby pressing the Return key will enter that value into the ROM.  You can copy/paste data or text by selecting it and using Ctrl+C (to copy) and Ctrl+V (to paste). Plus, there is an Edit->Find feature that you can use to search for data. This feature should be fairly intuitive, so I won't bother to explain it.

    +


    +

    When you're done editing, remember to save the ROM file (File->Save) or your changes will be lost when you close the ROM.

    +


    +

    Why can't I edit NES memory beyond $8000?

    +


    +

    NES memory from $8000-$FFFF is where the game's PRG-ROM code is mapped.  Whenever you type in a value in the NES memory editor, it effectively writes that value to that address. Many games use mappers, which are usually accessed by writing to $8000-$FFFF (which is read-only)... and if *you* were to do so, it may trigger a bankswitch, which could easily make the game crash. In any event, doing so will not modify the ROM itself.  What you *can* do, though, is edit the PRG-ROM itself by right-clicking on the offset you wish to edit, and selecting "Go here in the ROM file", which should take you to that spot in the ROM instead, where you can change the data at instead.

    +


    +

    Highlighting

    +


    +

    The Hex Editor highlights certain bytes with different colors to help you distinguish different data.

    +

    Usually all bytes are colored black.

    +

    Bookmarked RAM addresses are highlighted by green color.

    +

    Freezed RAM addresses are highlighted by blue color.

    +

    Modified ROM bytes are highlighted by red color.

    +

    If you have the Code/Data Logger running, bytes that were logged will be colored:

    +

    For PRG ROM segment:

    +

    Dark-yellow - the byte is code

    +

    Blue - the byte is data

    +

    Cyan - the byte is PCM audio data

    +

    Green - the byte is both code and data

    +

    For CHR ROM segment:

    +

    Yellow - the byte was rendered

    +

    Light-blue - the byte was read programmatically

    +

    Light-green - the byte was both rendered and read programmatically

    +


    +

    Highlight Activity

    +


    +

    This feature of the Hex Editor can draw your attention to bytes that changed their value since the last frame, or since the last update of Hex Editor window (if "Fade when paused" option is enabled).

    +

    If you don't need this feature, you can switch it off in the "Highlighting" submenu.

    +

    You can customize this feature by changing "fading period".

    +

    IMPORTANT NOTE: this feature does not track the actual changes of RAM. It works by simply comparing current values to previously displayed values of the same addresses. That's why the feature works with RAM/PPU/ROM as well.

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easy EBook and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Input.html b/web/help/Input.html index 503cea6b..39d2cffa 100644 --- a/web/help/Input.html +++ b/web/help/Input.html @@ -1,123 +1,314 @@ - - + + + + + - Input - - - - - - - - - - + + + + + + + + Input + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Input

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Input Configuration

    -


    -


    -

    Setting up controllers

    -


    -

    On the pull down menus, you can select the device you want to be emulated on input ports 1 and 2 (game pad, zapper, pad, paddle). Note: you can't change this setting while a movie is being played or recorded.

    -

    If you check the box labeled "Attach four-score(implies four gamepads)", you won't be able to select any of these options, because the four-score allows to use 2 extra controllers.

    -

    The device currently being emulated on each port is listed above the drop down list; loading certain games will override your settings, but only temporarily.

    -


    -

    To bind these controls to specific keys/joystick controls use the  "configure" the device listed above each drop-down list.

    -


    -

    Zapper / Arkanoid Paddle

    -


    -

    Most Zapper NES games expect the Zapper to be plugged into port 2. and most VS Unisystem games expect the Zapper to be plugged into port 1.

    -


    -

    The left mouse button is the emulated trigger button for the Zapper. The right mouse button is also emulated as the trigger, but as long as you have the right mouse button held down, no color detection will take place, which is effectively like pulling the trigger while the Zapper is pointed away from the television screen. Note that you must hold the right button down for a short time to have the desired effect.

    -


    -

    The Arkanoid Paddle emulates the same way the zapper.

    -


    -

    Power Pad A / B

    -


    -

    Emulates the NES Power pad.  The 12 pad buttons can be routed via the configure button.  FCEUX allows up to 2 Power Pads to be emulated at once (Power Pad A and B).

    -


    -

    Famicom Controllers

    -


    -

    You can also select the input device to be emulated on the Famicom Expansion port.  If you select a device for the Famicom Expansion Port, you should probably have emulated game pads on the emulated NES-style input ports.

    -


    -

    In addition to the traditional famicom controller, FCEUX can emulate the Famicom version of the Arkanoid controller, the "Space Shadow" gun, the Famicom 4-player adapter, the Family Keyboard, the HyperShot controller, the Mahjong controller, the Oeka Kids tablet, the Quiz King buzzers, the Family Trainer, and the Barcode World barcode reader.

    -


    -

    Replace Port 2 Start With Microphone

    -


    -

    Checking this box will replace the Start button used by controller 2 with the microphone option found on the famicom. Pressing the Microphone button is like blowing or yelling into it on the console equipment. The Port 2 controller used for the Famicom included a microphone and a volume control in place of the Start and Select buttons. This option isn't automatically detected, so it has to be manually enabled by the user. Movie files may also enable and use this feature. Both Famicom Cartridges and Famicom Disks have made use of this feature, such as both the cartridge and disk version of Zelda 1, Hikari Shinwa, and Takeshi no Chosenjo. Games other than those listed here use this feature.

    -


    -

    Input Presets

    -


    -

    This feature allow you to set the current input configuration to one of three presets.  This gives you the option to quickly change from one input configuration to another (such as toggling between 1 or 2 controllers and/or toggling from controller 2 being bound to controller 1 or having its own controls).

    -


    -

    To assign the current input configuration to a preset press the down arrow next to one of the presets.  To assign the preset as the current input configuration press the up arrow or use the hotkey assigned to that specific preset.  Preset hotkeys can be assigned in the Map Hotkeys menu.

    -


    -

    Disable left+right/up+down

    -


    -

    By default FCEUX allows you to press both the left and right controls at the same time (or up and down).  To disable this feature uncheck the checkbox on the left.

    -


    -

    Auto-Hold

    -


    -

    Clicking the auto hold button will allow you to assign a hotkey to the auto-hold feature.  

    -

    Clicking the clear button will allow you to assign a hotkey to the clear auto-holds feature.

    -


    -

    To use this feature, close the input config window and return to the FCEUX main window.  Hold down the auto-hold hotkey and press one of your controller inputs.  This will add it as one of the auto-hold assignments.  The game will keep auto-hold assigned buttons held be default.  Pressing one of these keys will release the button for the duration that it is held.

    -


    -

    To turn off all auto-hold assignments press the clear auto-holds hotkey.

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Generate EPub eBooks with ease

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Input

    + +
    + +

    +

    Input Configuration

    +


    +


    +

    Setting up controllers

    +


    +

    On the pull down menus, you can select the device you want to be emulated on input ports 1 and 2 (game pad, zapper, pad, paddle). Note: you can't change this setting while a movie is being played or recorded.

    +

    If you check the box labeled "Attach four-score(implies four gamepads)", you won't be able to select any of these options, because the four-score allows to use 2 extra controllers.

    +

    The device currently being emulated on each port is listed above the drop down list; loading certain games will override your settings, but only temporarily.

    +


    +

    To bind these controls to specific keys/joystick controls use the  "configure" the device listed above each drop-down list.

    +


    +

    Zapper / Arkanoid Paddle

    +


    +

    Most Zapper NES games expect the Zapper to be plugged into port 2. and most VS Unisystem games expect the Zapper to be plugged into port 1.

    +


    +

    The left mouse button is the emulated trigger button for the Zapper. The right mouse button is also emulated as the trigger, but as long as you have the right mouse button held down, no color detection will take place, which is effectively like pulling the trigger while the Zapper is pointed away from the television screen. Note that you must hold the right button down for a short time to have the desired effect. 

    +


    +

    The Arkanoid Paddle emulates the same way the zapper.

    +


    +

    Power Pad A / B

    +


    +

    Emulates the NES Power pad.  The 12 pad buttons can be routed via the configure button.  FCEUX allows up to 2 Power Pads to be emulated at once (Power Pad A and B).

    +


    +

    Famicom Controllers

    +


    +

    You can also select the input device to be emulated on the Famicom Expansion port.  If you select a device for the Famicom Expansion Port, you should probably have emulated game pads on the emulated NES-style input ports. 

    +


    +

    In addition to the traditional famicom controller, FCEUX can emulate the Famicom version of the Arkanoid controller, the "Space Shadow" gun, the Famicom 4-player adapter, the Family Keyboard, the HyperShot controller, the Mahjong controller, the Oeka Kids tablet, the Quiz King buzzers, the Family Trainer, and the Barcode World barcode reader.

    +


    +

    Replace Port 2 Start With Microphone

    +


    +

    Checking this box will replace the Start button used by controller 2 with the microphone option found on the famicom. Pressing the Microphone button is like blowing or yelling into it on the console equipment. The Port 2 controller used for the Famicom included a microphone and a volume control in place of the Start and Select buttons. This option isn't automatically detected, so it has to be manually enabled by the user. Movie files may also enable and use this feature. Both Famicom Cartridges and Famicom Disks have made use of this feature, such as both the cartridge and disk version of Zelda 1, Hikari Shinwa, and Takeshi no Chosenjo. Games other than those listed here use this feature.

    +


    +

    Input Presets

    +


    +

    This feature allow you to set the current input configuration to one of three presets.  This gives you the option to quickly change from one input configuration to another (such as toggling between 1 or 2 controllers and/or toggling from controller 2 being bound to controller 1 or having its own controls).

    +


    +

    To assign the current input configuration to a preset press the down arrow next to one of the presets.  To assign the preset as the current input configuration press the up arrow or use the hotkey assigned to that specific preset.  Preset hotkeys can be assigned in the Map Hotkeys menu.

    +


    +

    Disable left+right/up+down

    +


    +

    By default FCEUX allows you to press both the left and right controls at the same time (or up and down).  To disable this feature uncheck the checkbox on the left. 

    +


    +

    Auto-Hold

    +


    +

    Clicking the auto hold button will allow you to assign a hotkey to the auto-hold feature.  

    +

    Clicking the clear button will allow you to assign a hotkey to the clear auto-holds feature.

    +


    +

    To use this feature, close the input config window and return to the FCEUX main window.  Hold down the auto-hold hotkey and press one of your controller inputs.  This will add it as one of the auto-hold assignments.  The game will keep auto-hold assigned buttons held be default.  Pressing one of these keys will release the button for the duration that it is held.

    +


    +

    To turn off all auto-hold assignments press the clear auto-holds hotkey.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: What is a Help Authoring tool?

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Intro.html b/web/help/Intro.html index b5a4a1ba..1d797b27 100644 --- a/web/help/Intro.html +++ b/web/help/Intro.html @@ -1,76 +1,273 @@ - - + + + + + - Introduction - - - - - - - - - - + + + + + + + + Introduction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Introduction

    - -
    -
    - Next - -
    -
    -
    -
    - -

    -

    Introduction

    -


    -

    Basic information about FCEUX and its features.

    -


    -

    Introduction

    -


    -

    Overview

    -


    -

    FCE Ultra Version History

    -


    -

    What's Combined In FCEUX?

    -

    -

    Created with the Personal Edition of HelpNDoc: Write EPub books for the iPad

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + + + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Introduction.html b/web/help/Introduction.html index c5b91ce2..fee1a633 100644 --- a/web/help/Introduction.html +++ b/web/help/Introduction.html @@ -1,113 +1,304 @@ - - + + + + + - Introduction - - - - - - - - - - + + + + + + + + Introduction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Introduction

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Welcome to the FCEUX Help menu.

    -


    -

    The following information is about how to use FCEUX, its commands, how to use FCEUX to its fullest, and the communities for which FCEUX is designed.

    -


    -


    -

    Introduction

    -


    -

    Basic information about FCEUX and its features.

    -

    Overview

    -

    FCE Ultra Version History

    -

    What's Combined In FCEUX?

    -


    -


    -

    Additional Chapters

    -


    -

    General

    -

    Guides for general uses of FCEUX and the FCEUX NES menu.

    -


    -

    Config

    -

    Commands under FCEUX Config menu.

    -


    -

    Tools

    -

    Commands under FCEUX Tools menu.

    -


    -

    Debug

    -

    Commands under FCEUX Debug menu.

    -


    -

    FAQ / Guides

    -

    Information regarding various concepts such as TAS, ROM Hacking, RAM Mapping.

    -


    -

    Technical Information

    -

    Technical information relating to NES hardware emulation & FCEUX file formats.

    -


    -


    -


    -


    -

    Help menu created by adelikat.

    -

    Updated & maintained by AnS.

    -

    Information collected and/or written/edited by adelikat and AnS.

    -

    Minor edits of lua-related text by FatRatKnight.

    -

    Debugger documentation edits by rainwarrior.

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free help authoring environment

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Introduction

    + +
    + +

    +

    Welcome to the FCEUX Help menu.

    +


    +

    The following information is about how to use FCEUX, its commands, how to use FCEUX to its fullest, and the communities for which FCEUX is designed.

    +


    +


    +

    Introduction

    +


    +

    Basic information about FCEUX and its features.

    +

    Overview

    +

    FCE Ultra Version History

    +

    What's Combined In FCEUX?

    +


    +


    +

    Additional Chapters

    +


    +

    General

    +

    Guides for general uses of FCEUX and the FCEUX NES menu.

    +


    +

    Config

    +

    Commands under FCEUX Config menu.

    +


    +

    Tools

    +

    Commands under FCEUX Tools menu.

    +


    +

    Debug

    +

    Commands under FCEUX Debug menu.

    +


    +

    FAQ / Guides

    +

    Information regarding various concepts such as TAS, ROM Hacking, RAM Mapping.

    +


    +

    Technical Information

    +

    Technical information relating to NES hardware emulation & FCEUX file formats.

    +


    +


    +


    +


    +

    Help menu created by adelikat.

    +

    Updated & maintained by AnS.

    +

    Information collected and/or written/edited by adelikat and AnS.

    +

    Minor edits of lua-related text by FatRatKnight.

    +

    Debugger documentation edits by rainwarrior.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easy EPub and documentation editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/LuaBot.html b/web/help/LuaBot.html index f5d98727..05b836ca 100644 --- a/web/help/LuaBot.html +++ b/web/help/LuaBot.html @@ -1,219 +1,410 @@ - - + + + + + - Lua Bot - - - - - - - - - - + + + + + + + + Lua Bot + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Lua Bot

    - -
    - Lua Scripting ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    LuaBot

    -


    -

    LuaBot employs a new concept in FCEUX Tool creation.  It is an external lua script that creates the Basic bot GUI.  The GUI then uses lua scripting to perform botting tasks.

    -


    -

    To run it you must have lua scripting enabled (see Getting Started).  LuaBot is included in the lua pack under /luaScripts.  to get started run  luabot_framework.lua.

    -


    -

    What is Lua Bot?

    -

    LuaBot is...well, a bot. It uses a combination of probability, scripting and RAM monitoring to play games.  Specifically  basic bot is used to create portions of Tool Assisted Speedrun.   It is most powerful for finding solutions in highly random situations, or highly improbably events (such as manipulating a critical hit in an RPG).  Basic bot comes with a rather powerful scripting language in order to be "programmed" to handle these specific situations.  LuaBot in its most extreme application can even be "taught" to play video games!

    -


    -


    -

    How to Use Lua Bot

    -


    -

    LuaBot is a trial and error script that exhausts the input-search-space by simply trying to push buttons.

    -


    -

    You can program it to limit this searchspace, as it can become exponentially large. You can press eight possible buttons at any frame, each on or off. That's 2 raised to the 8, or 256 possible combinations in that one frame. There are 60 frames in one second, so you have 256 raised to the power of 60. Write a three. Now start writing 144 zeroes after it. It's not a small number.

    -


    -

    Anyways, the bot has two parts. The frontend, which we'll call BeeBee, and the Lua part, which we call LuaBot.

    -


    -

    You start the bot by opening the LuaBot_front.lua script file. Make sure the LuaBot_backend.lua file is in the same directory.

    -


    -

    BeeBee

    -


    -

    BeeBee (who received it's name from BasicBot, its predecessor) just writes it's contents into the LuaBot framework and produces a big Lua script for you.

    -

    All you need to do is enter Lua code for the specific functions and the code will generate the script.

    -


    -

    You can also save and load the contents of the front-end. That way you can easily manage your bot scripts, without actually having to look into the LuaBot code.

    -


    -

    BeeBee is only a pasting mechanism. It does not compile Lua or warn for errors.

    -


    -

    LuaBot

    -


    -

    LuaBot is a generic trial-and-error script that serves as a bot framework. It will set inputs as you program them for a number of frames (called an attempt). When the isAttemptEnd() says the attempt ends, a new attempt is started. All the attempts fall under one segment. At the end of a segment (denoted by the isSegmentEnd() function), the best attempt is kept (judged by the score and tie functions) and the next segment is started. The bot is capable of rolling back if a segment runs into a dead end. This allows you to backtrack and restart a previous segment.

    -


    -

    The bot evaluates a true or false by checking to see whether the return value of a function is bigger then a certain value. It does this for EVERY function that returns something and every function that returns something must return a number (or Lua _will_ complain). For absolute true or false you can return "yes" and "no", "maxvalue" and "minvalue" or "pressed" and "released". Read variable info for more information.

    -


    -

    The script takes a number of variables and functions into account. Some variables become important to prevent desyncing over segments.

    -


    -

    - maxvalue

    -

    The maximum value (exclusive) of the random evaluation. If a value is higher than rand(minvalue, maxvalue), it evaluates as true, else false. By default this is set to 100.

    -


    -

    - minvalue

    -

    The lowest value (inclusive) of the random evaluation. If a value is lower than rand(minvalue, maxvalue), it evaluates to false, else true. By default this is set to 0.

    -


    -

    - yes / no

    -

    - pressed / released

    -

    These map to the minvalue/maxvalue.

    -


    -

    - loopcounter

    -

    The number of times a frameadvance has been called by the main botloop.

    -


    -

    - key1 key2 key3 key4

    -

    The input table of players 1-4. The keys are: A B up down left right select start. Set any to 1 if you want them to be set and to nil if you don't want them set.

    -

    Note that these get cleared right before onInputStart is called. This variable is saved in a pseudo-movie table if the attempt is better then the previous one and used for playback when moving to the next segment.

    -


    -

    - lastkey1 lastkey2 lastkey3 lastkey4

    -

    The inputs that were given to FCEU on the PREVIOUS frame. This holds for segments as well (at the beginning of a new segment, the lastkeys of the previous segment are set). This also goes for the start. If you use key1-4 in onStart, the first segment will have those keys as lastkey.

    -


    -

    - frame

    -

    The number of frames of the current attempt. Starts at 1.

    -


    -

    - attempt

    -

    The number of attempts in the current segment. Starts at 1.

    -


    -

    - segment

    -

    The segment the bot is currently running. Note that rolledback segments are deducted from this number.

    -


    -

    - okattempts

    -

    The number of attempts that have been deemed ok. This is a statistical variable. It might tell you how well your bot is doing (combined with the number of failed attempts).

    -


    -

    - failattempts

    -

    The number of attempts in the current segment that have been deemed bad. This is a statistical variable. It might tell you how well your bot is doing (combined with the number of approved attempts).

    -


    -

    - segments

    -

    This is the big table that holds everything together. Don't mess with it.

    -


    -

    - maxframes

    -

    You can set maxframes and check it in the isAttemptEnd function to simply limit a attempt by this many frames. You can also just ignore this and do something else instead.

    -


    -

    - maxattempts

    -

    Same as maxframes, except for attempts in a segment.

    -


    -

    - maxsegments

    -

    Same as maxframes, except for segments in a run.

    -


    -

    - playingbest

    -

    Will be set to true when the bot is playing back it's best attempt to advance to the next segment. Not really used by other functions.

    -


    -

    - keyrecording1-4

    -

    A simple table with the pressed keys for playback.

    -


    -

    - X Y Z P Q

    -

    Some "static" variables. These allow you to easily set them onStart and use them in various functions to return the same number. Like a global variable. The P and Q numbers used to denote a random number between 0 and P or Q, but they don't right now.

    -


    -

    - vars

    -

    This is your variable table. It's contents is saved at the end of an attempt and will be loaded at the beginning of a segment. On rollback, this table is also kept. Put any variable you want to keep across segments in this table.

    -


    -


    -

    Ok. That's it for the variables. Now for functions. There are basically three types of functions. The functions that determine whether a button is pressed (8 for each player), to determine whether an attempt/segment/run has ended or was ok and functions for certain events. This number is not evaluated by the random-eval function.

    -


    -

    - getScore

    -

    This returns how "well" the current attempt is. At the end of a segment, the best scoring good attempt will be used to continue to the next segment. In case of a tie, see the tie functions. This number is not evaluated by the random-eval function!

    -


    -

    - getTie1-4

    -

    If the score ends in a tie, that is, two attempts score equally well (have an equal number of points for instance), you can use these functions to break that tie. Like, which attempt has the most health or is the fastest or whatever. This number is not evaluated by the random-eval function!

    -


    -

    - isRunEnd

    -

    Return whether the bot should stop running. If the returned number is bigger then the random number rand(minvalue-maxvalue), the bot will stop.

    -


    -

    - mustRollBack

    -

    Returns whether the bot should rollback the current attempt. In such case, the previous segment is loaded and the current segment is completely discarded. If the returned number is bigger then the random number rand(minvalue-maxvalue), the segment will rollback one segment.

    -


    -

    - isSegmentEnd

    -

    If the returned number is bigger then the random number rand(minvalue-maxvalue), the bot will stop the current segment, play back the best recorded attempt and start a new segment. Mostly done when a certain number of attempts is reached, but possibly you know when have the best possible attempt and can move on.

    -


    -

    - isAttemptEnd

    -

    If the returned number is bigger then the random number rand(minvalue-maxvalue), the attempt will stop and a new attempt will be started. Some examples when this function should return yes is when you reached a certain goal, a number of frames or when you died (in which case the bot should try again :).

    -


    -

    - isAttemptOk

    -

    If the returned number is bigger then the random number rand(minvalue-maxvalue), the current attempt (which has just ended) is deemed ok. Only attempts that are deemed ok are up for being saved. For instance, when the player died in the current attempt, you should return no.

    -


    -

    - pressKeyX (pressKeyA1, pressKeyStart4, etc...)

    -

    These functions determine whether a button should be pressed in the next frame. If the returned number is bigger then the random number rand(minvalue-maxvalue), the button is pressed, otherwise it is not. To absolutely press a button, simply return yes or no. To use some odds, return a number between minvalue and maxvalue. For instance, using the default settings, if you return 50, there is a 50% chance the button will be pressed.

    -


    -

    - onStart

    -

    Maybe a little misleading, but the onStart function is called BEFORE the main botloop starts. You can do some non-generic startup stuff here like press start at the title screen and get the game started. Returns nothing.

    -


    -

    - onFinish

    -

    The opposite to onStart, this function is called when the main botloop exits. You can cleanup, or write stuff or whatever.

    -


    -

    - onSegmentStart

    -

    When a new segment is started, this is called. After initializing variables and such, but before onAttemptStart is called. Returns nothing.

    -


    -

    - onSegmentEnd

    -

    When isSegmentEnd evaluates to true, this function is called. Returns nothing.

    -


    -

    - onAttemptStart

    -

    Called at the start of a new attempt, after onSegmentStart (in case of a new segment) but before onInputStart. Returns nothing.

    -


    -

    - onAttemptEnd(wasOk)

    -

    Called at the end of an attempt. The only function to have a parameter (note: case sensitive). The parameter wasOk will return (boolean) whether isAttemptOk evaluated to true or false. Returns nothing.

    -


    -

    - onInputStart

    -

    In a frame, this is the first place where the key1-4 variables are cleared. This is called before all the input (pressKeyX) functions are called. Returns nothing.

    -


    -

    - onInputEnd

    -

    This is called immediately after the input (pressKeyX) functions have been called. Returns nothing.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Lua Bot

    + +
    + +

    +

    LuaBot

    +


    +

    LuaBot employs a new concept in FCEUX Tool creation.  It is an external lua script that creates the Basic bot GUI.  The GUI then uses lua scripting to perform botting tasks.

    +


    +

    To run it you must have lua scripting enabled (see Getting Started).  LuaBot is included in the lua pack under /luaScripts.  to get started run  luabot_framework.lua.

    +


    +

    What is Lua Bot?

    +

    LuaBot is...well, a bot. It uses a combination of probability, scripting and RAM monitoring to play games.  Specifically  basic bot is used to create portions of Tool Assisted Speedrun.   It is most powerful for finding solutions in highly random situations, or highly improbably events (such as manipulating a critical hit in an RPG).  Basic bot comes with a rather powerful scripting language in order to be "programmed" to handle these specific situations.  LuaBot in its most extreme application can even be "taught" to play video games!

    +


    +


    +

    How to Use Lua Bot

    +


    +

    LuaBot is a trial and error script that exhausts the input-search-space by simply trying to push buttons. 

    +


    +

    You can program it to limit this searchspace, as it can become exponentially large. You can press eight possible buttons at any frame, each on or off. That's 2 raised to the 8, or 256 possible combinations in that one frame. There are 60 frames in one second, so you have 256 raised to the power of 60. Write a three. Now start writing 144 zeroes after it. It's not a small number.

    +


    +

    Anyways, the bot has two parts. The frontend, which we'll call BeeBee, and the Lua part, which we call LuaBot.

    +


    +

    You start the bot by opening the LuaBot_front.lua script file. Make sure the LuaBot_backend.lua file is in the same directory.

    +


    +

    BeeBee

    +


    +

    BeeBee (who received it's name from BasicBot, its predecessor) just writes it's contents into the LuaBot framework and produces a big Lua script for you.

    +

    All you need to do is enter Lua code for the specific functions and the code will generate the script.

    +


    +

    You can also save and load the contents of the front-end. That way you can easily manage your bot scripts, without actually having to look into the LuaBot code.

    +


    +

    BeeBee is only a pasting mechanism. It does not compile Lua or warn for errors.

    +


    +

    LuaBot

    +


    +

    LuaBot is a generic trial-and-error script that serves as a bot framework. It will set inputs as you program them for a number of frames (called an attempt). When the isAttemptEnd() says the attempt ends, a new attempt is started. All the attempts fall under one segment. At the end of a segment (denoted by the isSegmentEnd() function), the best attempt is kept (judged by the score and tie functions) and the next segment is started. The bot is capable of rolling back if a segment runs into a dead end. This allows you to backtrack and restart a previous segment.

    +


    +

    The bot evaluates a true or false by checking to see whether the return value of a function is bigger then a certain value. It does this for EVERY function that returns something and every function that returns something must return a number (or Lua _will_ complain). For absolute true or false you can return "yes" and "no", "maxvalue" and "minvalue" or "pressed" and "released". Read variable info for more information.

    +


    +

    The script takes a number of variables and functions into account. Some variables become important to prevent desyncing over segments.

    +


    +

    - maxvalue

    +

    The maximum value (exclusive) of the random evaluation. If a value is higher than rand(minvalue, maxvalue), it evaluates as true, else false. By default this is set to 100.

    +


    +

    - minvalue

    +

    The lowest value (inclusive) of the random evaluation. If a value is lower than rand(minvalue, maxvalue), it evaluates to false, else true. By default this is set to 0.

    +


    +

    - yes / no

    +

    - pressed / released

    +

    These map to the minvalue/maxvalue.

    +


    +

    - loopcounter

    +

    The number of times a frameadvance has been called by the main botloop.

    +


    +

    - key1 key2 key3 key4

    +

    The input table of players 1-4. The keys are: A B up down left right select start. Set any to 1 if you want them to be set and to nil if you don't want them set.

    +

    Note that these get cleared right before onInputStart is called. This variable is saved in a pseudo-movie table if the attempt is better then the previous one and used for playback when moving to the next segment.

    +


    +

    - lastkey1 lastkey2 lastkey3 lastkey4

    +

    The inputs that were given to FCEU on the PREVIOUS frame. This holds for segments as well (at the beginning of a new segment, the lastkeys of the previous segment are set). This also goes for the start. If you use key1-4 in onStart, the first segment will have those keys as lastkey.

    +


    +

    - frame

    +

    The number of frames of the current attempt. Starts at 1.

    +


    +

    - attempt

    +

    The number of attempts in the current segment. Starts at 1.

    +


    +

    - segment

    +

    The segment the bot is currently running. Note that rolledback segments are deducted from this number.

    +


    +

    - okattempts

    +

    The number of attempts that have been deemed ok. This is a statistical variable. It might tell you how well your bot is doing (combined with the number of failed attempts).

    +


    +

    - failattempts

    +

    The number of attempts in the current segment that have been deemed bad. This is a statistical variable. It might tell you how well your bot is doing (combined with the number of approved attempts).

    +


    +

    - segments

    +

    This is the big table that holds everything together. Don't mess with it.

    +


    +

    - maxframes

    +

    You can set maxframes and check it in the isAttemptEnd function to simply limit a attempt by this many frames. You can also just ignore this and do something else instead.

    +


    +

    - maxattempts

    +

    Same as maxframes, except for attempts in a segment.

    +


    +

    - maxsegments

    +

    Same as maxframes, except for segments in a run.

    +


    +

    - playingbest

    +

    Will be set to true when the bot is playing back it's best attempt to advance to the next segment. Not really used by other functions.

    +


    +

    - keyrecording1-4

    +

    A simple table with the pressed keys for playback.

    +


    +

    - X Y Z P Q

    +

    Some "static" variables. These allow you to easily set them onStart and use them in various functions to return the same number. Like a global variable. The P and Q numbers used to denote a random number between 0 and P or Q, but they don't right now.

    +


    +

    - vars

    +

    This is your variable table. It's contents is saved at the end of an attempt and will be loaded at the beginning of a segment. On rollback, this table is also kept. Put any variable you want to keep across segments in this table.

    +


    +


    +

    Ok. That's it for the variables. Now for functions. There are basically three types of functions. The functions that determine whether a button is pressed (8 for each player), to determine whether an attempt/segment/run has ended or was ok and functions for certain events. This number is not evaluated by the random-eval function.

    +


    +

    - getScore

    +

    This returns how "well" the current attempt is. At the end of a segment, the best scoring good attempt will be used to continue to the next segment. In case of a tie, see the tie functions. This number is not evaluated by the random-eval function!

    +


    +

    - getTie1-4

    +

    If the score ends in a tie, that is, two attempts score equally well (have an equal number of points for instance), you can use these functions to break that tie. Like, which attempt has the most health or is the fastest or whatever. This number is not evaluated by the random-eval function!

    +


    +

    - isRunEnd

    +

    Return whether the bot should stop running. If the returned number is bigger then the random number rand(minvalue-maxvalue), the bot will stop.

    +


    +

    - mustRollBack

    +

    Returns whether the bot should rollback the current attempt. In such case, the previous segment is loaded and the current segment is completely discarded. If the returned number is bigger then the random number rand(minvalue-maxvalue), the segment will rollback one segment.

    +


    +

    - isSegmentEnd

    +

    If the returned number is bigger then the random number rand(minvalue-maxvalue), the bot will stop the current segment, play back the best recorded attempt and start a new segment. Mostly done when a certain number of attempts is reached, but possibly you know when have the best possible attempt and can move on.

    +


    +

    - isAttemptEnd

    +

    If the returned number is bigger then the random number rand(minvalue-maxvalue), the attempt will stop and a new attempt will be started. Some examples when this function should return yes is when you reached a certain goal, a number of frames or when you died (in which case the bot should try again :).

    +


    +

    - isAttemptOk

    +

    If the returned number is bigger then the random number rand(minvalue-maxvalue), the current attempt (which has just ended) is deemed ok. Only attempts that are deemed ok are up for being saved. For instance, when the player died in the current attempt, you should return no.

    +


    +

    - pressKeyX (pressKeyA1, pressKeyStart4, etc...)

    +

    These functions determine whether a button should be pressed in the next frame. If the returned number is bigger then the random number rand(minvalue-maxvalue), the button is pressed, otherwise it is not. To absolutely press a button, simply return yes or no. To use some odds, return a number between minvalue and maxvalue. For instance, using the default settings, if you return 50, there is a 50% chance the button will be pressed.

    +


    +

    - onStart

    +

    Maybe a little misleading, but the onStart function is called BEFORE the main botloop starts. You can do some non-generic startup stuff here like press start at the title screen and get the game started. Returns nothing.

    +


    +

    - onFinish

    +

    The opposite to onStart, this function is called when the main botloop exits. You can cleanup, or write stuff or whatever.

    +


    +

    - onSegmentStart

    +

    When a new segment is started, this is called. After initializing variables and such, but before onAttemptStart is called. Returns nothing.

    +


    +

    - onSegmentEnd

    +

    When isSegmentEnd evaluates to true, this function is called. Returns nothing.

    +


    +

    - onAttemptStart

    +

    Called at the start of a new attempt, after onSegmentStart (in case of a new segment) but before onInputStart. Returns nothing.

    +


    +

    - onAttemptEnd(wasOk)

    +

    Called at the end of an attempt. The only function to have a parameter (note: case sensitive). The parameter wasOk will return (boolean) whether isAttemptOk evaluated to true or false. Returns nothing.

    +


    +

    - onInputStart

    +

    In a frame, this is the first place where the key1-4 variables are cleared. This is called before all the input (pressKeyX) functions are called. Returns nothing.

    +


    +

    - onInputEnd

    +

    This is called immediately after the input (pressKeyX) functions have been called. Returns nothing.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create PDF Help documents

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/LuaFunctionsList.html b/web/help/LuaFunctionsList.html index 120bb3e8..223d8d23 100644 --- a/web/help/LuaFunctionsList.html +++ b/web/help/LuaFunctionsList.html @@ -1,871 +1,1027 @@ - + + + + - Lua Functions List - - - - - - - - - - + + + + + + + + Lua Functions List + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Lua Functions List

    - -
    - Lua Scripting ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Lua Functions List

    + +
    +

    -

    Lua Functions

    -


    -

    The following functions are available in FCEUX, in addition to standard LUA capabilities:

    -


    -


    -

    Emu library

    -


    -

    emu.poweron()

    -


    -

    Executes a power cycle.

    -


    -

    emu.softreset()

    -


    -

    Executes a (soft) reset.

    -


    -

    emu.speedmode(string mode)

    -


    -

    Set the emulator to given speed. The mode argument can be one of these:

    -

           - "normal"

    -

           - "nothrottle" (same as turbo on fceux)

    -

           - "turbo"

    -

           - "maximum"

    -


    -

    emu.frameadvance()

    -


    -

    Advance the emulator by one frame. It's like pressing the frame advance button once.

    -


    -

    Most scripts use this function in their main game loop to advance frames. Note that you can also register functions by various methods that run "dead", returning control to the emulator and letting the emulator advance the frame.  For most people, using frame advance in an endless while loop is easier to comprehend so I suggest  starting with that.  This makes more sense when creating bots. Once you move to creating auxillary libraries, try the register() methods.

    -


    -

    emu.pause()

    -


    -

    Pauses the emulator.

    -


    -

    emu.unpause()

    -


    -

    Unpauses the emulator.

    -


    -

    emu.exec_count(int count, function func)

    -


    -

    Calls given function, restricting its working time to given number of lua cycles. Using this method you can ensure that some heavy operation (like Lua bot) won't freeze FCEUX.

    -


    -

    emu.exec_time(int time, function func)

    -


    -

    Windows-only. Calls given function, restricting its working time to given number of milliseconds (approximate). Using this method you can ensure that some heavy operation (like Lua bot) won't freeze FCEUX.

    -


    -

    emu.setrenderplanes(bool sprites, bool background)

    -


    -

    Toggles the drawing of the sprites and background planes. Set to false or nil to disable a pane, anything else will draw them.

    -


    -

    emu.message(string message)

    -


    -

    Displays given message on screen in the standard messages position. Use gui.text() when you need to position text.

    -


    -

    int emu.framecount()

    -


    -

    Returns the framecount value. The frame counter runs without a movie running so this always returns a value.

    -


    -

    int emu.lagcount()

    -


    -

    Returns the number of lag frames encountered. Lag frames are frames where the game did not poll for input because it missed the vblank. This happens when it has to compute too much within the frame boundary. This returns the number indicated on the lag counter.

    -


    -

    bool emu.lagged()

    -


    -

    Returns true if currently in a lagframe, false otherwise.

    -


    -

    emu.setlagflag(bool value)

    -


    -

    Sets current value of lag flag.

    -

    Some games poll input even in lag frames, so standard way of detecting lag (used by FCEUX and other emulators) does not work for those games, and you have to determine lag frames manually.

    -

    First, find RAM addresses that help you distinguish between lag and non-lag frames (e.g. an in-game frame counter that only increments in non-lag frames). Then register memory hooks that will change lag flag when needed.

    -


    -

    bool emu.emulating()

    -


    -

    Returns true if emulation has started, or false otherwise. Certain operations such as using savestates are invalid to attempt before emulation has started. You probably won't need to use this function unless you want to make your script extra-robust to being started too early.

    -


    -

    bool emu.paused()

    -


    -

    Returns true if emulator is paused, false otherwise.

    -


    -

    bool emu.readonly()

    -

    Alias: movie.readonly

    -


    -

    Returns whether the emulator is in read-only state.  

    -


    -

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    -


    -

    emu.setreadonly(bool state)

    -

    Alias: movie.setreadonly

    -


    -

    Sets the read-only status to read-only if argument is true and read+write if false.

    -

    Note: This might result in an error if the medium of the movie file is not writeable (such as in an archive file).

    -


    -

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    -


    -

    emu.getdir()

    -


    -

    Returns the path of fceux.exe as a string.

    -


    -

    emu.loadrom(string filename)

    -


    -

    Loads the ROM from the directory relative to the lua script or from the absolute path. Hence, the filename parameter can be absolute or relative path.

    -


    -

    If the ROM can't be loaded, loads the most recent one.

    -


    -

    emu.registerbefore(function func)

    -


    -

    Registers a callback function to run immediately before each frame gets emulated. This runs after the next frame's input is known but before it's used, so this is your only chance to set the next frame's input using the next frame's would-be input. For example, if you want to make a script that filters or modifies ongoing user input, such as making the game think "left" is pressed whenever you press "right", you can do it easily with this.

    -


    -

    Note that this is not quite the same as code that's placed before a call to emu.frameadvance. This callback runs a little later than that. Also, you cannot safely assume that this will only be called once per frame. Depending on the emulator's options, every frame may be simulated multiple times and your callback will be called once per simulation. If for some reason you need to use this callback to keep track of a stateful linear progression of things across frames then you may need to key your calculations to the results of emu.framecount.

    -


    -

    Like other callback-registering functions provided by FCEUX, there is only one registered callback at a time per registering function per script. If you register two callbacks, the second one will replace the first, and the call to emu.registerbefore will return the old callback. You may register nil instead of a function to clear a previously-registered callback. If a script returns while it still has registered callbacks, FCEUX will keep it alive to call those callbacks when appropriate, until either the script is stopped by the user or all of the callbacks are de-registered.

    -


    -

    emu.registerafter(function func)

    -


    -

    Registers a callback function to run immediately after each frame gets emulated. It runs at a similar time as (and slightly before) gui.register callbacks, except unlike with gui.register it doesn't also get called again whenever the screen gets redrawn. Similar caveats as those mentioned in emu.registerbefore apply.

    -


    -

    emu.registerexit(function func)

    -


    -

    Registers a callback function that runs when the script stops. Whether the script stops on its own or the user tells it to stop, or even if the script crashes or the user tries to close the emulator, FCEUX will try to run whatever Lua code you put in here first. So if you want to make sure some code runs that cleans up some external resources or saves your progress to a file or just says some last words, you could put it here. (Of course, a forceful termination of the application or a crash from inside the registered exit function will still prevent the code from running.)

    -


    -

    Suppose you write a script that registers an exit function and then enters an infinite loop. If the user clicks "Stop" your script will be forcefully stopped, but then it will start running its exit function. If your exit function enters an infinite loop too, then the user will have to click "Stop" a second time to really stop your script. That would be annoying. So try to avoid doing too much inside the exit function.

    -


    -

    Note that restarting a script counts as stopping it and then starting it again, so doing so (either by clicking "Restart" or by editing the script while it is running) will trigger the callback. Note also that returning from a script generally does NOT count as stopping (because your script is still running or waiting to run its callback functions and thus does not stop... see here for more information), even if the exit callback is the only one you have registered.

    -


    -

    bool emu.addgamegenie(string str)

    -


    -

    Adds a Game Genie code to the Cheats menu. Returns false and an error message if the code can't be decoded. Returns false if the code couldn't be added. Returns true if the code already existed, or if it was added.

    -


    -

    Usage: emu.addgamegenie("NUTANT")

    -


    -

    Note that the Cheats Dialog Box won't show the code unless you close and reopen it.

    -


    -

    bool emu.delgamegenie(string str)

    -


    -

    Removes a Game Genie code from the Cheats menu. Returns false and an error message if the code can't be decoded. Returns false if the code couldn't be deleted. Returns true if the code didn't exist, or if it was deleted.

    -


    -

    Usage: emu.delgamegenie("NUTANT")

    -


    -

    Note that the Cheats Dialog Box won't show the code unless you close and reopen it.

    -


    -

    emu.print(string str)

    -


    -

    Puts a message into the Output Console area of the Lua Script control window. Useful for displaying usage instructions to the user when a script gets run.

    -


    -

    emu.getscreenpixel(int x, int y, bool getemuscreen)

    -


    -

    Returns the separate RGB components of the given screen pixel, and the palette. Can be 0-255 by 0-239, but NTSC only displays 0-255 x 8-231 of it. If getemuscreen is false, this gets background colors from either the screen pixel or the LUA pixels set, but LUA data may not match the information used to put the data to the screen. If getemuscreen is true, this gets background colors from anything behind an LUA screen element.

    -


    -

    Usage is local r,g,b,palette = emu.getscreenpixel(5, 5, false) to retrieve the current red/green/blue colors and palette value of the pixel at 5x5.

    -


    -

    Palette value can be 0-63, or 254 if there was an error.

    -


    -

    You can avoid getting LUA data by putting the data into a function, and feeding the function name to emu.registerbefore.

    -


    -


    -

    FCEU library

    -


    -

    The FCEU library is the same as the emu library. It is left in for backwards compatibility. However, the emu library is preferred.

    -


    -


    -

    ROM Library

    -


    -

    rom.getfilename()

    -


    -

    Get the base filename of the ROM loaded.

    -


    -

    rom.gethash(string type)

    -


    -

    Get a hash of the ROM loaded, for verification. If type is "md5", returns a hex string of the MD5 hash. If type is "base64", returns a base64 string of the MD5 hash, just like the movie romChecksum value.

    -


    -

    rom.readbyte(int address)

    -

    rom.readbyteunsigned(int address)

    -


    -

    Get an unsigned byte from the actual ROM file at the given address.  

    -


    -

    This includes the header! It's the same as opening the file in a hex-editor.

    -


    -

    rom.readbytesigned(int address)

    -


    -

    Get a signed byte from the actual ROM file at the given address. Returns a byte that is signed.

    -


    -

    This includes the header! It's the same as opening the file in a hex-editor.

    -


    -

    rom.writebyte()

    -


    -

    Write the value to the ROM at the given address. The value is modded with 256 before writing (so writing 257 will actually write 1). Negative values allowed.

    -


    -

    Editing the header is not available.

    -


    -

    Memory Library

    -


    -

    memory.readbyte(int address)

    -

    memory.readbyteunsigned(int address)

    -


    -

    Get an unsigned byte from the RAM at the given address. Returns a byte regardless of emulator. The byte will always be positive.

    -


    -

    memory.readbyterange(int address, int length)

    -


    -

    Get a length bytes starting at the given address and return it as a string. Convert to table to access the individual bytes.

    -


    -

    memory.readbytesigned(int address)

    -


    -

    Get a signed byte from the RAM at the given address. Returns a byte regardless of emulator. The most significant bit will serve as the sign.

    -


    -

    memory.readword(int addressLow, [int addressHigh])

    -

    memory.readwordunsigned(int addressLow, [int addressHigh])

    -


    -

    Get an unsigned word from the RAM at the given address. Returns a 16-bit value regardless of emulator. The value will always be positive.

    -

    If you only provide a single parameter (addressLow), the function treats it as address of little-endian word. if you provide two parameters, the function reads the low byte from addressLow and the high byte from addressHigh, so you can use it in games which like to store their variables in separate form (a lot of NES games do).

    -


    -

    memory.readwordsigned(int addressLow, [int addressHigh])

    -


    -

    The same as above, except the returned value is signed, i.e. its most significant bit will serve as the sign.

    -


    -

    memory.writebyte(int address, int value)

    -


    -

    Write the value to the RAM at the given address. The value is modded with 256 before writing (so writing 257 will actually write 1). Negative values allowed.

    -


    -

    int memory.getregister(cpuregistername)

    -


    -

    Returns the current value of the given hardware register.

    -

    For example, memory.getregister("pc") will return the main CPU's current Program Counter.

    -


    -

    Valid registers are: "a", "x", "y", "s", "p", and "pc".

    -


    -

    memory.setregister(string cpuregistername, int value)

    -


    -

    Sets the current value of the given hardware register.

    -

    For example, memory.setregister("pc",0x200) will change the main CPU's current Program Counter to 0x200.

    -


    -

    Valid registers are: "a", "x", "y", "s", "p", and "pc".

    -


    -

    You had better know exactly what you're doing or you're probably just going to crash the game if you try to use this function. That applies to the other memory.write functions as well, but to a lesser extent.

    -

    -

    -

    memory.register(int address, [int size,] function func)

    -

    memory.registerwrite(int address, [int size,] function func)

    -


    -

    Registers a function to be called immediately whenever the given memory address range is written to.

    -


    -

    address is the address in CPU address space (0x0000 - 0xFFFF).

    -


    -

    size is the number of bytes to "watch". For example, if size is 100 and address is 0x0200, then you will register the function across all 100 bytes from 0x0200 to 0x0263. A write to any of those bytes will trigger the function. Having callbacks on a large range of memory addresses can be expensive, so try to use the smallest range that's necessary for whatever it is you're trying to do. If you don't specify any size then it defaults to 1.

    -


    -

    The callback function will receive three arguments (address, size, value) indicating what write operation triggered the callback. If you don't care about that extra information then you can ignore it and define your callback function to not take any arguments. Since 6502 writes are always single byte, the "size" argument will always be 1.

    -


    -

    You may use a memory.write function from inside the callback to change the value that just got written. However, keep in mind that doing so will trigger your callback again, so you must have a "base case" such as checking to make sure that the value is not already what you want it to be before writing it. Another, more drastic option is to de-register the current callback before performing the write.

    -


    -

    If func is nil that means to de-register any memory write callbacks that the current script has already registered on the given range of bytes.

    -


    -

    memory.registerexec(int address, [int size,] function func)

    -

    memory.registerrun(int address, [int size,] function func)

    -

    memory.registerexecute(int address, [int size,] function func)

    -


    -

    Registers a function to be called immediately whenever the emulated system runs code located in the given memory address range.

    -


    -

    Since "address" is the address in CPU address space (0x0000 - 0xFFFF), this doesn't take ROM banking into account, so the callback will be called for any bank, and in some cases you'll have to check current bank in your callback function.

    -


    -

    The information about memory.register applies to this function as well. The callback will receive the same three arguments, though the "value" argument will always be 0.

    -


    -
    - - - +

    Lua Functions

    +


    +

    The following functions are available in FCEUX, in addition to standard LUA capabilities:

    +


    +


    +

    Emu library

    +


    +

    emu.poweron()

    +


    +

    Executes a power cycle.

    +


    +

    emu.softreset()

    +


    +

    Executes a (soft) reset.

    +


    +

    emu.speedmode(string mode)

    +


    +

    Set the emulator to given speed. The mode argument can be one of these:

    +

           - "normal"

    +

           - "nothrottle" (same as turbo on fceux)

    +

           - "turbo"

    +

           - "maximum"

    +


    +

    emu.frameadvance()

    +


    +

    Advance the emulator by one frame. It's like pressing the frame advance button once.

    +


    +

    Most scripts use this function in their main game loop to advance frames. Note that you can also register functions by various methods that run "dead", returning control to the emulator and letting the emulator advance the frame.  For most people, using frame advance in an endless while loop is easier to comprehend so I suggest  starting with that.  This makes more sense when creating bots. Once you move to creating auxillary libraries, try the register() methods.

    +


    +

    emu.pause()

    +


    +

    Pauses the emulator.

    +


    +

    emu.unpause()

    +


    +

    Unpauses the emulator.

    +


    +

    emu.exec_count(int count, function func)

    +


    +

    Calls given function, restricting its working time to given number of lua cycles. Using this method you can ensure that some heavy operation (like Lua bot) won't freeze FCEUX.

    +


    +

    emu.exec_time(int time, function func)

    +


    +

    Windows-only. Calls given function, restricting its working time to given number of milliseconds (approximate). Using this method you can ensure that some heavy operation (like Lua bot) won't freeze FCEUX.

    +


    +

    emu.setrenderplanes(bool sprites, bool background)

    +


    +

    Toggles the drawing of the sprites and background planes. Set to false or nil to disable a pane, anything else will draw them.

    +


    +

    emu.message(string message)

    +


    +

    Displays given message on screen in the standard messages position. Use gui.text() when you need to position text.

    +


    +

    int emu.framecount()

    +


    +

    Returns the framecount value. The frame counter runs without a movie running so this always returns a value.

    +


    +

    int emu.lagcount()

    +


    +

    Returns the number of lag frames encountered. Lag frames are frames where the game did not poll for input because it missed the vblank. This happens when it has to compute too much within the frame boundary. This returns the number indicated on the lag counter.

    +


    +

    bool emu.lagged()

    +


    +

    Returns true if currently in a lagframe, false otherwise.

    +


    +

    emu.setlagflag(bool value)

    +


    +

    Sets current value of lag flag.

    +

    Some games poll input even in lag frames, so standard way of detecting lag (used by FCEUX and other emulators) does not work for those games, and you have to determine lag frames manually.

    +

    First, find RAM addresses that help you distinguish between lag and non-lag frames (e.g. an in-game frame counter that only increments in non-lag frames). Then register memory hooks that will change lag flag when needed.

    +


    +

    bool emu.emulating()

    +


    +

    Returns true if emulation has started, or false otherwise. Certain operations such as using savestates are invalid to attempt before emulation has started. You probably won't need to use this function unless you want to make your script extra-robust to being started too early.

    +


    +

    bool emu.paused()

    +


    +

    Returns true if emulator is paused, false otherwise.

    +


    +

    bool emu.readonly()

    +

    Alias: movie.readonly

    +


    +

    Returns whether the emulator is in read-only state.  

    +


    +

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    +


    +

    emu.setreadonly(bool state)

    +

    Alias: movie.setreadonly

    +


    +

    Sets the read-only status to read-only if argument is true and read+write if false.

    +

    Note: This might result in an error if the medium of the movie file is not writeable (such as in an archive file).

    +


    +

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    +


    +

    emu.getdir()

    +


    +

    Returns the path of fceux.exe as a string.

    +


    +

    emu.loadrom(string filename)

    +


    +

    Loads the ROM from the directory relative to the lua script or from the absolute path. Hence, the filename parameter can be absolute or relative path.

    +


    +

    If the ROM can't e loaded, loads the most recent one.

    +


    +

    emu.registerbefore(function func)

    +


    +

    Registers a callback function to run immediately before each frame gets emulated. This runs after the next frame's input is known but before it's used, so this is your only chance to set the next frame's input using the next frame's would-be input. For example, if you want to make a script that filters or modifies ongoing user input, such as making the game think "left" is pressed whenever you press "right", you can do it easily with this.

    +


    +

    Note that this is not quite the same as code that's placed before a call to emu.frameadvance. This callback runs a little later than that. Also, you cannot safely assume that this will only be called once per frame. Depending on the emulator's options, every frame may be simulated multiple times and your callback will be called once per simulation. If for some reason you need to use this callback to keep track of a stateful linear progression of things across frames then you may need to key your calculations to the results of emu.framecount.

    +


    +

    Like other callback-registering functions provided by FCEUX, there is only one registered callback at a time per registering function per script. If you register two callbacks, the second one will replace the first, and the call to emu.registerbefore will return the old callback. You may register nil instead of a function to clear a previously-registered callback. If a script returns while it still has registered callbacks, FCEUX will keep it alive to call those callbacks when appropriate, until either the script is stopped by the user or all of the callbacks are de-registered.

    +


    +

    emu.registerafter(function func)

    +


    +

    Registers a callback function to run immediately after each frame gets emulated. It runs at a similar time as (and slightly before) gui.register callbacks, except unlike with gui.register it doesn't also get called again whenever the screen gets redrawn. Similar caveats as those mentioned in emu.registerbefore apply.

    +


    +

    emu.registerexit(function func)

    +


    +

    Registers a callback function that runs when the script stops. Whether the script stops on its own or the user tells it to stop, or even if the script crashes or the user tries to close the emulator, FCEUX will try to run whatever Lua code you put in here first. So if you want to make sure some code runs that cleans up some external resources or saves your progress to a file or just says some last words, you could put it here. (Of course, a forceful termination of the application or a crash from inside the registered exit function will still prevent the code from running.)

    +


    +

    Suppose you write a script that registers an exit function and then enters an infinite loop. If the user clicks "Stop" your script will be forcefully stopped, but then it will start running its exit function. If your exit function enters an infinite loop too, then the user will have to click "Stop" a second time to really stop your script. That would be annoying. So try to avoid doing too much inside the exit function.

    +


    +

    Note that restarting a script counts as stopping it and then starting it again, so doing so (either by clicking "Restart" or by editing the script while it is running) will trigger the callback. Note also that returning from a script generally does NOT count as stopping (because your script is still running or waiting to run its callback functions and thus does not stop... see here for more information), even if the exit callback is the only one you have registered. 

    +


    +

    bool emu.addgamegenie(string str)

    +


    +

    Adds a Game Genie code to the Cheats menu. Returns false and an error message if the code can't be decoded. Returns false if the code couldn't be added. Returns true if the code already existed, or if it was added.

    +


    +

    Usage: emu.addgamegenie("NUTANT")

    +


    +

    Note that the Cheats Dialog Box won't show the code unless you close and reopen it.

    +


    +

    bool emu.delgamegenie(string str)

    +


    +

    Removes a Game Genie code from the Cheats menu. Returns false and an error message if the code can't be decoded. Returns false if the code couldn't be deleted. Returns true if the code didn't exist, or if it was deleted.

    +


    +

    Usage: emu.delgamegenie("NUTANT")

    +


    +

    Note that the Cheats Dialog Box won't show the code unless you close and reopen it.

    +


    +

    emu.print(string str)

    +


    +

    Puts a message into the Output Console area of the Lua Script control window. Useful for displaying usage instructions to the user when a script gets run.

    +


    +

    emu.getscreenpixel(int x, int y, bool getemuscreen)

    +


    +

    Returns the separate RGB components of the given screen pixel, and the palette. Can be 0-255 by 0-239, but NTSC only displays 0-255 x 8-231 of it. If getemuscreen is false, this gets background colors from either the screen pixel or the LUA pixels set, but LUA data may not match the information used to put the data to the screen. If getemuscreen is true, this gets background colors from anything behind an LUA screen element.

    +


    +

    Usage is local r,g,b,palette = emu.getscreenpixel(5, 5, false) to retrieve the current red/green/blue colors and palette value of the pixel at 5x5.

    +


    +

    Palette value can be 0-63, or 254 if there was an error.

    +


    +

    You can avoid getting LUA data by putting the data into a function, and feeding the function name to emu.registerbefore.

    +


    +


    +

    FCEU library

    +


    +

    The FCEU library is the same as the emu library. It is left in for backwards compatibility. However, the emu library is preferred.

    +


    +


    +

    ROM Library

    +


    +

    rom.readbyte(int address)

    +

    rom.readbyteunsigned(int address)

    +


    +

    Get an unsigned byte from the actual ROM file at the given address.  

    +


    +

    This includes the header! It's the same as opening the file in a hex-editor.

    +


    +

    rom.readbytesigned(int address)

    +


    +

    Get a signed byte from the actual ROM file at the given address. Returns a byte that is signed.

    +


    +

    This includes the header! It's the same as opening the file in a hex-editor.

    +


    +

    rom.writebyte()

    +


    +

    Write the value to the ROM at the given address. The value is modded with 256 before writing (so writing 257 will actually write 1). Negative values allowed.

    +


    +

    Editing the header is not available.

    +


    +

    Memory Library

    +


    +

    memory.readbyte(int address)

    +

    memory.readbyteunsigned(int address)

    +


    +

    Get an unsigned byte from the RAM at the given address. Returns a byte regardless of emulator. The byte will always be positive.

    +


    +

    memory.readbyterange(int address, int length)

    +


    +

    Get a length bytes starting at the given address and return it as a string. Convert to table to access the individual bytes.

    +


    +

    memory.readbytesigned(int address)

    +


    +

    Get a signed byte from the RAM at the given address. Returns a byte regardless of emulator. The most significant bit will serve as the sign.

    +


    +

    memory.readword(int addressLow, [int addressHigh])

    +

    memory.readwordunsigned(int addressLow, [int addressHigh])

    +


    +

    Get an unsigned word from the RAM at the given address. Returns a 16-bit value regardless of emulator. The value will always be positive.

    +

    If you only provide a single parameter (addressLow), the function treats it as address of little-endian word. if you provide two parameters, the function reads the low byte from addressLow and the high byte from addressHigh, so you can use it in games which like to store their variables in separate form (a lot of NES games do).

    +


    +

    memory.readwordsigned(int addressLow, [int addressHigh])

    +


    +

    The same as above, except the returned value is signed, i.e. its most significant bit will serve as the sign.

    +


    +

    memory.writebyte(int address, int value)

    +


    +

    Write the value to the RAM at the given address. The value is modded with 256 before writing (so writing 257 will actually write 1). Negative values allowed.

    +


    +

    int memory.getregister(cpuregistername)

    +


    +

    Returns the current value of the given hardware register.

    +

    For example, memory.getregister("pc") will return the main CPU's current Program Counter.

    +


    +

    Valid registers are: "a", "x", "y", "s", "p", and "pc".

    +


    +

    memory.setregister(string cpuregistername, int value)

    +


    +

    Sets the current value of the given hardware register.

    +

    For example, memory.setregister("pc",0x200) will change the main CPU's current Program Counter to 0x200.

    +


    +

    Valid registers are: "a", "x", "y", "s", "p", and "pc".

    +


    +

    You had better know exactly what you're doing or you're probably just going to crash the game if you try to use this function. That applies to the other memory.write functions as well, but to a lesser extent. 

    +


    +

    memory.register(int address, [int size,] function func)

    +

    memory.registerwrite(int address, [int size,] function func)

    +


    +

    Registers a function to be called immediately whenever the given memory address range is written to.

    +


    +

    address is the address in CPU address space (0x0000 - 0xFFFF).

    +


    +

    size is the number of bytes to "watch". For example, if size is 100 and address is 0x0200, then you will register the function across all 100 bytes from 0x0200 to 0x0263. A write to any of those bytes will trigger the function. Having callbacks on a large range of memory addresses can be expensive, so try to use the smallest range that's necessary for whatever it is you're trying to do. If you don't specify any size then it defaults to 1.

    +


    +

    The callback function will receive two arguments, (address, size) indicating what write operation triggered the callback. If you don't care about that extra information then you can ignore it and define your callback function to not take any arguments. The value that was written is NOT passed into the callback function, but you can easily use any of the memory.read functions to retrieve it.

    +


    +

    You may use a memory.write function from inside the callback to change the value that just got written. However, keep in mind that doing so will trigger your callback again, so you must have a "base case" such as checking to make sure that the value is not already what you want it to be before writing it. Another, more drastic option is to de-register the current callback before performing the write.

    +


    +

    If func is nil that means to de-register any memory write callbacks that the current script has already registered on the given range of bytes.

    +


    +

    memory.registerexec(int address, [int size,] function func)

    +

    memory.registerrun(int address, [int size,] function func)

    +

    memory.registerexecute(int address, [int size,] function func)

    +


    +

    Registers a function to be called immediately whenever the emulated system runs code located in the given memory address range.

    +


    +

    Since "address" is the address in CPU address space (0x0000 - 0xFFFF), this doesn't take ROM banking into account, so the callback will be called for any bank, and in some cases you'll have to check current bank in your callback function.

    +


    +

    The information about memory.register applies to this function as well.

    +


    +
    +

    Example of custom breakpoint:

    -


    -

    function CounterBreak()

    -

    ObjCtr = memory.getregister("y")

    -

    if ObjCtr > 0x16 then

    -

    gui.text(1, 9, string.format("%02X",ObjCtr))

    -

    emu.pause() -- or debugger.hitbreakpoint()

    -

    end

    -

    end

    -

    memory.registerexecute(0x863C, CounterBreak);

    -
    + + +
    +

    Example of custom breakpoint:

    +


    +

    function CounterBreak()

    +

    ObjCtr = memory.getregister("y")

    +

    if ObjCtr > 0x16 then

    +

    gui.text(1, 9, string.format("%02X",ObjCtr))

    +

    emu.pause() -- or debugger.hitbreakpoint()

    +

    end

    +

    end

    +

    memory.registerexecute(0x863C, CounterBreak);

    +
    -


    -


    -

    Debugger Library

    -


    -

    debugger.hitbreakpoint()

    -


    -

    Simulates a breakpoint hit, pauses emulation and brings up the Debugger window. Use this function in your handlers of custom breakpoints.

    -


    -

    int debugger.getcyclescount()

    -


    -

    Returns an integer value representing the number of CPU cycles elapsed since the poweron or since the last reset of the cycles counter.

    -


    -

    int debugger.getinstructionscount()

    -


    -

    Returns an integer value representing the number of CPU instructions executed since the poweron or since the last reset of the instructions counter.

    -


    -

    debugger.resetcyclescount()

    -


    -

    Resets the cycles counter.

    -


    -

    debugger.resetinstructionscount()

    -


    -

    Resets the instructions counter.

    -


    -


    -

    Joypad Library

    -


    -

    table joypad.get(int player)

    -

    table joypad.read(int player)

    -


    -

    Returns a table of every game button, where each entry is true if that button is currently held (as of the last time the emulation checked), or false if it is not held. This takes keyboard inputs, not Lua. The table keys look like this (case sensitive):

    -


    -

    up, down, left, right, A, B, start, select

    -


    -

    Where a Lua truthvalue true means that the button is set, false means the button is unset. Note that only "false" and "nil" are considered a false value by Lua.  Anything else is true, even the number 0.

    -


    -

    joypad.read left in for backwards compatibility with older versions of FCEU/FCEUX.

    -


    -

    table joypad.getimmediate(int player)

    -

    table joypad.readimmediate(int player)

    -


    -

    Returns a table of every game button, where each entry is true if that button is held at the moment of calling the function, or false if it is not held. This function polls keyboard input immediately, allowing Lua to interact with user even when emulator is paused.

    -


    -

    As of FCEUX 2.2.0, the function only works in Windows. In Linux this function will return nil.

    -


    -

    table joypad.getdown(int player)

    -

    table joypad.readdown(int player)

    -


    -

    Returns a table of only the game buttons that are currently held. Each entry is true if that button is currently held (as of the last time the emulation checked), or nil if it is not held.

    -


    -

    table joypad.getup(int player)

    -

    table joypad.readup(int player)

    -


    -

    Returns a table of only the game buttons that are not currently held. Each entry is nil if that button is currently held (as of the last time the emulation checked), or false if it is not held.

    -


    -

    joypad.set(int player, table input)

    -

    joypad.write(int player, table input)

    -


    -

    Set the inputs for the given player. Table keys look like this (case sensitive):

    -


    -

    up, down, left, right, A, B, start, select

    -


    -

    There are 4 possible values: true, false, nil, and "invert".

    -

    true    - Forces the button on

    -

    false   - Forces the button off

    -

    nil     - User's button press goes through unchanged

    -

    "invert"- Reverses the user's button press

    -


    -

    Any string works in place of "invert".  It is suggested as a convention to use "invert" for readability, but strings like "inv", "Weird switchy mechanism", "", or "true or false" works as well as "invert".

    -


    -

    nil and "invert" exists so the script can control individual buttons of the controller without entirely blocking the user from having any control. Perhaps there is a process which can be automated by the script, like an optimal firing pattern, but the user still needs some manual control, such as moving the character around.

    -


    -

    joypad.write left in for backwards compatibility with older versions of FCEU/FCEUX.

    -


    -


    -

    Zapper Library

    -


    -

    table zapper.read()

    -


    -

    Returns the zapper data

    -

    When no movie is loaded this input is the same as the internal mouse input (which is used to generate zapper input, as well as the arkanoid paddle).

    -


    -

    When a movie is playing, it returns the zapper data in the movie code.

    -


    -

    The return table consists of 3 values: x, y, and fire.  x and y are the x,y coordinates of the zapper target in terms of pixels.  fire represents the zapper firing.  0 = not firing, 1 = firing

    -


    -

    zapper.set(table input)

    -


    -

    Sets the zapper input state.

    -


    -

    Taple entries (nil or -1 to leave unaffected):

    -

    x    - Forces the X position

    -

    y    - Forces the Y position

    -

    fire - Forces trigger (true/1 on, false/0 off)

    -


    -


    -

    Note: The zapper is always controller 2 on the NES so there is no player argument to these functions.

    -


    -


    -

    Input Library

    -


    -

    table input.get()

    -

    table input.read()

    -


    -

    Reads input from keyboard and mouse. Returns pressed keys and the position of mouse in pixels on game screen.  The function returns a table with at least two properties; table.xmouse and table.ymouse.  Additionally any of these keys will be set to true if they were held at the time of executing this function:

    -

    leftclick, rightclick, middleclick, capslock, numlock, scrolllock, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, F1, F2, F3, F4, F5, F6,  F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, backspace, tab, enter, shift, control, alt, pause, escape, space, pageup, pagedown, end, home, left, up, right, down, numpad0, numpad1, numpad2, numpad3, numpad4, numpad5, numpad6, numpad7, numpad8, numpad9, numpad*, insert, delete, numpad+, numpad-, numpad., numpad/, semicolon, plus, minus, comma, period, slash, backslash, tilde, quote, leftbracket, rightbracket.

    -


    -

    string input.popup

    -

    Alias: gui.popup

    -


    -

    Requests input from the user using a multiple-option message box. See gui.popup for complete usage and returns.

    -


    -


    -

    Savestate Library

    -


    -

    object savestate.object(int slot = nil)

    -


    -

    Create a new savestate object. Optionally you can save the current state to one of the predefined slots(1-10) using the range 1-9 for slots 1-9, and 10 for 0, QWERTY style. Using no number will create an "anonymous" savestate.

    -

    Note that this does not actually save the current state! You need to create this value and pass it on to the load and save functions in order to save it.

    -


    -

    Anonymous savestates are temporary, memory only states. You can make them persistent by calling memory.persistent(state). Persistent anonymous states are deleted from disk once the script exits.

    -


    -

    object savestate.create(int slot = nil)

    -


    -

    savestate.create is identical to savestate.object, except for the numbering for predefined slots(1-10, 1 refers to slot 0, 2-10 refer to 1-9). It's being left in for compatibility with older scripts, and potentially for platforms with different internal predefined slot numbering.

    -


    -

    savestate.save(object savestate)

    -


    -

    Save the current state object to the given savestate. The argument is the result of savestate.create(). You can load this state back up by calling savestate.load(savestate) on the same object.

    -


    -

    savestate.load(object savestate)

    -


    -

    Load the the given state. The argument is the result of savestate.create() and has been passed to savestate.save() at least once.

    -


    -

    If this savestate is not persistent and not one of the predefined states, the state will be deleted after loading.

    -


    -

    savestate.persist(object savestate)

    -


    -

    Set the given savestate to be persistent. It will not be deleted when you load this state but at the exit of this script instead, unless it's one of the predefined states.  If it is one of the predefined savestates it will be saved as a file on disk.

    -


    -

    savestate.registersave(function func)

    -


    -

    Registers a callback function that runs whenever the user saves a state. This won't actually be called when the script itself makes a savestate, so none of those endless loops due to a misplaced savestate.save.

    -


    -

    As with other callback-registering functions provided by FCEUX, there is only one registered callback at a time per registering function per script. Upon registering a second callback, the first is kicked out to make room for the second. In this case, it will return the first function instead of nil, letting you know what was kicked out. Registering nil will clear the previously-registered callback.

    -


    -

    savestate.registerload(function func)

    -


    -

    Registers a callback function that runs whenever the user loads a previously saved state. It's not called when the script itself loads a previous state, so don't worry about your script interrupting itself just because it's loading something.

    -


    -

    The state's data is loaded before this function runs, so you can read the RAM immediately after the user loads a state, or check the new framecount. Particularly useful if you want to update lua's display right away instead of showing junk from before the loadstate.

    -


    -

    savestate.loadscriptdata(int location)

    -


    -

    Accuracy not yet confirmed.

    -


    -

    Intended Function, according to snes9x LUA documentation:

    -

    Returns the data associated with the given savestate (data that was earlier returned by a registered save callback) without actually loading the rest of that savestate or calling any callbacks. location should be a save slot number.

    -


    -


    -

    Movie Library

    -


    -

    bool movie.play(string filename, [bool read_only, [int pauseframe]])

    -

    bool movie.playback(...)

    -

    bool movie.load(...)

    -


    -

    Loads and plays a movie from the directory relative to the Lua script or from the absolute path. If read_only is true, the movie will be loaded in read-only mode. The default is read+write.

    -


    -

    A pauseframe can be specified, which controls which frame will auto-pause the movie. By default, this is off. A true value is returned if the movie loaded correctly.

    -


    -

    bool movie.record(string filename, [int save_type, [string author]])

    -

    bool movie.save(...)

    -


    -

    Starts recording a movie, using the filename, relative to the Lua script.

    -


    -

    An optional save_type can be specified. If set to 0 (default), it will record from a power on state, and automatically do so. This is the recommended setting for creating movies. This can also be set to 1 for savestate or 2 for saveram movies.

    -


    -

    A third parameter specifies an author string. If included, it will be recorded into the movie file.

    -


    -

    bool movie.active()

    -


    -

    Returns true if a movie is currently loaded and false otherwise.  (This should be used to guard against Lua errors when attempting to retrieve movie information).

    -


    -

    int movie.framecount()

    -


    -

    Returns the current frame count. (Has the same affect as emu.framecount)

    -


    -

    string movie.mode()

    -


    -

    Returns the current state of movie playback. Returns one of the following:

    -


    -

    - "record"

    -

    - "playback"

    -

    - "finished"

    -

    - "taseditor"

    -

    - nil

    -


    -

    movie.rerecordcounting(bool counting)

    -


    -

    Turn the rerecord counter on or off. Allows you to do some brute forcing without inflating the rerecord count.

    -


    -

    movie.stop()

    -

    movie.close()

    -


    -

    Stops movie playback. If no movie is loaded, it throws a Lua error.

    -


    -

    int movie.length()

    -


    -

    Returns the total number of frames of the current movie. Throws a Lua error if no movie is loaded.

    -


    -

    string movie.name()

    -

    string movie.getname()

    -


    -

    Returns the filename of the current movie with path. Throws a Lua error if no movie is loaded.

    -


    -

    movie.getfilename()

    -


    -

    Returns the filename of the current movie with no path. Throws a Lua error if no movie is loaded.

    -


    -

    movie.rerecordcount()

    -


    -

    Returns the rerecord count of the current movie. Throws a Lua error if no movie is loaded.

    -


    -

    movie.replay()

    -

    movie.playbeginning()

    -


    -

    Performs the Play from Beginning function. Movie mode is switched to read-only and the movie loaded will begin playback from frame 1.

    -


    -

    If no movie is loaded, no error is thrown and no message appears on screen.

    -


    -

    bool movie.readonly()

    -

    bool movie.getreadonly()

    -

    Alias: emu.getreadonly

    -


    -

    FCEUX keeps the read-only status even without a movie loaded.

    -


    -

    Returns whether the emulator is in read-only state.  

    -


    -

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    -


    -

    movie.setreadonly(bool state)

    -

    Alias: emu.setreadonly

    -


    -

    FCEUX keeps the read-only status even without a movie loaded.

    -


    -

    Sets the read-only status to read-only if argument is true and read+write if false.

    -

    Note: This might result in an error if the medium of the movie file is  not writeable (such as in an archive file).

    -


    -

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    -


    -

    bool movie.recording()

    -


    -

    Returns true if there is a movie loaded and in record mode.

    -


    -

    bool movie.playing()

    -


    -

    Returns true if there is a movie loaded and in play mode.

    -


    -

    bool movie.ispoweron()

    -


    -

    Returns true if the movie recording or loaded started from 'Start'.

    -

    Returns false if the movie uses a save state.

    -

    Opposite of movie.isfromsavestate()

    -


    -

    bool movie.isfromsavestate()

    -


    -

    Returns true if the movie recording or loaded started from 'Now'.

    -

    Returns false if the movie was recorded from a reset.

    -

    Opposite of movie.ispoweron()

    -


    -

    string movie.name()

    -


    -

    If a movie is loaded it returns the name of the movie, else it throws an error.

    -


    -

    bool movie.readonly()

    -


    -

    Returns the state of read-only. True if in playback mode, false if in record mode.

    -


    -


    -

    GUI Library

    -


    -

    gui.pixel(int x, int y, type color)

    -

    gui.drawpixel(int x, int y, type color)

    -

    gui.setpixel(int x, int y, type color)

    -

    gui.writepixel(int x, int y, type color)

    -


    -

    Draw one pixel of a given color at the given position on the screen. See drawing notes and color notes at the bottom of the page.  

    -


    -

    gui.getpixel(int x, int y)

    -


    -

    Returns the separate RGBA components of the given pixel set by gui.pixel. This only gets LUA pixels set, not background colors.

    -


    -

    Usage is local r,g,b,a = gui.getpixel(5, 5) to retrieve the current red/green/blue/alpha values of the LUA pixel at 5x5.

    -


    -

    See emu.getscreenpixel() for an emulator screen variant.

    -


    -

    gui.line(int x1, int y1, int x2, int y2 [, color [, skipfirst]])

    -

    gui.drawline(int x1, int y1, int x2, int y2 [, color [, skipfirst]])

    -


    -

    Draws a line between the two points. The x1,y1 coordinate specifies one end of the line segment, and the x2,y2 coordinate specifies the other end. If skipfirst is true then this function will not draw anything at the pixel x1,y1, otherwise it will. skipfirst is optional and defaults to false. The default color for the line is solid white, but you may optionally override that using a color of your choice. See also drawing notes and color notes at the bottom of the page.

    -


    -

    gui.box(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    -

    gui.drawbox(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    -

    gui.rect(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    -

    gui.drawrect(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    -


    -

    Draws a rectangle between the given coordinates of the emulator screen for one frame. The x1,y1 coordinate specifies any corner of the rectangle (preferably the top-left corner), and the x2,y2 coordinate specifies the opposite corner.

    -


    -

    The default color for the box is transparent white with a solid white outline, but you may optionally override those using colors of your choice. Also see drawing notes and color notes.

    -


    -

    gui.text(int x, int y, string str [, textcolor [, backcolor]])

    -

    gui.drawtext(int x, int y, string str [, textcolor [, backcolor]])

    -


    -

    Draws a given string at the given position. textcolor and backcolor are optional. See 'on colors' at the end of this page for information. Using nil as the input or not including an optional field will make it use the default.

    -


    -

    gui.parsecolor(color)

    -


    -

    Returns the separate RGBA components of the given color.

    -

    For example, you can say local r,g,b,a = gui.parsecolor('orange') to retrieve the red/green/blue values of the preset color orange. (You could also omit the a in cases like this.) This uses the same conversion method that FCEUX uses internally to support the different representations of colors that the GUI library uses. Overriding this function will not change how FCEUX interprets color values, however.

    -


    -

    gui.savescreenshot()

    -

    Makes a screenshot of the FCEUX emulated screen, and saves it to the appropriate folder. Performs identically to pressing the Screenshot hotkey.

    -


    -

    gui.savescreenshotas(string name)

    -

    Makes a screenshot of the FCEUX emulated screen, and saves it to the appropriate folder. However, this one receives a file name for the screenshot.

    -

    -

    string gui.gdscreenshot(bool getemuscreen)

    -


    -

    Takes a screen shot of the image and returns it in the form of a string which can be imported by the gd library using the gd.createFromGdStr() function.

    -


    -

    This function is provided so as to allow FCEUX to not carry a copy of the gd library itself. If you want raw RGB32 access, skip the first 11 bytes (header) and then read pixels as Alpha (always 0), Red, Green, Blue, left to right then top to bottom, range is 0-255 for all colors.

    -


    -

    If getemuscreen is false, this gets background colors from either the screen pixel or the LUA pixels set, but LUA data may not match the information used to put the data to the screen. If getemuscreen is true, this gets background colors from anything behind an LUA screen element.

    -


    -

    Warning: Storing screen shots in memory is not recommended. Memory usage will blow up pretty quick. One screen shot string eats around 230 KB of RAM.

    -


    -

    gui.gdoverlay([int dx=0, int dy=0,] string str [, sx=0, sy=0, sw, sh] [, float alphamul=1.0])

    -

    gui.image([int dx=0, int dy=0,] string str [, sx=0, sy=0, sw, sh] [, float alphamul=1.0])

    -

    gui.drawimage([int dx=0, int dy=0,] string str [, sx=0, sy=0, sw, sh] [, float alphamul=1.0])

    -


    -

    Draws an image on the screen. gdimage must be in truecolor gd string format.

    -


    -

    Transparency is fully supported. Also, if alphamul is specified then it will modulate the transparency of the image even if it's originally fully opaque. (alphamul=1.0 is normal, alphamul=0.5 is doubly transparent, alphamul=3.0 is triply opaque, etc.)

    -


    -

    dx,dy determines the top-left corner of where the image should draw. If they are omitted, the image will draw starting at the top-left corner of the screen.

    -


    -

    gui.gdoverlay is an actual drawing function (like gui.box and friends) and thus must be called every frame, preferably inside a gui.register'd function, if you want it to appear as a persistent image onscreen.

    -


    -

    Here is an example that loads a PNG from file, converts it to gd string format, and draws it once on the screen:

    -

    local gdstr = gd.createFromPng("myimage.png"):gdStr()

    -

    gui.gdoverlay(gdstr)

    -


    -

    gui.opacity(int alpha)

    -


    -

    Scales the transparency of subsequent draw calls. An alpha of 0.0 means completely transparent, and an alpha of 1.0 means completely unchanged (opaque). Non-integer values are supported and meaningful, as are values greater than 1.0. It is not necessary to use this function (or the less-recommended gui.transparency) to perform drawing with transparency, because you can provide an alpha value in the color argument of each draw call. However, it can sometimes be convenient to be able to globally modify the drawing transparency.

    -


    -

    gui.transparency(int trans)

    -


    -

    Scales the transparency of subsequent draw calls. Exactly the same as gui.opacity, except the range is different: A trans of 4.0 means completely transparent, and a trans of 0.0 means completely unchanged (opaque).

    -


    -

    function gui.register(function func)

    -


    -

    Register a function to be called between a frame being prepared for displaying on your screen and it actually happening. Used when that 1 frame delay for rendering is not acceptable.

    -


    -

    string gui.popup(string message [, string type = "ok" [, string icon = "message"]])

    -

    string input.popup(string message [, string type = "yesno" [, string icon = "question"]])

    -


    -

    Brings up a modal popup dialog box (everything stops until the user dismisses it). The box displays the message tostring(msg). This function returns the name of the button the user clicked on (as a string).

    -


    -

    type determines which buttons are on the dialog box, and it can be one of the following: 'ok', 'yesno', 'yesnocancel', 'okcancel', 'abortretryignore'.

    -

    type defaults to 'ok' for gui.popup, or to 'yesno' for input.popup.

    -


    -

    icon indicates the purpose of the dialog box (or more specifically it dictates which title and icon is displayed in the box), and it can be one of the following: 'message', 'question', 'warning', 'error'.

    -

    icon defaults to 'message' for gui.popup, or to 'question' for input.popup.

    -


    -

    Try to avoid using this function much if at all, because modal dialog boxes can be irritating.

    -


    -

    Linux users might want to install xmessage to perform the work. Otherwise the dialog will appear on the shell and that's less noticeable.

    -


    -


    -

    Sound Library

    -


    -

    table sound.get()

    -


    -

    Returns current state of PSG channels in big array.

    -


    -

    table:

    -

    {

    -

     rp2a03:

    -

     {

    -

       square1:

    -

       {

    -

         volume, -- 0.0-1.0

    -

         frequency, -- in hertz

    -

         midikey, -- 0-127

    -

         duty, -- 0:12.5% 1:25% 2:50% 3:75%

    -

         regs: -- raw register values

    -

         {

    -

           frequency -- raw freq register value

    -

         }

    -

       },

    -

       square2:

    -

       {

    -

         volume, -- 0.0-1.0

    -

         frequency, -- in hertz

    -

         midikey, -- 0-127

    -

         duty, -- 0:12.5% 1:25% 2:50% 3:75%

    -

         regs: -- raw register values

    -

         {

    -

           frequency -- raw freq register value

    -

         }

    -

       },

    -

       triangle:

    -

       {

    -

         volume, -- 0.0-1.0

    -

         frequency, -- in hertz (correct?)

    -

         midikey, -- 0-127 (correct?)

    -

         regs: -- raw register values

    -

         {

    -

           frequency -- raw freq register value

    -

         }

    -

       },

    -

       noise:

    -

       {

    -

         volume, -- 0.0-1.0

    -

           short, -- true or false

    -

         frequency, -- in hertz (correct?)

    -

         midikey, -- 0-127 (correct?)

    -

         regs: -- raw register values

    -

         {

    -

           frequency -- raw freq register value

    -

         }

    -

       },

    -

       dpcm:

    -

       {

    -

         volume, -- 0.0-1.0

    -

         frequency, -- in hertz (correct?)

    -

         midikey, -- 0-127 (correct?)

    -

         dmcaddress, -- start position of the sample

    -

         dmcsize, -- size of the sample, in bytes

    -

         dmcloop, -- true:looped sample, false:oneshot

    -

         dmcseed, -- InitialRawDALatch

    -

         regs: -- raw register values

    -

         {

    -

           frequency -- raw freq register value

    -

         }

    -

       }

    -

     }

    -

    }

    -


    -


    -

    TAS Editor Library

    -


    -

    taseditor.registerauto(function func)

    -

    taseditor.registermanual(function func)

    -

    bool taseditor.engaged()

    -

    bool taseditor.markedframe(int frame)

    -

    int taseditor.getmarker(int frame)

    -

    int taseditor.setmarker(int frame)

    -

    taseditor.clearmarker(int frame)

    -

    string taseditor.getnote(int index)

    -

    taseditor.setnote(int index, string newtext)

    -

    int taseditor.getcurrentbranch()

    -

    string taseditor.getrecordermode()

    -

    int taseditor.getsuperimpose()

    -

    int taseditor.getlostplayback()

    -

    int taseditor.getplaybacktarget()

    -

    taseditor.setplayback(int frame)

    -

    taseditor.stopseeking()

    -

    taseditor.getselection()

    -

    taseditor.setselection()

    -

    int taseditor.getinput(int frame, int joypad)

    -

    taseditor.submitinputchange(int frame, int joypad, int input)

    -

    taseditor.submitinsertframes(int frame, int number)

    -

    taseditor.submitdeleteframes(int frame, int number)

    -

    int taseditor.applyinputchanges([string name])

    -

    taseditor.clearinputchanges()

    -


    -

    For full description of these functions refer to TAS Editor Manual.

    -


    -


    -

    Bitwise Operations

    -


    -

    The following bit functions were added to FCEUX internally to compensate for Lua's lack of them. But it also supports all operations from LuaBitOp module, since it is also embedded in FCEUX.

    -


    -

    int AND(int n1, int n2, ..., int nn)

    -


    -

    Binary logical AND of all the given integers.

    -


    -

    int OR(int n1, int n2, ..., int nn)

    -


    -

    Binary logical OR of all the given integers.

    -


    -

    int XOR(int n1, int n2, ..., int nn)

    -


    -

    Binary logical XOR of all the given integers.

    -


    -

    int BIT(int n1, int n2, ..., int nn)

    -


    -

    Returns an integer with the given bits turned on. Parameters should be smaller than 31.

    -


    -

    Appendix

    -


    -

    On drawing

    -


    -

    A general warning about drawing is that it is always one frame behind unless you use gui.register. This is because you tell the emulator to paint something but it will actually paint it when generating the image for the next frame. So you see your painting, except it will be on the image of the next frame. You can prevent this with gui.register because it gives you a quick chance to paint before blitting.

    -


    -

    Dimensions & color depths you can paint in:

    -

    --320x239, 8bit color (confirm?)

    -

    256x224, 8bit color (confirm?)

    -


    -

    On colors

    -


    -

    Colors can be of a few types.

    -

    Int: use the a formula to compose the color as a number (depends on color depth)

    -

    String: Can either be a HTML colors, simple colors, or internal palette colors.

    -

    HTML string: "#rrggbb" ("#228844") or #rrggbbaa if alpha is supported.

    -

    Simple colors: "clear", "red", "green", "blue", "white", "black", "gray", "grey", "orange", "yellow", "green", "teal", "cyan", "purple", "magenta".

    -

    Array: Example: {255,112,48,96} means {red=255, green=112, blue=48, alpha=96}

    -

    Table: Example: {r=255,g=112,b=48,a=96} means {red=255, green=112, blue=48, alpha=96}

    -

    Palette: Example: "P00" for Palette 00. "P3F" for palette 3F. P40-P7F are for LUA.

    -


    -

    For transparancy use "clear".

    -


    +


    +


    +

    Debugger Library

    +


    +

    debugger.hitbreakpoint()

    +


    +

    Simulates a breakpoint hit, pauses emulation and brings up the Debugger window. Use this function in your handlers of custom breakpoints.

    +


    +

    int debugger.getcyclescount()

    +


    +

    Returns an integer value representing the number of CPU cycles elapsed since the poweron or since the last reset of the cycles counter.

    +


    +

    int debugger.getinstructionscount()

    +


    +

    Returns an integer value representing the number of CPU instructions executed since the poweron or since the last reset of the instructions counter.

    +


    +

    debugger.resetcyclescount()

    +


    +

    Resets the cycles counter.

    +


    +

    debugger.resetinstructionscount()

    +


    +

    Resets the instructions counter.

    +


    +


    +

    Joypad Library

    +


    +

    table joypad.get(int player)

    +

    table joypad.read(int player)

    +


    +

    Returns a table of every game button, where each entry is true if that button is currently held (as of the last time the emulation checked), or false if it is not held. This takes keyboard inputs, not Lua. The table keys look like this (case sensitive):

    +


    +

    up, down, left, right, A, B, start, select

    +


    +

    Where a Lua truthvalue true means that the button is set, false means the button is unset. Note that only "false" and "nil" are considered a false value by Lua.  Anything else is true, even the number 0.

    +


    +

    joypad.read left in for backwards compatibility with older versions of FCEU/FCEUX.

    +


    +

    table joypad.getimmediate(int player)

    +

    table joypad.readimmediate(int player)

    +


    +

    Returns a table of every game button, where each entry is true if that button is held at the moment of calling the function, or false if it is not held. This function polls keyboard input immediately, allowing Lua to interact with user even when emulator is paused.

    +


    +

    As of FCEUX 2.2.0, the function only works in Windows. In Linux this function will return nil.

    +


    +

    table joypad.getdown(int player)

    +

    table joypad.readdown(int player)

    +


    +

    Returns a table of only the game buttons that are currently held. Each entry is true if that button is currently held (as of the last time the emulation checked), or nil if it is not held.

    +


    +

    table joypad.getup(int player)

    +

    table joypad.readup(int player)

    +


    +

    Returns a table of only the game buttons that are not currently held. Each entry is nil if that button is currently held (as of the last time the emulation checked), or false if it is not held.

    +


    +

    joypad.set(int player, table input)

    +

    joypad.write(int player, table input)

    +


    +

    Set the inputs for the given player. Table keys look like this (case sensitive):

    +


    +

    up, down, left, right, A, B, start, select

    +


    +

    There are 4 possible values: true, false, nil, and "invert".

    +

    true    - Forces the button on

    +

    false   - Forces the button off

    +

    nil     - User's button press goes through unchanged

    +

    "invert"- Reverses the user's button press

    +


    +

    Any string works in place of "invert".  It is suggested as a convention to use "invert" for readability, but strings like "inv", "Weird switchy mechanism", "", or "true or false" works as well as "invert".

    +


    +

    nil and "invert" exists so the script can control individual buttons of the controller without entirely blocking the user from having any control. Perhaps there is a process which can be automated by the script, like an optimal firing pattern, but the user still needs some manual control, such as moving the character around.

    +


    +

    joypad.write left in for backwards compatibility with older versions of FCEU/FCEUX.

    +


    +


    +

    Zapper Library

    +


    +

    table zapper.read()

    +


    +

    Returns the zapper data

    +

    When no movie is loaded this input is the same as the internal mouse input (which is used to generate zapper input, as well as the arkanoid paddle).

    +


    +

    When a movie is playing, it returns the zapper data in the movie code.

    +


    +

    The return table consists of 3 values: x, y, and fire.  x and y are the x,y coordinates of the zapper target in terms of pixels.  fire represents the zapper firing.  0 = not firing, 1 = firing

    +


    +


    +

    Note: The zapper is always controller 2 on the NES so there is no player argument to this function.

    +


    +


    +

    Input Library

    +


    +

    table input.get()

    +

    table input.read()

    +


    +

    Reads input from keyboard and mouse. Returns pressed keys and the position of mouse in pixels on game screen.  The function returns a table with at least two properties; table.xmouse and table.ymouse.  Additionally any of these keys will be set to true if they were held at the time of executing this function:

    +

    leftclick, rightclick, middleclick, capslock, numlock, scrolllock, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, F1, F2, F3, F4, F5, F6,  F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, backspace, tab, enter, shift, control, alt, pause, escape, space, pageup, pagedown, end, home, left, up, right, down, numpad0, numpad1, numpad2, numpad3, numpad4, numpad5, numpad6, numpad7, numpad8, numpad9, numpad*, insert, delete, numpad+, numpad-, numpad., numpad/, semicolon, plus, minus, comma, period, slash, backslash, tilde, quote, leftbracket, rightbracket.

    +


    +

    string input.popup

    +

    Alias: gui.popup

    +


    +

    Requests input from the user using a multiple-option message box. See gui.popup for complete usage and returns.

    +


    +


    +

    Savestate Library

    +


    +

    object savestate.object(int slot = nil)

    +


    +

    Create a new savestate object. Optionally you can save the current state to one of the predefined slots(1-10) using the range 1-9 for slots 1-9, and 10 for 0, QWERTY style. Using no number will create an "anonymous" savestate.

    +

    Note that this does not actually save the current state! You need to create this value and pass it on to the load and save functions in order to save it.

    +


    +

    Anonymous savestates are temporary, memory only states. You can make them persistent by calling memory.persistent(state). Persistent anonymous states are deleted from disk once the script exits.

    +


    +

    object savestate.create(int slot = nil)

    +


    +

    savestate.create is identical to savestate.object, except for the numbering for predefined slots(1-10, 1 refers to slot 0, 2-10 refer to 1-9). It's being left in for compatibility with older scripts, and potentially for platforms with different internal predefined slot numbering.

    +


    +

    savestate.save(object savestate)

    +


    +

    Save the current state object to the given savestate. The argument is the result of savestate.create(). You can load this state back up by calling savestate.load(savestate) on the same object.

    +


    +

    savestate.load(object savestate)

    +


    +

    Load the the given state. The argument is the result of savestate.create() and has been passed to savestate.save() at least once.

    +


    +

    If this savestate is not persistent and not one of the predefined states, the state will be deleted after loading.

    +


    +

    savestate.persist(object savestate)

    +


    +

    Set the given savestate to be persistent. It will not be deleted when you load this state but at the exit of this script instead, unless it's one of the predefined states.  If it is one of the predefined savestates it will be saved as a file on disk.

    +


    +

    savestate.registersave(function func)

    +


    +

    Registers a callback function that runs whenever the user saves a state. This won't actually be called when the script itself makes a savestate, so none of those endless loops due to a misplaced savestate.save.

    +


    +

    As with other callback-registering functions provided by FCEUX, there is only one registered callback at a time per registering function per script. Upon registering a second callback, the first is kicked out to make room for the second. In this case, it will return the first function instead of nil, letting you know what was kicked out. Registering nil will clear the previously-registered callback.

    +


    +

    savestate.registerload(function func)

    +


    +

    Registers a callback function that runs whenever the user loads a previously saved state. It's not called when the script itself loads a previous state, so don't worry about your script interrupting itself just because it's loading something.

    +


    +

    The state's data is loaded before this function runs, so you can read the RAM immediately after the user loads a state, or check the new framecount. Particularly useful if you want to update lua's display right away instead of showing junk from before the loadstate.

    +


    +

    savestate.loadscriptdata(int location)

    +


    +

    Accuracy not yet confirmed.

    +


    +

    Intended Function, according to snes9x LUA documentation:

    +

    Returns the data associated with the given savestate (data that was earlier returned by a registered save callback) without actually loading the rest of that savestate or calling any callbacks. location should be a save slot number.

    +


    +


    +

    Movie Library

    +


    +

    bool movie.active()

    +


    +

    Returns true if a movie is currently loaded and false otherwise.  (This should be used to guard against Lua errors when attempting to retrieve movie information).

    +


    +

    int movie.framecount()

    +


    +

    Returns the current frame count. (Has the same affect as emu.framecount)

    +


    +

    string movie.mode()

    +


    +

    Returns the current state of movie playback. Returns one of the following:

    +


    +

    - "record"

    +

    - "playback"

    +

    - "finished"

    +

    - "taseditor"

    +

    - nil

    +


    +

    movie.rerecordcounting(bool counting)

    +


    +

    Turn the rerecord counter on or off. Allows you to do some brute forcing without inflating the rerecord count.

    +


    +

    movie.stop()

    +

    movie.close()

    +


    +

    Stops movie playback. If no movie is loaded, it throws a Lua error.

    +


    +

    int movie.length()

    +


    +

    Returns the total number of frames of the current movie. Throws a Lua error if no movie is loaded.

    +


    +

    string movie.name()

    +

    string movie.getname()

    +


    +

    Returns the filename of the current movie with path. Throws a Lua error if no movie is loaded.

    +


    +

    movie.getfilename()

    +


    +

    Returns the filename of the current movie with no path. Throws a Lua error if no movie is loaded.

    +


    +

    movie.rerecordcount()

    +


    +

    Returns the rerecord count of the current movie. Throws a Lua error if no movie is loaded.

    +


    +

    movie.replay()

    +

    movie.playbeginning()

    +


    +

    Performs the Play from Beginning function. Movie mode is switched to read-only and the movie loaded will begin playback from frame 1.

    +


    +

    If no movie is loaded, no error is thrown and no message appears on screen.

    +


    +

    bool movie.readonly()

    +

    bool movie.getreadonly()

    +

    Alias: emu.getreadonly

    +


    +

    FCEUX keeps the read-only status even without a movie loaded.

    +


    +

    Returns whether the emulator is in read-only state.  

    +


    +

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    +


    +

    movie.setreadonly(bool state)

    +

    Alias: emu.setreadonly

    +


    +

    FCEUX keeps the read-only status even without a movie loaded.

    +


    +

    Sets the read-only status to read-only if argument is true and read+write if false.

    +

    Note: This might result in an error if the medium of the movie file is  not writeable (such as in an archive file).

    +


    +

    While this variable only applies to movies, it is stored as a global variable and can be modified even without a movie loaded.  Hence, it is in the emu library rather than the movie library.

    +


    +

    bool movie.recording()

    +


    +

    Returns true if there is a movie loaded and in record mode.

    +


    +

    bool movie.playing()

    +


    +

    Returns true if there is a movie loaded and in play mode.

    +


    +

    bool movie.ispoweron()

    +


    +

    Returns true if the movie recording or loaded started from 'Start'.

    +

    Returns false if the movie uses a save state.

    +

    Opposite of movie.isfromsavestate()

    +


    +

    bool movie.isfromsavestate()

    +


    +

    Returns true if the movie recording or loaded started from 'Now'.

    +

    Returns false if the movie was recorded from a reset.

    +

    Opposite of movie.ispoweron()

    +


    +

    string movie.name()

    +


    +

    If a movie is loaded it returns the name of the movie, else it throws an error.

    +


    +

    bool movie.readonly()

    +


    +

    Returns the state of read-only. True if in playback mode, false if in record mode.

    +


    +


    +

    GUI Library

    +


    +

    gui.pixel(int x, int y, type color)

    +

    gui.drawpixel(int x, int y, type color)

    +

    gui.setpixel(int x, int y, type color)

    +

    gui.writepixel(int x, int y, type color)

    +


    +

    Draw one pixel of a given color at the given position on the screen. See drawing notes and color notes at the bottom of the page.  

    +


    +

    gui.getpixel(int x, int y)

    +


    +

    Returns the separate RGBA components of the given pixel set by gui.pixel. This only gets LUA pixels set, not background colors.

    +


    +

    Usage is local r,g,b,a = gui.getpixel(5, 5) to retrieve the current red/green/blue/alpha values of the LUA pixel at 5x5.

    +


    +

    See emu.getscreenpixel() for an emulator screen variant.

    +


    +

    gui.line(int x1, int y1, int x2, int y2 [, color [, skipfirst]])

    +

    gui.drawline(int x1, int y1, int x2, int y2 [, color [, skipfirst]])

    +


    +

    Draws a line between the two points. The x1,y1 coordinate specifies one end of the line segment, and the x2,y2 coordinate specifies the other end. If skipfirst is true then this function will not draw anything at the pixel x1,y1, otherwise it will. skipfirst is optional and defaults to false. The default color for the line is solid white, but you may optionally override that using a color of your choice. See also drawing notes and color notes at the bottom of the page.

    +


    +

    gui.box(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    +

    gui.drawbox(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    +

    gui.rect(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    +

    gui.drawrect(int x1, int y1, int x2, int y2 [, fillcolor [, outlinecolor]]))

    +


    +

    Draws a rectangle between the given coordinates of the emulator screen for one frame. The x1,y1 coordinate specifies any corner of the rectangle (preferably the top-left corner), and the x2,y2 coordinate specifies the opposite corner.

    +


    +

    The default color for the box is transparent white with a solid white outline, but you may optionally override those using colors of your choice. Also see drawing notes and color notes.

    +


    +

    gui.text(int x, int y, string str [, textcolor [, backcolor]])

    +

    gui.drawtext(int x, int y, string str [, textcolor [, backcolor]])

    +


    +

    Draws a given string at the given position. textcolor and backcolor are optional. See 'on colors' at the end of this page for information. Using nil as the input or not including an optional field will make it use the default.

    +


    +

    gui.parsecolor(color)

    +


    +

    Returns the separate RGBA components of the given color.

    +

    For example, you can say local r,g,b,a = gui.parsecolor('orange') to retrieve the red/green/blue values of the preset color orange. (You could also omit the a in cases like this.) This uses the same conversion method that FCEUX uses internally to support the different representations of colors that the GUI library uses. Overriding this function will not change how FCEUX interprets color values, however.

    +


    +

    gui.savescreenshot()

    +

    Makes a screenshot of the FCEUX emulated screen, and saves it to the appropriate folder. Performs identically to pressing the Screenshot hotkey.

    +


    +

    gui.savescreenshotas(string name)

    +

    Makes a screenshot of the FCEUX emulated screen, and saves it to the appropriate folder. However, this one receives a file name for the screenshot.

    +

     

    +

    string gui.gdscreenshot()

    +


    +

    Takes a screen shot of the image and returns it in the form of a string which can be imported by the gd library using the gd.createFromGdStr() function.

    +


    +

    This function is provided so as to allow FCEUX to not carry a copy of the gd library itself. If you want raw RGB32 access, skip the first 11 bytes (header) and then read pixels as Alpha (always 0), Red, Green, Blue, left to right then top to bottom, range is 0-255 for all colors.

    +


    +

    Warning: Storing screen shots in memory is not recommended. Memory usage will blow up pretty quick. One screen shot string eats around 230 KB of RAM.

    +


    +

    gui.gdoverlay([int dx=0, int dy=0,] string str [, sx=0, sy=0, sw, sh] [, float alphamul=1.0])

    +

    gui.image([int dx=0, int dy=0,] string str [, sx=0, sy=0, sw, sh] [, float alphamul=1.0])

    +

    gui.drawimage([int dx=0, int dy=0,] string str [, sx=0, sy=0, sw, sh] [, float alphamul=1.0])

    +


    +

    Draws an image on the screen. gdimage must be in truecolor gd string format.

    +


    +

    Transparency is fully supported. Also, if alphamul is specified then it will modulate the transparency of the image even if it's originally fully opaque. (alphamul=1.0 is normal, alphamul=0.5 is doubly transparent, alphamul=3.0 is triply opaque, etc.)

    +


    +

    dx,dy determines the top-left corner of where the image should draw. If they are omitted, the image will draw starting at the top-left corner of the screen.

    +


    +

    gui.gdoverlay is an actual drawing function (like gui.box and friends) and thus must be called every frame, preferably inside a gui.register'd function, if you want it to appear as a persistent image onscreen.

    +


    +

    Here is an example that loads a PNG from file, converts it to gd string format, and draws it once on the screen:

    +

    local gdstr = gd.createFromPng("myimage.png"):gdStr()

    +

    gui.gdoverlay(gdstr) 

    +


    +

    gui.opacity(int alpha)

    +


    +

    Scales the transparency of subsequent draw calls. An alpha of 0.0 means completely transparent, and an alpha of 1.0 means completely unchanged (opaque). Non-integer values are supported and meaningful, as are values greater than 1.0. It is not necessary to use this function (or the less-recommended gui.transparency) to perform drawing with transparency, because you can provide an alpha value in the color argument of each draw call. However, it can sometimes be convenient to be able to globally modify the drawing transparency. 

    +


    +

    gui.transparency(int trans)

    +


    +

    Scales the transparency of subsequent draw calls. Exactly the same as gui.opacity, except the range is different: A trans of 4.0 means completely transparent, and a trans of 0.0 means completely unchanged (opaque). 

    +


    +

    function gui.register(function func)

    +


    +

    Register a function to be called between a frame being prepared for displaying on your screen and it actually happening. Used when that 1 frame delay for rendering is not acceptable.

    +


    +

    string gui.popup(string message [, string type = "ok" [, string icon = "message"]])

    +

    string input.popup(string message [, string type = "yesno" [, string icon = "question"]])

    +


    +

    Brings up a modal popup dialog box (everything stops until the user dismisses it). The box displays the message tostring(msg). This function returns the name of the button the user clicked on (as a string).

    +


    +

    type determines which buttons are on the dialog box, and it can be one of the following: 'ok', 'yesno', 'yesnocancel', 'okcancel', 'abortretryignore'.

    +

    type defaults to 'ok' for gui.popup, or to 'yesno' for input.popup.

    +


    +

    icon indicates the purpose of the dialog box (or more specifically it dictates which title and icon is displayed in the box), and it can be one of the following: 'message', 'question', 'warning', 'error'.

    +

    icon defaults to 'message' for gui.popup, or to 'question' for input.popup.

    +


    +

    Try to avoid using this function much if at all, because modal dialog boxes can be irritating. 

    +


    +

    Linux users might want to install xmessage to perform the work. Otherwise the dialog will appear on the shell and that's less noticeable.

    +


    +


    +

    Sound Library

    +


    +

    table sound.get()

    +


    +

    Returns current state of PSG channels in big array.

    +


    +

    table:

    +

    {

    +

      rp2a03:

    +

      {

    +

        square1:

    +

        {

    +

          volume, -- 0.0-1.0

    +

          frequency, -- in hertz

    +

          midikey, -- 0-127

    +

          duty, -- 0:12.5% 1:25% 2:50% 3:75%

    +

          regs: -- raw register values

    +

          {

    +

            frequency -- raw freq register value

    +

          }

    +

        },

    +

        square2:

    +

        {

    +

          volume, -- 0.0-1.0

    +

          frequency, -- in hertz

    +

          midikey, -- 0-127

    +

          duty, -- 0:12.5% 1:25% 2:50% 3:75%

    +

          regs: -- raw register values

    +

          {

    +

            frequency -- raw freq register value

    +

          }

    +

        },

    +

        triangle:

    +

        {

    +

          volume, -- 0.0-1.0

    +

          frequency, -- in hertz (correct?)

    +

          midikey, -- 0-127 (correct?)

    +

          regs: -- raw register values

    +

          {

    +

            frequency -- raw freq register value

    +

          }

    +

        },

    +

        noise:

    +

        {

    +

          volume, -- 0.0-1.0

    +

           short, -- true or false

    +

          frequency, -- in hertz (correct?)

    +

          midikey, -- 0-127 (correct?)

    +

          regs: -- raw register values

    +

          {

    +

            frequency -- raw freq register value

    +

          }

    +

        },

    +

        dpcm:

    +

        {

    +

          volume, -- 0.0-1.0

    +

          frequency, -- in hertz (correct?)

    +

          midikey, -- 0-127 (correct?)

    +

          dmcaddress, -- start position of the sample

    +

          dmcsize, -- size of the sample, in bytes

    +

          dmcloop, -- true:looped sample, false:oneshot

    +

          dmcseed, -- InitialRawDALatch

    +

          regs: -- raw register values

    +

          {

    +

            frequency -- raw freq register value

    +

          }

    +

        }

    +

      }

    +

    }

    +


    +


    +

    TAS Editor Library

    +


    +

    taseditor.registerauto(function func)

    +

    taseditor.registermanual(function func)

    +

    bool taseditor.engaged()

    +

    bool taseditor.markedframe(int frame)

    +

    int taseditor.getmarker(int frame)

    +

    int taseditor.setmarker(int frame)

    +

    taseditor.clearmarker(int frame)

    +

    string taseditor.getnote(int index)

    +

    taseditor.setnote(int index, string newtext)

    +

    int taseditor.getcurrentbranch()

    +

    string taseditor.getrecordermode()

    +

    int taseditor.getsuperimpose()

    +

    int taseditor.getlostplayback()

    +

    int taseditor.getplaybacktarget()

    +

    taseditor.setplayback(int frame)

    +

    taseditor.stopseeking()

    +

    taseditor.getselection()

    +

    taseditor.setselection()

    +

    int taseditor.getinput(int frame, int joypad)

    +

    taseditor.submitinputchange(int frame, int joypad, int input)

    +

    taseditor.submitinsertframes(int frame, int number)

    +

    taseditor.submitdeleteframes(int frame, int number)

    +

    int taseditor.applyinputchanges([string name])

    +

    taseditor.clearinputchanges()

    +


    +

    For full description of these functions refer to TAS Editor Manual.

    +


    +


    +

    Bitwise Operations

    +


    +

    The following bit functions were added to FCEUX internally to compensate for Lua's lack of them. But it also supports all operations from LuaBitOp module, since it is also embedded in FCEUX.

    +


    +

    int AND(int n1, int n2, ..., int nn)

    +


    +

    Binary logical AND of all the given integers.

    +


    +

    int OR(int n1, int n2, ..., int nn)

    +


    +

    Binary logical OR of all the given integers.

    +


    +

    int XOR(int n1, int n2, ..., int nn)

    +


    +

    Binary logical XOR of all the given integers. 

    +


    +

    int BIT(int n1, int n2, ..., int nn)

    +


    +

    Returns an integer with the given bits turned on. Parameters should be smaller than 31.

    +


    +

    Appendix

    +


    +

    On drawing

    +


    +

    A general warning about drawing is that it is always one frame behind unless you use gui.register. This is because you tell the emulator to paint something but it will actually paint it when generating the image for the next frame. So you see your painting, except it will be on the image of the next frame. You can prevent this with gui.register because it gives you a quick chance to paint before blitting.

    +


    +

    Dimensions & color depths you can paint in:

    +

    --320x239, 8bit color (confirm?)

    +

    256x224, 8bit color (confirm?)

    +


    +

    On colors

    +


    +

    Colors can be of a few types.

    +

    Int: use the a formula to compose the color as a number (depends on color depth)

    +

    String: Can either be a HTML colors, simple colors, or internal palette colors.

    +

    HTML string: "#rrggbb" ("#228844") or #rrggbbaa if alpha is supported.

    +

    Simple colors: "clear", "red", "green", "blue", "white", "black", "gray", "grey", "orange", "yellow", "green", "teal", "cyan", "purple", "magenta".

    +

    Array: Example: {255,112,48,96} means {red=255, green=112, blue=48, alpha=96} 

    +

    Table: Example: {r=255,g=112,b=48,a=96} means {red=255, green=112, blue=48, alpha=96} 

    +

    Palette: Example: "P00" for Palette 00. "P3F" for palette 3F. P40-P7F are for LUA.

    +


    +

    For transparancy use "clear".

    +


    -

    Created with the Personal Edition of HelpNDoc: Easily create EPub books

    -
    - - + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + - -
    - - diff --git a/web/help/LuaGettingStarted.html b/web/help/LuaGettingStarted.html index 6bb9ddf5..f57cb5d2 100644 --- a/web/help/LuaGettingStarted.html +++ b/web/help/LuaGettingStarted.html @@ -1,107 +1,298 @@ - - + + + + + - Getting Started - - - - - - - - - - + + + + + + + + Getting Started + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Getting Started

    - -
    - Lua Scripting ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Using Lua scripting

    -


    -

    Lua is built into FCEUX as of 2.1.2, and luapack DLL files are no longer needed in this and later versions.

    -


    -

    To run lua scripts in older versions of FCEUX, you will need the lua pack which can be found here. The .dll files must be unzipped in the same folder as fceux.exe.

    -


    -

    Core Lua Documentation

    -


    -

    If you have never programmed, you will probably want to start by learning the basic of Lua, which is too broad for the scope of this help file.  Try searching on the Internet for "Lua tutorial".  As of this writing, it's official homepage is http://www.lua.org/

    -


    -

    If you are familiar with any programming language you will probably not have too much difficulty adjusting to the syntax and structure of Lua.  You will probably also find useful information on the Internet.

    -


    -

    GUI Frontend

    -


    -

    To use a Lua script, you need to create one in a text editor.  The name of the file created should end in .lua to indicate that it is a Lua script.

    -


    -

    To run a Lua script, choose "Run Lua Script" ***from where***  In the dialog that pops up, click "Browse" and find the file you wish to run.  This will insert the path of this file into the dialog.  You can then click on "Run" to run the script or "Cancel" to return to FCEUX without running the script.

    -


    -

    To end a Lua script, choose "Stop Lua Script" ***from where***.

    -


    -

    FCEUX Lua Basics

    -


    -

    Your script will be constructed according to the rules of Lua, but you will use FCEUX-specific functions to interact with the emulator.  For example, one of the most often-used functions is emu.frameadvance() which will tell the emulator to advance exactly one frame, which is the basic unit of time on an NES.

    -


    -

    In general, your script will probably want to be run until you tell it to stop, so it will look something like this:

    -


    -

    emu.speedmode("normal") -- Set the speed of the emulator

    -


    -

    -- Declare and set variables or functions if needed

    -


    -

    while true do

    -

      -- Execute instructions for FCEUX

    -

      emu.frameadvance() -- This essentially tells FCEUX to keep running

    -

    end

    -


    -

    The way instructions are sent to FCEUX is through a set of specially defined functions (and variables) which are called an API, the specification of which follows.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Getting Started

    + +
    + +

    +

    Using Lua scripting

    +


    +

    Lua is built into FCEUX as of 2.1.2, and luapack DLL files are no longer needed in this and later versions.

    +


    +

    To run lua scripts in older versions of FCEUX, you will need the lua pack which can be found here. The .dll files must be unzipped in the same folder as fceux.exe.

    +


    +

    Core Lua Documentation

    +


    +

    If you have never programmed, you will probably want to start by learning the basic of Lua, which is too broad for the scope of this help file.  Try searching on the Internet for "Lua tutorial".  As of this writing, it's official homepage is http://www.lua.org/

    +


    +

    If you are familiar with any programming language you will probably not have too much difficulty adjusting to the syntax and structure of Lua.  You will probably also find useful information on the Internet.

    +


    +

    GUI Frontend

    +


    +

    To use a Lua script, you need to create one in a text editor.  The name of the file created should end in .lua to indicate that it is a Lua script.

    +


    +

    To run a Lua script, choose "Run Lua Script" ***from where***  In the dialog that pops up, click "Browse" and find the file you wish to run.  This will insert the path of this file into the dialog.  You can then click on "Run" to run the script or "Cancel" to return to FCEUX without running the script.

    +


    +

    To end a Lua script, choose "Stop Lua Script" ***from where***.

    +


    +

    FCEUX Lua Basics

    +


    +

    Your script will be constructed according to the rules of Lua, but you will use FCEUX-specific functions to interact with the emulator.  For example, one of the most often-used functions is emu.frameadvance() which will tell the emulator to advance exactly one frame, which is the basic unit of time on an NES.

    +


    +

    In general, your script will probably want to be run until you tell it to stop, so it will look something like this:

    +


    +

    emu.speedmode("normal") -- Set the speed of the emulator

    +


    +

    -- Declare and set variables or functions if needed

    +


    +

    while true do

    +

       -- Execute instructions for FCEUX

    +

       emu.frameadvance() -- This essentially tells FCEUX to keep running

    +

    end

    +


    +

    The way instructions are sent to FCEUX is through a set of specially defined functions (and variables) which are called an API, the specification of which follows.

    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring environment

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/LuaPerks.html b/web/help/LuaPerks.html index 68bbacf4..d56793a7 100644 --- a/web/help/LuaPerks.html +++ b/web/help/LuaPerks.html @@ -1,123 +1,314 @@ - - + + + + + - LuaPerks - - - - - - - - - - + + + + + + + + LuaPerks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    LuaPerks

    - -
    - Lua Scripting ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    LuaPerks

    -


    -

    The following Lua libraries are integrated into FCEUX win32-executable (statically linked) and are available for using in your scripts. You can also use any other Lua library by placing its .dll files into FCEUX folder.

    -


    -


    -

    IUP library

    -


    -

    IUP (Portable User Interface) is a toolkit for building graphical user interfaces.

    -


    -

    Usage example: \luaScripts\GUI-iup_example.lua

    -


    -

    http://www.tecgraf.puc-rio.br/iup/

    -


    -


    -

    IM library

    -


    -

    IM is a toolkit for Digital Imaging. The main goal of the library is to provide a simple API and abstraction of images for applications.

    -

    File formats supported: TIFF, BMP, PNG, JPEG, GIF and AVI. Image representation includes scientific data types. About a hundred Image Processing operations are available.

    -


    -

    http://www.tecgraf.puc-rio.br/im/

    -


    -


    -

    CD library

    -


    -

    Canvas Draw is a graphics library.

    -

    The library contains functions to support both vector and image applications, and the visualization surface can be either a window or a more abstract surface, such as Image, Clipboard, Metafile, PS, and so on.

    -


    -

    http://www.tecgraf.puc-rio.br/cd/

    -


    -


    -

    LuaSocket library

    -


    -

    LuaSocket is a Lua extension library that is composed by two parts: a C core that provides support for the TCP and UDP transport layers, and a set of Lua modules that add support for the SMTP (sending e-mails), HTTP (WWW access) and FTP (uploading and downloading files) protocols and other functionality commonly needed by applications that deal with the Internet.

    -


    -

    Usage: netplay, local data transmission.

    -


    -

    http://w3.impa.br/~diego/software/luasocket/home.html

    -


    -


    -

    WinAPI library

    -


    -

    This module provides basic tools for working with Windows system resources.

    -


    -

    Usage example: \luaScripts\JumpingFCEUXWindow.lua

    -


    -

    https://github.com/stevedonovan/winapi

    -


    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free EBook and documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    LuaPerks

    + +
    + +

    +

    LuaPerks

    +


    +

    The following Lua libraries are integrated into FCEUX win32-executable (statically linked) and are available for using in your scripts. You can also use any other Lua library by placing its .dll files into FCEUX folder.

    +


    +


    +

    IUP library

    +


    +

    IUP (Portable User Interface) is a toolkit for building graphical user interfaces.

    +


    +

    Usage example: \luaScripts\GUI-iup_example.lua 

    +


    +

    http://www.tecgraf.puc-rio.br/iup/

    +


    +


    +

    IM library

    +


    +

    IM is a toolkit for Digital Imaging. The main goal of the library is to provide a simple API and abstraction of images for applications.

    +

    File formats supported: TIFF, BMP, PNG, JPEG, GIF and AVI. Image representation includes scientific data types. About a hundred Image Processing operations are available.

    +


    +

    http://www.tecgraf.puc-rio.br/im/

    +


    +


    +

    CD library

    +


    +

    Canvas Draw is a graphics library.

    +

    The library contains functions to support both vector and image applications, and the visualization surface can be either a window or a more abstract surface, such as Image, Clipboard, Metafile, PS, and so on.

    +


    +

    http://www.tecgraf.puc-rio.br/cd/

    +


    +


    +

    LuaSocket library

    +


    +

    LuaSocket is a Lua extension library that is composed by two parts: a C core that provides support for the TCP and UDP transport layers, and a set of Lua modules that add support for the SMTP (sending e-mails), HTTP (WWW access) and FTP (uploading and downloading files) protocols and other functionality commonly needed by applications that deal with the Internet.

    +


    +

    Usage: netplay, local data transmission.

    +


    +

    http://w3.impa.br/~diego/software/luasocket/home.html

    +


    +


    +

    WinAPI library

    +


    +

    This module provides basic tools for working with Windows system resources.

    +


    +

    Usage example: \luaScripts\JumpingFCEUXWindow.lua

    +


    +

    https://github.com/stevedonovan/winapi

    +


    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create CHM Help documents

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/LuaScripting.html b/web/help/LuaScripting.html index bdf03d1c..aed3a5ff 100644 --- a/web/help/LuaScripting.html +++ b/web/help/LuaScripting.html @@ -1,97 +1,292 @@ - - + + + + + - Lua Scripting - - - - - - - - - - + + + + + + + + Lua Scripting + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Lua Scripting

    - -
    -
    - Previous - - Next - -
    -
    -
    -
    - -

    -

    Lua Scripting

    -


    -

    Lua is a scripting language similar to Perl or Python.  It allows for logical evaluation equivalent to languages like C but in a much more dynamic way that eliminates much of the need to compile programs and worry about low level resource management like deleting objects.  In the context of FCEUX, Lua allows for direct control of the emulator through this logical construct.

    -


    -

    What this means to a non-"programmer" is that you can essentially automate certain tasks in FCEUX, such as holding controller inputs, displaying additional graphical information and saving/loading savestates.

    -


    -

    A bit of previous programming knowledge will be useful in taking advantage of this feature, but it is certainly not a requirement.  Lua is specifically written with the intention of being easier than most languages for anyone to understand and use.

    -


    -


    -

    Getting Started

    -


    -

    The basics of Lua scripting, its implementation into FCEUX, and how to get started using Lua.

    -


    -

    Using Lua

    -


    -

    How to use Lua and basic syntax/commands that are useable under FCEUX.

    -


    -

    Lua Functions List

    -


    -

    A list of Lua functions available in FCEUX and a brief description of each.

    -


    -

    LuaPerks

    -


    -

    Additional libraries integrated into FCEUX.

    -


    -

    Lua Bot

    -


    -

    How to use Luau's version of Basic bot.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free iPhone documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Lua Scripting

    + +
    + +

    +

    Lua Scripting

    +


    +

    Lua is a scripting language similar to Perl or Python.  It allows for logical evaluation equivalent to languages like C but in a much more dynamic way that eliminates much of the need to compile programs and worry about low level resource management like deleting objects.  In the context of FCEUX, Lua allows for direct control of the emulator through this logical construct.

    +


    +

    What this means to a non-"programmer" is that you can essentially automate certain tasks in FCEUX, such as holding controller inputs, displaying additional graphical information and saving/loading savestates.

    +


    +

    A bit of previous programming knowledge will be useful in taking advantage of this feature, but it is certainly not a requirement.  Lua is specifically written with the intention of being easier than most languages for anyone to understand and use.

    +


    +


    +

    Getting Started

    +


    +

    The basics of Lua scripting, its implementation into FCEUX, and how to get started using Lua.

    +


    +

    Using Lua

    +


    +

    How to use Lua and basic syntax/commands that are useable under FCEUX.

    +


    +

    Lua Functions List

    +


    +

    A list of Lua functions available in FCEUX and a brief description of each.

    +


    +

    LuaPerks

    +


    +

    Additional libraries integrated into FCEUX.

    +


    +

    Lua Bot

    +


    +

    How to use Luau's version of Basic bot.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Create cross-platform Qt Help files

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/MapHotkeys.html b/web/help/MapHotkeys.html index bc9d69aa..85093bef 100644 --- a/web/help/MapHotkeys.html +++ b/web/help/MapHotkeys.html @@ -1,80 +1,271 @@ - - + + + + + - Map Hotkeys - - - - - - - - - - + + + + + + + + Map Hotkeys + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Map Hotkeys

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Map Hotkeys

    -


    -

    The map hotkeys dialog allows you to assign hotkeys to various FCEUX commands.

    -


    -

    To assign or remove a hotkey assignment, double click on the name of the hotkey in the list box.  Then press the key combination you wish to assign it.  To clear the assignment, press the clear button.

    -


    -

    The filter pull down menu allows you to only see hotkey listings in various categories (the list shows all hotkey assignments by default).

    -


    -

    The Restore defaults button will change all hotkeys to their default values.

    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Help generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Map Hotkeys

    + +
    + +

    +

    Map Hotkeys

    +


    +

    The map hotkeys dialog allows you to assign hotkeys to various FCEUX commands.

    +


    +

    To assign or remove a hotkey assignment, double click on the name of the hotkey in the list box.  Then press the key combination you wish to assign it.  To clear the assignment, press the clear button.

    +


    +

    The filter pull down menu allows you to only see hotkey listings in various categories (the list shows all hotkey assignments by default).

    +


    +

    The Restore defaults button will change all hotkeys to their default values.

    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/MemoryWatch.html b/web/help/MemoryWatch.html index 66da923a..a238d6ed 100644 --- a/web/help/MemoryWatch.html +++ b/web/help/MemoryWatch.html @@ -1,133 +1,324 @@ - - + + + + + - Memory Watch - - - - - - - - - - + + + + + + + + Memory Watch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Memory Watch

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Memory Watch

    -


    -

    Overview

    -


    -

    Memory watch is a tool designed to values of specific known memory values in the game's RAM. Memory watch does not find values.  To find useful values to monitor, see Cheats, Ram filter, Hex Editor, and Debugger.

    -


    -


    -

    Inserting Values

    -


    -

    To display a ram value, simply type its address into one of the address fields.  The name field allows you to put a brief description of the value.  

    -


    -


    -

    Prefixes

    -


    -

    You must put in the hexi-decimal value of the address,  but the value will be displayed will be decimal by default.

    -


    -

    To display the value in hex, use a prefix of "x" (such as x00FD).  

    -


    -

    Use the prefix "!" to display a 2 byte value.

    -


    -

    Use a prefix of "X" to watch a 2 byte value in hex.

    -


    -


    -

    Saving/Loading Watch files

    -


    -

    You can save your addresses into watch files, as well as loading previous files using the standard save,load,new options in the File menu.

    -


    -

    FCEUX uses the /memw folder by default but you can specify a new default folder in the Directory Override menu.

    -


    -


    -

    Options Menu

    -


    -

    If you select Load on Start up, Memory watch will load up automatically when FCEU is started.

    -


    -

    If you select Load Last File on Start up, the most recent file in the Recent folder will be loaded when memory watch is loaded.

    -


    -

    If you select Collapse to 1 Column (or press the right arrow button on the bottom left of the dialog), the memory watch dialog is reduced to just 1 column.

    -


    -

    Frozen Memory Addresses

    -


    -

    If one of the watched addresses is frozen by the cheats dialog or the hex editor, it will display blue in the memory watch dialog.

    -


    -


    -

    Memory Change Monitor

    -


    -

    The bottom of the memory watch dialog displays a memory change monitoring section.  This monitors the 1st two values of each memory watch column.  Rather than monitoring the value itself, this monitors the value's behavior.  

    -


    -

    The address being monitored is under the address column.

    -


    -

    The Formula drop down box shows which criteria the change monitoring is using.

    -


    -

    The count value displays how many times the value has changed based on the criteria.

    -


    -

    Reset will reset the count to 0.

    -


    -


    -

    Usage Example:

    -


    -

    As an example of the memory change monitoring, Let's say we are recording a movie of the game Super C and want to keep track of when the game lags.

    -

    The ram address 001C functions as a "lag flag".  It will remain 0, then change to a positive value on a frame that the game lags.

    -


    -

    We could put 001C in one of the 1st two memory watch edit boxes.  Then set the corresponding formula in the memory change monitoring to "> then" (greater than).  Now the count will show us how many lag frames occur in the movie.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create HTML Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Memory Watch

    + +
    + +

    +

    Memory Watch

    +


    +

    Overview

    +


    +

    Memory watch is a tool designed to values of specific known memory values in the game's RAM. Memory watch does not find values.  To find useful values to monitor, see Cheats, Ram filter, Hex Editor, and Debugger.

    +


    +


    +

    Inserting Values

    +


    +

    To display a ram value, simply type its address into one of the address fields.  The name field allows you to put a brief description of the value.   

    +


    +


    +

    Prefixes

    +


    +

    You must put in the hexi-decimal value of the address,  but the value will be displayed will be decimal by default.

    +


    +

    To display the value in hex, use a prefix of "x" (such as x00FD).  

    +


    +

    Use the prefix "!" to display a 2 byte value. 

    +


    +

    Use a prefix of "X" to watch a 2 byte value in hex.

    +


    +


    +

    Saving/Loading Watch files

    +


    +

    You can save your addresses into watch files, as well as loading previous files using the standard save,load,new options in the File menu.

    +


    +

    FCEUX uses the /memw folder by default but you can specify a new default folder in the Directory Override menu.

    +


    +


    +

    Options Menu

    +


    +

    If you select Load on Start up, Memory watch will load up automatically when FCEU is started. 

    +


    +

    If you select Load Last File on Start up, the most recent file in the Recent folder will be loaded when memory watch is loaded.

    +


    +

    If you select Collapse to 1 Column (or press the right arrow button on the bottom left of the dialog), the memory watch dialog is reduced to just 1 column.

    +


    +

    Frozen Memory Addresses

    +


    +

    If one of the watched addresses is frozen by the cheats dialog or the hex editor, it will display blue in the memory watch dialog.

    +


    +


    +

    Memory Change Monitor

    +


    +

    The bottom of the memory watch dialog displays a memory change monitoring section.  This monitors the 1st two values of each memory watch column.  Rather than monitoring the value itself, this monitors the value's behavior.  

    +


    +

    The address being monitored is under the address column.

    +


    +

    The Formula drop down box shows which criteria the change monitoring is using.

    +


    +

    The count value displays how many times the value has changed based on the criteria.

    +


    +

    Reset will reset the count to 0.

    +


    +


    +

    Usage Example:

    +


    +

    As an example of the memory change monitoring, Let's say we are recording a movie of the game Super C and want to keep track of when the game lags.

    +

    The ram address 001C functions as a "lag flag".  It will remain 0, then change to a positive value on a frame that the game lags.

    +


    +

    We could put 001C in one of the 1st two memory watch edit boxes.  Then set the corresponding formula in the memory change monitoring to "> then" (greater than).  Now the count will show us how many lag frames occur in the movie.

    +

    +

    Created with the Personal Edition of HelpNDoc: Easy CHM and documentation editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/MovieOptions.html b/web/help/MovieOptions.html index 24abd014..23853cda 100644 --- a/web/help/MovieOptions.html +++ b/web/help/MovieOptions.html @@ -1,118 +1,309 @@ - - + + + + + - Movie Options - - - - - - - - - - + + + + + + + + Movie Options + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Movie Options

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Movie Options

    -


    -


    -

    The movie option dialog has various settings related to movie making.

    -


    -

    Always suggest Read-Only replay

    -


    -

    If checked, FCEUX will automatically check "Open Read-Only" checkbox when showing "Play Movie" dialog. If unchecked, the "Open Read-Only" checkbox state will depend on current movie status.

    -


    -


    -

    Pause After Movie Playback

    -


    -

    If checked, FCEUX will automatically pause emulation when reaching the last frame of a movie file.

    -


    -


    -

    Close After Movie Playback

    -


    -

    If checked, FCEUX will close the movie after replaying its last frame. If unchecked, when reaching the last frame the movie will switch to "MOVIE_FINISHED" state, still allowing you to load its savestates.

    -


    -


    -

    Bind savestates to movies

    -


    -

    Affects the savestate naming system when a movie is loaded.  If checked, the movie name will be appended to a savestate filename.

    -


    -


    -

    Display movie subtitles

    -


    -

    Toggles whether or not movie subtitles (imbedded into the .fm2 file, see .fm2 documentation) will be displayed on screen.

    -


    -


    -

    Put movie subtitles in AVI

    -


    -

    Toggles whether or not movie subtitles will be recorded into a .avi file.

    -


    -


    -

    Automatically backup movies

    -


    -

    If checked, the auto-movie backup is toggled on.  Whenever a movie is loaded then set into record mode (by loading a savestate while in read-write mode), a backup copy of the .fm2 is saved before changing the file.  

    -


    -

    Movie backups will be created only once each time a movie is loaded into FCEUX.  Movie backups are appended with a backup number and the .bak file extension.

    -


    -


    -

    Load full savestate-movies

    -


    -

    If checked, FCEUX will not truncate movie immediately when you load its savestate in Recording mode (thus behaving similar to VBA-rr and Snes9x emulators). If unchecked, the movie will always shrink to the frame of the savestate you loaded.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Movie Options

    + +
    + +

    +

    Movie Options

    +


    +


    +

    The movie option dialog has various settings related to movie making.

    +


    +

    Always suggest Read-Only replay

    +


    +

    If checked, FCEUX will automatically check "Open Read-Only" checkbox when showing "Play Movie" dialog. If unchecked, the "Open Read-Only" checkbox state will depend on current movie status.

    +


    +


    +

    Pause After Movie Playback

    +


    +

    If checked, FCEUX will automatically pause emulation when reaching the last frame of a movie file.

    +


    +


    +

    Close After Movie Playback

    +


    +

    If checked, FCEUX will close the movie after replaying its last frame. If unchecked, when reaching the last frame the movie will switch to "MOVIE_FINISHED" state, still allowing you to load its savestates.

    +


    +


    +

    Bind savestates to movies

    +


    +

    Affects the savestate naming system when a movie is loaded.  If checked, the movie name will be appended to a savestate filename.

    +


    +


    +

    Display movie subtitles

    +


    +

    Toggles whether or not movie subtitles (imbedded into the .fm2 file, see .fm2 documentation) will be displayed on screen.

    +


    +


    +

    Put movie subtitles in AVI

    +


    +

    Toggles whether or not movie subtitles will be recorded into a .avi file.

    +


    +


    +

    Automatically backup movies

    +


    +

    If checked, the auto-movie backup is toggled on.  Whenever a movie is loaded then set into record mode (by loading a savestate while in read-write mode), a backup copy of the .fm2 is saved before changing the file.  

    +


    +

    Movie backups will be created only once each time a movie is loaded into FCEUX.  Movie backups are appended with a backup number and the .bak file extension.

    +


    +


    +

    Load full savestate-movies

    +


    +

    If checked, FCEUX will not truncate movie immediately when you load its savestate in Recording mode (thus behaving similar to VBA-rr and Snes9x emulators). If unchecked, the movie will always shrink to the frame of the savestate you loaded.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free EPub producer

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/MovieRecording.html b/web/help/MovieRecording.html index f8ab1ab0..24ad69fb 100644 --- a/web/help/MovieRecording.html +++ b/web/help/MovieRecording.html @@ -1,157 +1,348 @@ - - + + + + + - Movie Recording - - - - - - - - - - + + + + + + + + Movie Recording + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Movie Recording

    - -
    - General ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Movie Recording

    -


    -

    Introduction

    -


    -

    A movie file is a file which contains data needed to reconstruct actions in a game. In most emulators, the movie files consist of simply the buttons that were pressed during the game. Because the emulation is completely predictable (deterministic), it will always play back the same way.

    -


    -

    Unless the movie starts from the console power-on or from reset, the movie file might also contain a savestate that loads the beginning point of the game.  Movie files don’t contain any sound or image data. Such data is not needed, because the emulator can reconstruct it during movie playback.

    -


    -

    Movie files in FCEUX are .fm2 files.  The file format is unique to FCEUX and not compatible with other movie recording versions of FCE Ultra.  Movie files from other versions (.fcm) can be converted to .fm2 for playback with the .fcm to .fm2 converter.

    -


    -

    Movie features in FCEUX are designed specifically for making Tool-assisted Speedruns.  For more information visit TASVideos.

    -


    -

    Recording Movies

    -


    -

    To record a movie, open a ROM.  Then simply select "Record Movie" in the File > Movie Menu.  You will be prompted to name the file and to select where to record from.  Selecting "Start" will begin the recording from a Power-on (Hard Reset).  If you select "Now", a savestate will be made at your current location in the game, and the movie will begin recording from there.  If you select browse, you will be prompted to find a preexisting savestate file to begin recording from.

    -


    -


    -

    Savestates, Slowdown, and Frame Advance

    -


    -

    At anytime while recording, you can make a *savestate.  This is a snapshot of the game's current memory contents.  Once a savestate is made, it can be loaded with the *loadstate command.  This will return the movie back to the spot in the game where the savestate was made.  This can be used to undo mistakes or to test different strategies for a particular segment.

    -


    -

    (The default key for making a savestate is "I" and the default key for loading a state is "P".  Both of these can be assigned under the Map Hotkeys Menu).  Both can also be access through the File > Savestate Menu

    -


    -

    Tool Assisted movies take advantage of slowing the emulator down in order to increase precision of the movie making process.  Navigating to NES > Emulation Speed > Slow down or pressing the "-" key will slow down emulation.  NES > Emulation Speed > Speed up or the "=" will speed it up.  (These can be re-mapped in the Map Hotkeys Menu).

    -


    -

    Even greater precision can be made using the frame advance key.  Pressing the frame advance key will pause emulation and advance it a single frame (1/60th of a second NTSC ).  By holding down input and pressing the frame advance key, it will record that input for that particular frame.

    -


    -

    For more info seeing Tool Assisted Speedruns.

    -


    -


    -

    "Bullet Proof Rerecording"

    -


    -

    All savestates made during movie recording contain the movie information up to the frame of the savestate.  When a savestate is loaded, the movie file in the savestate is also loaded.  This is referred to as "Bullet Proof Rerecording" because it prevents possible desyncs and lost data from improper/out of order savestate loading.

    -


    -


    -

    Playing Back Movies

    -


    -

    To play back a recorded movie, open the ROM.  Then select "Replay Movie" in the File Menu.  A movie dialog box will open where you can select the movie file.  

    -


    -

    You can also select whether the movie is in Read-only mode.  If a movie is in read-only mode, the movie file can not be altered in any way.  If you make a savestate while playing the movie and load that state, the playback will simply "rewind" to that state.  If the movie is not in read-only, however, loading a state will set the movie to record mode and begin recording from that savestate.

    -


    -

    You can also select "Pause movie at frame" x.  If selected, the movie will automatically pause when reaching the frame selected (the default is the last frame of the movie).

    -


    -


    -

    Read only

    -


    -

    You can select read-only when playing a movie.  You can also toggle the read-only status by navigating to File > Movie > Read only.

    -

    In read-only mode a movie can not be edited.  Loading a savestate will take the movie to that point in the movie and stay in playback mode.

    -


    -

    In read-write status, loading a state will change a movie from playback mode to record mode.

    -


    -


    -

    Resuming Recording

    -


    -

    You can resume recording a previous movie by playing back the movie, setting the record status to read+write, and then loading a state.

    -


    -


    -

    Play Movie from Beginning

    -


    -

    At any point while recording or playing back a movie, you can navigate to File > Movie > Play Movie from Beginning.  This will set the movie to read only status and reset playback to frame 0.

    -


    -

    Frame Counter

    -


    -

    The Frame counter displays what frame the movie is currently on.  If the movie is playing in read-only mode, it will also display the total number of frames in the movie.  The default key for toggling the Frame Counter display is the "." (period) key.  (This can be re-mapped in the Map Hotkeys Menu).

    -


    -


    -

    Frame Advance

    -


    -

    The frame advance key ("backlash" key by default.  Re-mappable under the Map Hotkeys Menu) will advance the game by a single frame and then pause the game.   If the hotkey is held down, it will auto advance quickly through the game.

    -


    -

    This is a critical tool when perfecting input in movie recording.

    -


    -

    Metadata

    -


    -

    When you record a new movie via the record movie dialog there is an author field.  This sends the info to the .fm2 file in the form of comment Author [author name] (see .fm2).  

    -


    -

    Any line in the .fm2 that starts with "comment" is known as metadata.  You can include any number of comments manually by editing the .fm2 file with any text editor.  

    -


    -

    On the replay movie dialog, clicking the metadata button will display all metadata in a separate dialog box (If a movie is currently loaded you can also access the meta-data by right-clicking and selecting Metadata in the context menu).

    -


    -


    -

    Subtitles

    -


    -

    FCEUX now supports subtitles in the .fm2 file format.  Subtitles will be displayed on the screen automatically as a movie plays.  You can turn on/off subtitles by navigating to Config > Movie Options > Display movie subtitles (see Movie options).

    -


    -

    For adding subtitles to a movie see the .fm2 documentation.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Web Help sites

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Movie Recording

    + +
    + +

    +

    Movie Recording

    +


    +

    Introduction

    +


    +

    A movie file is a file which contains data needed to reconstruct actions in a game. In most emulators, the movie files consist of simply the buttons that were pressed during the game. Because the emulation is completely predictable (deterministic), it will always play back the same way.

    +


    +

    Unless the movie starts from the console power-on or from reset, the movie file might also contain a savestate that loads the beginning point of the game.  Movie files don’t contain any sound or image data. Such data is not needed, because the emulator can reconstruct it during movie playback. 

    +


    +

    Movie files in FCEUX are .fm2 files.  The file format is unique to FCEUX and not compatible with other movie recording versions of FCE Ultra.  Movie files from other versions (.fcm) can be converted to .fm2 for playback with the .fcm to .fm2 converter.

    +


    +

    Movie features in FCEUX are designed specifically for making Tool-assisted Speedruns.  For more information visit TASVideos.

    +


    +

    Recording Movies

    +


    +

    To record a movie, open a ROM.  Then simply select "Record Movie" in the File > Movie Menu.  You will be prompted to name the file and to select where to record from.  Selecting "Start" will begin the recording from a Power-on (Hard Reset).  If you select "Now", a savestate will be made at your current location in the game, and the movie will begin recording from there.  If you select browse, you will be prompted to find a preexisting savestate file to begin recording from.

    +


    +


    +

    Savestates, Slowdown, and Frame Advance

    +


    +

    At anytime while recording, you can make a *savestate.  This is a snapshot of the game's current memory contents.  Once a savestate is made, it can be loaded with the *loadstate command.  This will return the movie back to the spot in the game where the savestate was made.  This can be used to undo mistakes or to test different strategies for a particular segment.

    +


    +

    (The default key for making a savestate is "I" and the default key for loading a state is "P".  Both of these can be assigned under the Map Hotkeys Menu).  Both can also be access through the File > Savestate Menu

    +


    +

    Tool Assisted movies take advantage of slowing the emulator down in order to increase precision of the movie making process.  Navigating to NES > Emulation Speed > Slow down or pressing the "-" key will slow down emulation.  NES > Emulation Speed > Speed up or the "=" will speed it up.  (These can be re-mapped in the Map Hotkeys Menu).

    +


    +

    Even greater precision can be made using the frame advance key.  Pressing the frame advance key will pause emulation and advance it a single frame (1/60th of a second NTSC ).  By holding down input and pressing the frame advance key, it will record that input for that particular frame.

    +


    +

    For more info seeing Tool Assisted Speedruns.

    +


    +


    +

    "Bullet Proof Rerecording"

    +


    +

    All savestates made during movie recording contain the movie information up to the frame of the savestate.  When a savestate is loaded, the movie file in the savestate is also loaded.  This is referred to as "Bullet Proof Rerecording" because it prevents possible desyncs and lost data from improper/out of order savestate loading.

    +


    +


    +

    Playing Back Movies

    +


    +

    To play back a recorded movie, open the ROM.  Then select "Replay Movie" in the File Menu.  A movie dialog box will open where you can select the movie file.  

    +


    +

    You can also select whether the movie is in Read-only mode.  If a movie is in read-only mode, the movie file can not be altered in any way.  If you make a savestate while playing the movie and load that state, the playback will simply "rewind" to that state.  If the movie is not in read-only, however, loading a state will set the movie to record mode and begin recording from that savestate.

    +


    +

    You can also select "Pause movie at frame" x.  If selected, the movie will automatically pause when reaching the frame selected (the default is the last frame of the movie).

    +


    +


    +

    Read only

    +


    +

    You can select read-only when playing a movie.  You can also toggle the read-only status by navigating to File > Movie > Read only.

    +

    In read-only mode a movie can not be edited.  Loading a savestate will take the movie to that point in the movie and stay in playback mode.

    +


    +

    In read-write status, loading a state will change a movie from playback mode to record mode.

    +


    +


    +

    Resuming Recording

    +


    +

    You can resume recording a previous movie by playing back the movie, setting the record status to read+write, and then loading a state.

    +


    +


    +

    Play Movie from Beginning

    +


    +

    At any point while recording or playing back a movie, you can navigate to File > Movie > Play Movie from Beginning.  This will set the movie to read only status and reset playback to frame 0.

    +


    +

    Frame Counter

    +


    +

    The Frame counter displays what frame the movie is currently on.  If the movie is playing in read-only mode, it will also display the total number of frames in the movie.  The default key for toggling the Frame Counter display is the "." (period) key.  (This can be re-mapped in the Map Hotkeys Menu).

    +


    +


    +

    Frame Advance

    +


    +

    The frame advance key ("backlash" key by default.  Re-mappable under the Map Hotkeys Menu) will advance the game by a single frame and then pause the game.   If the hotkey is held down, it will auto advance quickly through the game.

    +


    +

    This is a critical tool when perfecting input in movie recording.

    +


    +

    Metadata

    +


    +

    When you record a new movie via the record movie dialog there is an author field.  This sends the info to the .fm2 file in the form of comment Author [author name] (see .fm2).  

    +


    +

    Any line in the .fm2 that starts with "comment" is known as metadata.  You can include any number of comments manually by editing the .fm2 file with any text editor.  

    +


    +

    On the replay movie dialog, clicking the metadata button will display all metadata in a separate dialog box (If a movie is currently loaded you can also access the meta-data by right-clicking and selecting Metadata in the context menu).

    +


    +


    +

    Subtitles

    +


    +

    FCEUX now supports subtitles in the .fm2 file format.  Subtitles will be displayed on the screen automatically as a movie plays.  You can turn on/off subtitles by navigating to Config > Movie Options > Display movie subtitles (see Movie options).

    +


    +

    For adding subtitles to a movie see the .fm2 documentation.

    +

    +

    Created with the Personal Edition of HelpNDoc: Produce online help for Qt applications

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Movieformats.html b/web/help/Movieformats.html index fe374758..283d3fec 100644 --- a/web/help/Movieformats.html +++ b/web/help/Movieformats.html @@ -1,80 +1,271 @@ - - + + + + + - Movie & Savestate formats - - - - - - - - - - + + + + + + + + Movie & Savestate formats + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Movie & Savestate formats

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Movie and Savestate File Formats

    -


    -

    The Following documentation deals with the specific technical information regarding the format of movie & savestate files.

    -


    -

    .fm2 - FCEUX Movie file format

    -


    -

    .fcm - Movie file format from previous FCEU versions (compatible with FCEUX via Convert FCM)

    -


    -

    .fcs - Savestate file format

    -

    -

    Created with the Personal Edition of HelpNDoc: Easy CHM and documentation editor

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Movie & Savestate formats

    + +
    + +

    +

    Movie and Savestate File Formats

    +


    +

    The Following documentation deals with the specific technical information regarding the format of movie & savestate files.

    +


    +

    .fm2 - FCEUX Movie file format

    +


    +

    .fcm - Movie file format from previous FCEU versions (compatible with FCEUX via Convert FCM)

    +


    +

    .fcs - Savestate file format

    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NES.html b/web/help/NES.html index c356078f..6660a35e 100644 --- a/web/help/NES.html +++ b/web/help/NES.html @@ -1,120 +1,311 @@ - - + + + + + - NES Menu - - - - - - - - - - + + + + + + + + NES Menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    NES Menu

    - -
    - General ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    NES

    -


    -

    Explains commands in the NES menu of FCEUX.

    -

    All these commands can be mapped to a keyboard/joypad button in the Map Hotkeys Menu.

    -


    -

    Reset

    -

    Emulates the pressing of the Reset Button on the NES. ("Soft reset").

    -


    -

    Power

    -

    Emulates a power cycle, which is turning the power on and off with the Power button on the NES. ("Hard Reset")

    -


    -

    Eject/Insert Disk

    -

    Ejects or inserts a FDS disk.  (See Famicom Disk System)

    -


    -

    Switch Disk Side

    -

    Switches Sides of a FDS disk. (See Famicom Disk System)

    -


    -

    Insert Coin

    -

    Emulates the inserting of a coin in an arcade-style game.

    -


    -


    -

    Emulation Speed Sub Menu

    -


    -

    Speed Up

    -

    Speeds up emulation (emulation speed ranges from 1% to 6400%)

    -


    -

    Slow Down

    -

    Slows down emulation

    -


    -

    Slowest Speed

    -

    Sets emulation to 1% speed

    -


    -

    Normal Speed

    -

    Sets emulation speed to 100%

    -


    -

    Turbo

    -

    Toggles turbo mode.   In turbo mode, emulation is set its fastest settings.

    -


    -

    Set Custom Speed

    -

    Allows you to define emulation speed by entering the number of percents (1-1000, default is 100%)

    -


    -

    Set FrameAdvance Delay

    -

    Here you can fine-tune the working of the Frame Advance key. This setting defines the delay between the moment you press Frame Advance and the moment it starts continuous emulation

    -


    -

    Set custom speed for FrameAdvance

    -

    Here you can fine-tune the working of the Frame Advance key. This setting defines the speed of continuous emulation while you're holding Frame Advance. If you leave it 0 (zero), the emulation speed will be the same as the current emulation speed (from 1% to 6400%), but if you enter a number from 1 to 1000, the current emulation speed will be ignored when holding Frame Advance.

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Kindle eBooks generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    NES Menu

    + +
    + +

    +

    NES

    +


    +

    Explains commands in the NES menu of FCEUX.

    +

    All these commands can be mapped to a keyboard/joypad button in the Map Hotkeys Menu.

    +


    +

    Reset

    +

    Emulates the pressing of the Reset Button on the NES. ("Soft reset").

    +


    +

    Power

    +

    Emulates a power cycle, which is turning the power on and off with the Power button on the NES. ("Hard Reset")

    +


    +

    Eject/Insert Disk

    +

    Ejects or inserts a FDS disk.  (See Famicom Disk System)

    +


    +

    Switch Disk Side

    +

    Switches Sides of a FDS disk. (See Famicom Disk System)

    +


    +

    Insert Coin

    +

    Emulates the inserting of a coin in an arcade-style game.

    +


    +


    +

    Emulation Speed Sub Menu

    +


    +

    Speed Up

    +

    Speeds up emulation (emulation speed ranges from 1% to 6400%)

    +


    +

    Slow Down

    +

    Slows down emulation

    +


    +

    Slowest Speed

    +

    Sets emulation to 1% speed

    +


    +

    Normal Speed

    +

    Sets emulation speed to 100%

    +


    +

    Turbo

    +

    Toggles turbo mode.   In turbo mode, emulation is set its fastest settings.

    +


    +

    Set Custom Speed

    +

    Allows you to define emulation speed by entering the number of percents (1-1000, default is 100%)

    +


    +

    Set FrameAdvance Delay

    +

    Here you can fine-tune the working of the Frame Advance key. This setting defines the delay between the moment you press Frame Advance and the moment it starts continuous emulation

    +


    +

    Set custom speed for FrameAdvance

    +

    Here you can fine-tune the working of the Frame Advance key. This setting defines the speed of continuous emulation while you're holding Frame Advance. If you leave it 0 (zero), the emulation speed will be the same as the current emulation speed (from 1% to 6400%), but if you enter a number from 1 to 1000, the current emulation speed will be ignored when holding Frame Advance.

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easy to use tool to create HTML Help files and Help web sites

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NESProcessor.html b/web/help/NESProcessor.html index 8cd32d5a..9eb7dd77 100644 --- a/web/help/NESProcessor.html +++ b/web/help/NESProcessor.html @@ -1,82 +1,273 @@ - - + + + + + - NES Processing - - - - - - - - - - + + + + + + + + NES Processing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    NES Processing

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    NES Processing

    -


    -

    Includes Technical Specifications for the emulation of the NES CPU (6502) and the NES PPU (2C02).

    -


    -

    CPU

    -


    -

    PPU

    -


    -

    NES Scrolling part 1

    -


    -

    NES Scrolling part 2

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create HTML Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + + + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NESRAMMappingFindingValues.html b/web/help/NESRAMMappingFindingValues.html index d8a02909..1d804ce4 100644 --- a/web/help/NESRAMMappingFindingValues.html +++ b/web/help/NESRAMMappingFindingValues.html @@ -1,279 +1,470 @@ - - + + + + + - NES RAM (Mapping/Finding Values) - - - - - - - - - - + + + + + + + + NES RAM (Mapping/Finding Values) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    NES RAM (Mapping/Finding Values)

    - -
    - FAQ / Guides ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    NES Mapping

    -


    -

    This guide gives a map of the addresses in the NES cpu and explains each portion in detail.  

    -


    -

    It also provides information for the basic layout of ram values in typical NES games.  This info can be used to quickly map and find useful values in the game's ram.

    -


    -

    Contents

    -


    -

    Memory Map

    -

           Gives a diagram of the 2A03 CPU memory map .

    -


    -

    2C02 PPU memory map

    -

           Gives more detailed info about each section of the Memory map diagram

    -


    -

    Game Ram Details

    -

           On board RAM Map ($000-$07FF) Map (gives specific info on the how NES games typically layout their ram values)

    -


    -

    Online Resources

    -

    NES Programming - Wikipedia

    -

    NES Memory Map

    -


    -


    -

    Memory Map (NES RAM/ROM)

    -


    -

    2A03 CPU memory map

    -

    2A03 CPU is a 6502-compatible CPU without the decimal mode (CLD and SED do nothing). It has an on-die sound generator, very limited DMA capability, and an input device controller that can be accessed through the 2A03 registers.

    -


    -

                                                                                                                                               

    -

    6502 CPU Memory Map                                                                                                                              

    -

    Address Range                Size in bytes        Notes (Page size = 256bytes)

    -

    (Hexadecimal)                                                                                                                                                                                    

    -


    -

    $0000 - $07FF                2048                Game Ram

    -


    -

    ($0000 - $00FF)                256                Zero Page - Special Zero Page addressing modes give faster memory read/write access

    -

    ($0100 - $01FF)                256                Stack memory

    -

    ($0200 - $07FF)                1536                RAM

    -

                                                                                                                                                                                                                   

    -


    -

    $0800 - $0FFF                2048                Mirror of $0000-$07FF        

    -


    -

    ($0800 - $08FF)                256                 Zero Page

    -

    ($0900 - $09FF)        256                Stack

    -

    ($0A00 - $0FFF)                1024                Ram

    -

                                                                                                                                                                                                                   

    -


    -

    $1000 - $17FF                2048 bytes        Mirror of $0000-$07FF

    -


    -

    ($1000 - $10FF)                256                Zero Page

    -

    $1100 - $11FF                256                Stack

    -

    $1200 - $17FF                1024                RAM

    -

                                                                                                                                                                                                                   

    -


    -

    $1800 - $1FFF                2048 bytes        Mirror of $0000-$07FF        

    -


    -

    ($1800 - $18FF)                256                Zero Page

    -

    ($1900 - $19FF)                256                Stack

    -

    ($1A00 - $1FFF)        1024                RAM

    -

                                                                                                                                                                                                                   

    -


    -

    $2000 - $2007                8 bytes                Input / Output registers

    -

    $2008 - $3FFF                8184 bytes        Mirror of $2000-$2007 (mulitple times)

    -

                                                                                                                                                                                                                   

    -


    -

    $4000 - $401F                32 bytes        Input / Output registers

    -

    $4020 - $5FFF                8160 bytes        Expansion ROM - Used with Nintendo's MMC5 to expand the capabilities of VRAM.

    -

                                                                                                                                                                                                                   

    -


    -

    $6000 - $7FFF                8192 bytes        SRAM - Save Ram used to save data between game plays.

    -

                                                                                                                                                                                                                   

    -


    -

    $8000 - $BFFF                16384 bytes        PRG-ROM lower bank - executable code

    -

    $C000 - $FFFF                16384 bytes        PRG-ROM upper bank - executable code

    -

    $FFFA - $FFFB        2 bytes                Address of Non Maskable Interrupt (NMI) handler routine

    -

    $FFFC - $FFFD        2 bytes                Address of Power on reset handler routine

    -

    $FFFE - $FFFF                2 bytes                Address of Break (BRK instruction) handler routine

    -

                                                                                                                                                                                                                   

    -


    -


    -

    2C02 PPU memory map

    -


    -

    2C02 PPU is a character generator with sprites, designed by Nintendo specifically for the NES.

    -


    -

        __________________________________________

    -

    0000| Pattern table 0                          |

    -

       |__________________________________________|

    -

    1000| Pattern table 1                          |

    -

       |__________________________________________|   _____ _____

    -

    2000| Nametable 0                              |  |     |     |

    -

       |__________________________________________|  |  0  |  1  |

    -

    2400| Nametable 1                              |  |_____|_____|

    -

       |__________________________________________|  |     |     |

    -

    2800| Nametable 2                              |  |  2  |  3  |

    -

       |__________________________________________|  |_____|_____|

    -

    2c00| Nametable 3                              |

    -

       |__________________________________________|

    -

    3000| Mirror of $2000-$2eff                    |

    -

       |__________________________________________|

    -

    3f00| Palette                                  |

    -

       |__________________________________________|

    -

    3f20| Mirrors of $3f00-$3f1f                   |

    -

       |__________________________________________|

    -


    -

    The NES PPU has enough RAM for two nametables (0 and 3); it brings some PPU nametable address lines to the cart edge so that the cart can decide whether to map 0 onto 2 and 1 onto 3 (vertical mirroring as in Super Mario Brothers and Contra) or 0 onto 1 and 2 onto 3 (horizontal mirroring as in Kid Icarus and Ikari), all screens to either 0 or 3 (as in many Rare games such as Battletoads and Jeopardy!), or all screens to RAM on the cartridge (as in Gauntlet). Split-screen games that scroll in all four directions (such as Super Mario Brothers 3 and Kirby's Adventure) often use vertical or one-screen mirroring (with a small amount of screen corruption at the sides due to tiles wrapping around the sides) and stick the status bar in some random unused area of the screen.

    -


    -


    -

    Game RAM Details

    -

           Mapping RAM/Finding Ram

    -

           Written by: adelikat

    -


    -

    This guide is written specifically for finding useful values for TAS movie making.  

    -

    It does not tell you how to use specific tools to find values.  For that refer to Hex editor, Cheat Search, and RAM filter.

    -


    -

    Most games use the basic on board ram.  The address range of this ram is $0000-$07FF.  This translates to 2048 possible ram values.

    -


    -

    Pages

    -


    -

    This ram is broken down into 8 pages.  A "page" is a block of 256 ram values.

    -


    -

    I will refer to these values as such:

    -

    Block 0                $00xx                ($0000-$00FF)

    -

    Block 1                $01xx                ($0100-$01FF)

    -

    Block 2                $02xx                ($0200-$02FF)

    -

    Block 3                $03xx                ($0300-$03FF)

    -

    Block 4                $04xx                ($0400-$04FF)

    -

    Block 5                $05xx                ($0500-$05FF)

    -

    Block 6                $06xx                ($0600-$06FF)

    -

    Block 7                $07xx                ($0700-$07FF)

    -


    -

    Each block will be organized will similar data.  For instance, all sprite data will be in the same block.  Enemy/Player statistics (energy, coordinates, speed, etc.) will be in another.  For instance, if you find the main character's HP and it is located in block 3, you know that the remaining stats for the character are also in that block.  This can significantly cut down time when trying to find related values.

    -


    -

    There are always the following blocks:

    -


    -

    Sprite Data                Block 2

    -


    -

    I've yet to see map a game that does not use this block solely for sprite data.  It will contain the "ID" numbers for all the items currently on the screen.  Simply put, this data is precisely the data you see on the screen.  For making TAS movies this is not useful data.  If you are using cheat search and have narrowed it down your search to a few values, you can immediately discard any $02xx values.

    -


    -

    In games with a lot of sprite data, I've seen blocks 1 & 3 also reserved for sprite data.

    -


    -

    Music & Sound FX        Block 1 or 7, generally

    -


    -

    This one has more deviation, but almost all games reserve an entire block for memory allocated to the game's Music and Sound FX.  Again, for TAS purposes these values are not *useful. By finding even 1 of these values, you can eliminate that block from your search possibilities.   Finding which block is reserved for music is often quite simple with the Hex editor.  Watching the ram values with the game playing, you can see which addresses "move to the beat".  

    -


    -

    *Actually they can come in handy for "dancing to the beat"

    -


    -

    Player & Enemy Stats        Blocks 1,3,4,5 generally (any or all of these)

    -


    -

    This is your "sweet spot" for movie making, as often you will be wanting to track the players speed or coordinates, enemy energy, or enemy coordinates.

    -


    -

    These values rarely (if at all) reside outside blocks 1, 3, 4, or 5.  This knowledge already reduces your search possibilities in half!

    -


    -

    Rows

    -


    -

    Each block is broken down into 16 "rows" of addresses.  For example, in block 3, the first row is $030x ($0300-$030F).

    -


    -

    Each row of 16* will contain similar data.  For instance all x coordinates will generally be in the same row.  So xxx0 might be the main characters x position.  xxxx1 would be "enemy 1" (1st enemy loaded onto the screen), and so on.

    -


    -

    The y coordinates would be in another row, x subpixel values in yet another row, etc.

    -


    -

    *Super Mario Bros. 2 (U) is a rare example that uses rows of 10

    -


    -

    Columns

    -


    -

    A column would be all the values of a block that share the same last digit.  So a column would be 16 addresses such as $0300, $0310, $0320, etc.

    -


    -

    For enemy/player stats, columns usually refer to the same player or enemy.

    -


    -

    So for example, if a player's energy was stored in $0300.  The remaining row will be other player/enemy's energy.  

    -


    -

    If the next row ($031x) is x positions.  $0310 would be the player's x position.  The remaining positions of that row would correspond to the other player/enemy x positions in line with the hp values of the previous row.

    -


    -

    Example

    -


    -

    These distinctions are easier to see in a visual example.  This is the enemy/player stats as they are mapped in the game Teenage Mutant Ninja Turtles.

    -


    -

    Block 4

    -

                               P  W1 W2 W3 E1 E2 E3 E4 E5 E6 E7 E8 X  X  X  X  

    -

    Sprite ID:        040x: 09 00 00 00 00 9E 9E 9E 9E 00 00 00 00 00 00 00

    -

    ID counter:       041x: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    -

    Timer/sp change:  042x: 02 00 00 00 00 03 03 03 03 00 00 00 00 00 00 00

    -

    hit animation:    043x: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    -

    characteristics:  044x: 00 00 00 00 00 8D 8D 8D 8D 00 00 00 00 00 00 00

    -

    characteristics:  045x: C2 00 00 00 00 C2 C2 C3 C3 00 00 00 00 00 00 00

    -

    Y position:       046x: 4C 00 00 00 00 B4 B4 64 B4 00 00 00 00 00 00 00

    -

    Y subpixel:       047x: 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    -

    X position:       048x: 50 00 00 00 00 79 B9 CC CC 00 00 00 00 00 00 00

    -

    X subpixel:       049x: 80 00 00 00 00 C0 C0 C0 00 00 00 00 00 00 00 00

    -

    Not used:         04ax: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    -

    Y pix speed:      04bx: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    -

    Y subpix speed:   04cx: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    -

    Not used:         04dx: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    -

    X pix speed:      04ex: 00 00 00 00 00 01 01 FE FE 00 00 00 00 00 00 00

    -

    X subpix speed:   04fx: 00 00 00 00 00 60 60 A0 A0 00 00 00 00 00 00 00

    -


    -

    P = current turtle (player)

    -

    W = weapon (up to 3 on the screen at one time)

    -

    E = enemy (up to 8 on the screen at one time)

    -

    X = no use

    -


    -

    E1 = "Enemy slot 1" which will be the first enemy on the screen loaded into memory.  The 2nd will be placed in "Enemy slot 2".  When enemy 1 is removed from memory (killed or goes off screen), the next enemy will be loaded into that slot.  Enemy's always take the lowest available slot when loaded.  Note: usually enemy slots are in reverse order.  So the first addresses is usually the last enemy slot loaded into memory.  TMNT is an exception.

    -


    -

    All object (player, weapon, enemy) characteristics reside in block 4.

    -

    Each row is a different characteristic of each object on the screen (040x refers to a sprite ID of an object)

    -

    Each column corresponds to a specific object on the screen.  (All 04x0 's refer to the player).

    -


    -

    See also, Memory Watch, Hex Editor, Cheat Search, Ram Filter, Movie Making, Tool Assisted Speedruns

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free CHM Help documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    NES RAM (Mapping/Finding Values)

    + +
    + +

    +

    NES Mapping

    +


    +

    This guide gives a map of the addresses in the NES cpu and explains each portion in detail.  

    +


    +

    It also provides information for the basic layout of ram values in typical NES games.  This info can be used to quickly map and find useful values in the game's ram.

    +


    +

    Contents

    +


    +

    Memory Map

    +

           Gives a diagram of the 2A03 CPU memory map .

    +


    +

    2C02 PPU memory map

    +

           Gives more detailed info about each section of the Memory map diagram

    +


    +

    Game Ram Details

    +

           On board RAM Map ($000-$07FF) Map (gives specific info on the how NES games typically layout their ram values)

    +


    +

    Online Resources

    +

    NES Programming - Wikipedia

    +

    NES Memory Map

    +


    +


    +

    Memory Map (NES RAM/ROM)

    +


    +

    2A03 CPU memory map

    +

    2A03 CPU is a 6502-compatible CPU without the decimal mode (CLD and SED do nothing). It has an on-die sound generator, very limited DMA capability, and an input device controller that can be accessed through the 2A03 registers.

    +


    +

                                                                                                                                                

    +

    6502 CPU Memory Map                                                                                                                              

    +

    Address Range                 Size in bytes        Notes (Page size = 256bytes)

    +

    (Hexadecimal)                                                                                                                                                                                    

    +


    +

    $0000 - $07FF                2048                Game Ram

    +


    +

    ($0000 - $00FF)                256                 Zero Page - Special Zero Page addressing modes give faster memory read/write access

    +

    ($0100 - $01FF)                256                 Stack memory

    +

    ($0200 - $07FF)                1536                 RAM

    +

                                                                                                                                                                                                                    

    +


    +

    $0800 - $0FFF                 2048                  Mirror of $0000-$07FF         

    +


    +

    ($0800 - $08FF)                256                  Zero Page

    +

    ($0900 - $09FF)         256                 Stack

    +

    ($0A00 - $0FFF)                1024                Ram

    +

                                                                                                                                                                                                                    

    +


    +

    $1000 - $17FF                 2048 bytes        Mirror of $0000-$07FF

    +


    +

    ($1000 - $10FF)                256                Zero Page

    +

    $1100 - $11FF                256                 Stack

    +

    $1200 - $17FF                 1024                RAM

    +

                                                                                                                                                                                                                    

    +


    +

    $1800 - $1FFF                 2048 bytes         Mirror of $0000-$07FF         

    +


    +

    ($1800 - $18FF)                256                Zero Page

    +

    ($1900 - $19FF)                256                Stack

    +

    ($1A00 - $1FFF)         1024                RAM

    +

                                                                                                                                                                                                                    

    +


    +

    $2000 - $2007                 8 bytes                 Input / Output registers

    +

    $2008 - $3FFF                 8184 bytes         Mirror of $2000-$2007 (mulitple times)

    +

                                                                                                                                                                                                                    

    +


    +

    $4000 - $401F                 32 bytes         Input / Output registers

    +

    $4020 - $5FFF                 8160 bytes         Expansion ROM - Used with Nintendo's MMC5 to expand the capabilities of VRAM.

    +

                                                                                                                                                                                                                    

    +


    +

    $6000 - $7FFF                 8192 bytes         SRAM - Save Ram used to save data between game plays.

    +

                                                                                                                                                                                                                    

    +


    +

    $8000 - $BFFF                 16384 bytes         PRG-ROM lower bank - executable code

    +

    $C000 - $FFFF                 16384 bytes         PRG-ROM upper bank - executable code

    +

    $FFFA - $FFFB         2 bytes                 Address of Non Maskable Interrupt (NMI) handler routine

    +

    $FFFC - $FFFD         2 bytes                 Address of Power on reset handler routine

    +

    $FFFE - $FFFF                 2 bytes                 Address of Break (BRK instruction) handler routine

    +

                                                                                                                                                                                                                    

    +


    +


    +

    2C02 PPU memory map

    +


    +

    2C02 PPU is a character generator with sprites, designed by Nintendo specifically for the NES.

    +


    +

         __________________________________________

    +

    0000| Pattern table 0                          |

    +

        |__________________________________________|

    +

    1000| Pattern table 1                          |

    +

        |__________________________________________|   _____ _____

    +

    2000| Nametable 0                              |  |     |     |

    +

        |__________________________________________|  |  0  |  1  |

    +

    2400| Nametable 1                              |  |_____|_____|

    +

        |__________________________________________|  |     |     |

    +

    2800| Nametable 2                              |  |  2  |  3  |

    +

        |__________________________________________|  |_____|_____|

    +

    2c00| Nametable 3                              |

    +

        |__________________________________________|

    +

    3000| Mirror of $2000-$2eff                    |

    +

        |__________________________________________|

    +

    3f00| Palette                                  |

    +

        |__________________________________________|

    +

    3f20| Mirrors of $3f00-$3f1f                   |

    +

        |__________________________________________|

    +


    +

    The NES PPU has enough RAM for two nametables (0 and 3); it brings some PPU nametable address lines to the cart edge so that the cart can decide whether to map 0 onto 2 and 1 onto 3 (vertical mirroring as in Super Mario Brothers and Contra) or 0 onto 1 and 2 onto 3 (horizontal mirroring as in Kid Icarus and Ikari), all screens to either 0 or 3 (as in many Rare games such as Battletoads and Jeopardy!), or all screens to RAM on the cartridge (as in Gauntlet). Split-screen games that scroll in all four directions (such as Super Mario Brothers 3 and Kirby's Adventure) often use vertical or one-screen mirroring (with a small amount of screen corruption at the sides due to tiles wrapping around the sides) and stick the status bar in some random unused area of the screen. 

    +


    +


    +

    Game RAM Details

    +

           Mapping RAM/Finding Ram

    +

           Written by: adelikat

    +


    +

    This guide is written specifically for finding useful values for TAS movie making.  

    +

    It does not tell you how to use specific tools to find values.  For that refer to Hex editor, Cheat Search, and RAM filter.

    +


    +

    Most games use the basic on board ram.  The address range of this ram is $0000-$07FF.  This translates to 2048 possible ram values.

    +


    +

    Pages

    +


    +

    This ram is broken down into 8 pages.  A "page" is a block of 256 ram values.

    +


    +

    I will refer to these values as such:

    +

    Block 0                $00xx                ($0000-$00FF)

    +

    Block 1                $01xx                ($0100-$01FF)

    +

    Block 2                $02xx                ($0200-$02FF)

    +

    Block 3                $03xx                ($0300-$03FF)

    +

    Block 4                $04xx                ($0400-$04FF)

    +

    Block 5                $05xx                ($0500-$05FF)

    +

    Block 6                $06xx                ($0600-$06FF)

    +

    Block 7                $07xx                ($0700-$07FF)

    +


    +

    Each block will be organized will similar data.  For instance, all sprite data will be in the same block.  Enemy/Player statistics (energy, coordinates, speed, etc.) will be in another.  For instance, if you find the main character's HP and it is located in block 3, you know that the remaining stats for the character are also in that block.  This can significantly cut down time when trying to find related values.

    +


    +

    There are always the following blocks:

    +


    +

    Sprite Data                Block 2

    +


    +

    I've yet to see map a game that does not use this block solely for sprite data.  It will contain the "ID" numbers for all the items currently on the screen.  Simply put, this data is precisely the data you see on the screen.  For making TAS movies this is not useful data.  If you are using cheat search and have narrowed it down your search to a few values, you can immediately discard any $02xx values.

    +


    +

    In games with a lot of sprite data, I've seen blocks 1 & 3 also reserved for sprite data.

    +


    +

    Music & Sound FX        Block 1 or 7, generally

    +


    +

    This one has more deviation, but almost all games reserve an entire block for memory allocated to the game's Music and Sound FX.  Again, for TAS purposes these values are not *useful. By finding even 1 of these values, you can eliminate that block from your search possibilities.   Finding which block is reserved for music is often quite simple with the Hex editor.  Watching the ram values with the game playing, you can see which addresses "move to the beat".  

    +


    +

    *Actually they can come in handy for "dancing to the beat"

    +


    +

    Player & Enemy Stats        Blocks 1,3,4,5 generally (any or all of these)

    +


    +

    This is your "sweet spot" for movie making, as often you will be wanting to track the players speed or coordinates, enemy energy, or enemy coordinates.

    +


    +

    These values rarely (if at all) reside outside blocks 1, 3, 4, or 5.  This knowledge already reduces your search possibilities in half!

    +


    +

    Rows 

    +


    +

    Each block is broken down into 16 "rows" of addresses.  For example, in block 3, the first row is $030x ($0300-$030F).

    +


    +

    Each row of 16* will contain similar data.  For instance all x coordinates will generally be in the same row.  So xxx0 might be the main characters x position.  xxxx1 would be "enemy 1" (1st enemy loaded onto the screen), and so on.

    +


    +

    The y coordinates would be in another row, x subpixel values in yet another row, etc.

    +


    +

    *Super Mario Bros. 2 (U) is a rare example that uses rows of 10

    +


    +

    Columns

    +


    +

    A column would be all the values of a block that share the same last digit.  So a column would be 16 addresses such as $0300, $0310, $0320, etc.

    +


    +

    For enemy/player stats, columns usually refer to the same player or enemy.

    +


    +

    So for example, if a player's energy was stored in $0300.  The remaining row will be other player/enemy's energy.  

    +


    +

    If the next row ($031x) is x positions.  $0310 would be the player's x position.  The remaining positions of that row would correspond to the other player/enemy x positions in line with the hp values of the previous row.

    +


    +

    Example

    +


    +

    These distinctions are easier to see in a visual example.  This is the enemy/player stats as they are mapped in the game Teenage Mutant Ninja Turtles.

    +


    +

    Block 4

    +

                               P  W1 W2 W3 E1 E2 E3 E4 E5 E6 E7 E8 X  X  X  X  

    +

    Sprite ID:        040x: 09 00 00 00 00 9E 9E 9E 9E 00 00 00 00 00 00 00

    +

    ID counter:       041x: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    +

    Timer/sp change:  042x: 02 00 00 00 00 03 03 03 03 00 00 00 00 00 00 00

    +

    hit animation:    043x: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    +

    characteristics:  044x: 00 00 00 00 00 8D 8D 8D 8D 00 00 00 00 00 00 00

    +

    characteristics:  045x: C2 00 00 00 00 C2 C2 C3 C3 00 00 00 00 00 00 00

    +

    Y position:       046x: 4C 00 00 00 00 B4 B4 64 B4 00 00 00 00 00 00 00

    +

    Y subpixel:       047x: 34 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    +

    X position:       048x: 50 00 00 00 00 79 B9 CC CC 00 00 00 00 00 00 00

    +

    X subpixel:       049x: 80 00 00 00 00 C0 C0 C0 00 00 00 00 00 00 00 00

    +

    Not used:         04ax: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    +

    Y pix speed:      04bx: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    +

    Y subpix speed:   04cx: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    +

    Not used:         04dx: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

    +

    X pix speed:      04ex: 00 00 00 00 00 01 01 FE FE 00 00 00 00 00 00 00

    +

    X subpix speed:   04fx: 00 00 00 00 00 60 60 A0 A0 00 00 00 00 00 00 00

    +


    +

    P = current turtle (player)

    +

    W = weapon (up to 3 on the screen at one time)

    +

    E = enemy (up to 8 on the screen at one time)

    +

    X = no use

    +


    +

    E1 = "Enemy slot 1" which will be the first enemy on the screen loaded into memory.  The 2nd will be placed in "Enemy slot 2".  When enemy 1 is removed from memory (killed or goes off screen), the next enemy will be loaded into that slot.  Enemy's always take the lowest available slot when loaded.  Note: usually enemy slots are in reverse order.  So the first addresses is usually the last enemy slot loaded into memory.  TMNT is an exception.

    +


    +

    All object (player, weapon, enemy) characteristics reside in block 4.

    +

    Each row is a different characteristic of each object on the screen (040x refers to a sprite ID of an object)

    +

    Each column corresponds to a specific object on the screen.  (All 04x0 's refer to the player).

    +


    +

    See also, Memory Watch, Hex Editor, Cheat Search, Ram Filter, Movie Making, Tool Assisted Speedruns

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easy CHM and documentation editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NESScrolling1.html b/web/help/NESScrolling1.html index 166ba59f..9488442f 100644 --- a/web/help/NESScrolling1.html +++ b/web/help/NESScrolling1.html @@ -1,126 +1,317 @@ - - + + + + + - NES Scrolling 1 - - - - - - - - - - + + + + + + + + NES Scrolling 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    NES Scrolling 1

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Subject: [nesdev] the skinny on nes scrolling

    -

    Date: Tue, 13 Apr 1999 16:42:00 -0600

    -

    From: loopy <zxcvzxcv@netzero.net>

    -

    Reply-To: nesdev@onelist.com

    -

    To: nesdev@onelist.com

    -


    -

    From: loopy <zxcvzxcv@netzero.net>

    -


    -

    ---------

    -

    the current information on background scrolling is sufficient for most games;

    -

    however, there are a few that require a more complete understanding.

    -


    -

    here are the related registers:

    -

           (v) vram address, a.k.a. 2006 which we all know and love.  (16 bits)

    -

           (t) another temp vram address (16 bits)

    -

              (you can really call them 15 bits, the last isn't used)

    -

          (x) tile X offset (3 bits)

    -


    -

    the ppu uses the vram address for both reading/writing to vram thru 2007,

    -

    and for fetching nametable data to draw the background.  as it's drawing the

    -

    background, it updates the address to point to the nametable data currently

    -

    being drawn.  bits 0-11 hold the nametable address (-$2000).  bits 12-14 are

    -

    the tile Y offset.

    -


    -

    ---------

    -

    stuff that affects register contents:

    -

    (sorry for the shorthand logic but i think it's easier to see this way)

    -


    -

    2000 write:

    -

           t:0000110000000000=d:00000011

    -

    2005 first write:

    -

           t:0000000000011111=d:11111000

    -

           x=d:00000111

    -

    2005 second write:

    -

           t:0000001111100000=d:11111000

    -

           t:0111000000000000=d:00000111

    -

    2006 first write:

    -

           t:0011111100000000=d:00111111

    -

           t:1100000000000000=0

    -

    2006 second write:

    -

           t:0000000011111111=d:11111111

    -

           v=t

    -

    scanline start (if background and sprites are enabled):

    -

           v:0000010000011111=t:0000010000011111

    -

    frame start (line 0) (if background and sprites are enabled):

    -

           v=t

    -


    -

    note!  2005 and 2006 share the toggle that selects between first/second

    -

    writes.  reading 2002 will clear it.

    -


    -

    note!  all of this info agrees with the tests i've run on a real nes.  BUT

    -

    if there's something you don't agree with, please let me know so i can verify

    -

    it.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free EPub and documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    NES Scrolling 1

    + +
    + +

    +

    Subject: [nesdev] the skinny on nes scrolling

    +

    Date: Tue, 13 Apr 1999 16:42:00 -0600

    +

    From: loopy <zxcvzxcv@netzero.net>

    +

    Reply-To: nesdev@onelist.com

    +

    To: nesdev@onelist.com

    +


    +

    From: loopy <zxcvzxcv@netzero.net>

    +


    +

    ---------

    +

    the current information on background scrolling is sufficient for most games;

    +

    however, there are a few that require a more complete understanding.

    +


    +

    here are the related registers:

    +

            (v) vram address, a.k.a. 2006 which we all know and love.  (16 bits)

    +

            (t) another temp vram address (16 bits)

    +

               (you can really call them 15 bits, the last isn't used)

    +

           (x) tile X offset (3 bits)

    +


    +

    the ppu uses the vram address for both reading/writing to vram thru 2007,

    +

    and for fetching nametable data to draw the background.  as it's drawing the

    +

    background, it updates the address to point to the nametable data currently

    +

    being drawn.  bits 0-11 hold the nametable address (-$2000).  bits 12-14 are

    +

    the tile Y offset.

    +


    +

    ---------

    +

    stuff that affects register contents:

    +

    (sorry for the shorthand logic but i think it's easier to see this way)

    +


    +

    2000 write:

    +

            t:0000110000000000=d:00000011

    +

    2005 first write:

    +

            t:0000000000011111=d:11111000

    +

            x=d:00000111

    +

    2005 second write:

    +

            t:0000001111100000=d:11111000

    +

            t:0111000000000000=d:00000111

    +

    2006 first write:

    +

            t:0011111100000000=d:00111111

    +

            t:1100000000000000=0

    +

    2006 second write:

    +

            t:0000000011111111=d:11111111

    +

            v=t

    +

    scanline start (if background and sprites are enabled):

    +

            v:0000010000011111=t:0000010000011111

    +

    frame start (line 0) (if background and sprites are enabled):

    +

            v=t

    +


    +

    note!  2005 and 2006 share the toggle that selects between first/second

    +

    writes.  reading 2002 will clear it.

    +


    +

    note!  all of this info agrees with the tests i've run on a real nes.  BUT

    +

    if there's something you don't agree with, please let me know so i can verify

    +

    it.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Qt Help documentation made easy

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NESScrolling2.html b/web/help/NESScrolling2.html index f1b50537..bd1af2cd 100644 --- a/web/help/NESScrolling2.html +++ b/web/help/NESScrolling2.html @@ -1,96 +1,287 @@ - - + + + + + - NES Scrolling 2 - - - - - - - - - - + + + + + + + + NES Scrolling 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    NES Scrolling 2

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    nes scrolling

    -


    -

    Date: Tue, 13 Apr 1999 17:48:54 -0600

    -

    From: loopy <zxcvzxcv@netzero.net>

    -

    Reply-To: nesdev@onelist.com

    -

    To: nesdev@onelist.com

    -


    -

    From: loopy <zxcvzxcv@netzero.net>

    -


    -

    (more notes on ppu logic)

    -


    -

    you can think of bits 0,1,2,3,4 of the vram address as the "x scroll"(*8)

    -

    that the ppu increments as it draws.  as it wraps from 31 to 0, bit 10 is

    -

    switched.  you should see how this causes horizontal wrapping between name

    -

    tables (0,1) and (2,3).

    -


    -

    you can think of bits 5,6,7,8,9 as the "y scroll"(*8).  this functions

    -

    slightly different from the X.  it wraps to 0 and bit 11 is switched when

    -

    it's incremented from _29_ instead of 31.  there are some odd side effects

    -

    from this.. if you manually set the value above 29 (from either 2005 or

    -

    2006), the wrapping from 29 obviously won't happen, and attrib data will be

    -

    used as name table data.  the "y scroll" still wraps to 0 from 31, but

    -

    without switching bit 11.  this explains why writing 240+ to 'Y' in 2005

    -

    appeared as a negative scroll value.

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free help authoring tool

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    NES Scrolling 2

    + +
    + +

    +

    nes scrolling

    +


    +

    Date: Tue, 13 Apr 1999 17:48:54 -0600

    +

    From: loopy <zxcvzxcv@netzero.net>

    +

    Reply-To: nesdev@onelist.com

    +

    To: nesdev@onelist.com

    +


    +

    From: loopy <zxcvzxcv@netzero.net>

    +


    +

    (more notes on ppu logic)

    +


    +

    you can think of bits 0,1,2,3,4 of the vram address as the "x scroll"(*8)

    +

    that the ppu increments as it draws.  as it wraps from 31 to 0, bit 10 is

    +

    switched.  you should see how this causes horizontal wrapping between name

    +

    tables (0,1) and (2,3).

    +


    +

    you can think of bits 5,6,7,8,9 as the "y scroll"(*8).  this functions

    +

    slightly different from the X.  it wraps to 0 and bit 11 is switched when

    +

    it's incremented from _29_ instead of 31.  there are some odd side effects

    +

    from this.. if you manually set the value above 29 (from either 2005 or

    +

    2006), the wrapping from 29 obviously won't happen, and attrib data will be

    +

    used as name table data.  the "y scroll" still wraps to 0 from 31, but

    +

    without switching bit 11.  this explains why writing 240+ to 'Y' in 2005

    +

    appeared as a negative scroll value.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free Kindle producer

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NESSound.html b/web/help/NESSound.html index 5ccb8687..d8710f8d 100644 --- a/web/help/NESSound.html +++ b/web/help/NESSound.html @@ -1,622 +1,813 @@ - - + + + + + - NES Sound - - - - - - - - - - + + + + + + + + NES Sound + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    NES Sound

    - -
    - Technical Information ›› Sound ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    *******************************************

    -

    *2A03 sound channel hardware documentation*

    -

    *******************************************

    -

    Brad Taylor (big_time_software@hotmail.com)

    -


    -

    4th release:        February 19th, 2K3

    -


    -


    -

    All results were obtained by studying prior information available (from nestech 1.00, and postings on NESDev from miscellanious people), and through a series of experiments conducted by me. Results acquired by individuals prior to my reverse-engineering have been double checked, and final results have been confirmed. Credit is due to those individual(s) who contributed miscellanious information in regards to NES sound channel hardware. Such individuals are:

    -


    -

    Goroh

    -

    Memblers

    -

    FluBBa

    -

    Izumi

    -

    Chibi-Tech

    -

    Quietust

    -

    SnowBro

    -


    -

    Kentaro Ishihara (Ki) is responsible for posting (on the NESdev mailing list) differrences in the 2 square wave channels, including the operation of 2A03 hardware publically undocumented (until now) such as the frame IRQ counter, and it's ties with sound hardware. Goroh had originally discovered some of this information, and Ki confirmed it.

    -


    -

    A special thanks goes out to Matthew Conte, for his expertise on pseudo-random number generation (amoung other things), which allowed for the full reverse engineering of the NES's noise channel to take place. Without his help, I would still be trying to find a needle in a haystack, as far as the noise's method of pseudo-random number generation goes. Additionally, his previous findings / reverse engineering work on the NES's sound hardware really got the ball of NES sound emulation rolling. If it weren't for Matt's original work, this document wouldn't exist.

    -


    -


    -

    ****************

    -

    * Introduction *

    -

    ****************

    -

    The 2A03 (NES's integrated CPU) has 4 internal channels to it that have the ability to generate semi-analog sound, for musical playback purposes. These channels are 2 square wave channels, one triangle wave channel, and a noise generation channel. This document will go into full detail on every aspect of the operation and timing of the mentioned sound channels.

    -


    -


    -

    *******************

    -

    * Channel details *

    -

    *******************

    -

    Each channel has different characteristics to it that make up it's operation.

    -


    -

    The square channel(s) have the ability to generate a square wave frequency in the range of 54.6 Hz to 12.4 KHz. It's key features are frequency sweep abilities, and output duty cycle adjustment.

    -


    -

    The triangle wave channel has the ability to generate an output triangle wave with a resolution of 4-bits (16 steps), in the range of 27.3 Hz to 55.9 KHz. The key features this channel has is it's analog triangle wave output, and it's linear counter, which can be set to automatically disable the channel's sound after a certain period of time has gone by.

    -


    -

    The noise channel is used for producing random frequencys, which results in a "noisey" sounding output. Output frequencys can range anywhere from 29.3 Hz to 447 KHz. It's key feature is it's pseudo- random number generator, which generates the random output frequencys heard by the channel.

    -


    -


    -

    *****************

    -

    * Frame counter *

    -

    *****************

    -

    The 2A03 has an internal frame counter. The purpose of it is to generate the various low frequency signals (60, 120, 240 Hz, and 48, 96, 192 Hz) required to clock several of the sound hardware's counters. It also has the ability to generate IRQ's.

    -


    -

    The smallest unit of timing the frame counter operates around is 240Hz; all other frequencies are generated by multiples of this base frequency. A clock divider of 14915 (clocked at twice the CPU speed) is used to get 240Hz (this was the actual measured ratio).

    -


    -


    -

    +---------------+

    -

    |$4017 operation|

    -

    +---------------+

    -

    Writes to register $4017 control operation of both the clock divider, and the frame counter.

    -


    -

    - Any write to $4017 resets both the frame counter, and the clock divider. Sometimes, games will write to this register in order to synchronize the sound hardware's internal timing, to the sound routine's timing (usually tied into the NMI code). The frame IRQ is slightly longer than the PPU's, so you can see why games would desire this syncronization.

    -


    -

    - bit 7 of $4017 controls the frame counter's divide rate. Every time the counter cycles (reaches terminal count (0)), a frame IRQ will be generated, if enabled by clearing bit 6 of $4017. $4015.6 holds the status of the frame counter IRQ; it will be set if the frame counter is responsible for the interrupt.

    -


    -

    $4017.7  divider  frame IRQ freq.

    -

    -------  -------  ---------------

    -

    0        4        60

    -

    1        5        48

    -


    -

    On 2A03 reset, both bits of $4017 (6 & 7) will be cleared, enabling frame IRQ's off the hop. The reason why the existence of frame IRQ's are generally unknown is because the 6502's maskable interrupt is disabled on reset, and this blocks out the frame IRQ's. Most games don't use any IRQ-generating hardware in general, therefore they don't bother enabling maskable interrupts.

    -


    -

    Note that the IRQ line will be held down by the frame counter until it is acknowledged (by reading $4015). Before this, the 6502 will generate an IRQ *every* time interrupts are enabled (either by CLI or RTI), since the IRQ design on the 6502 is level-triggered, and not edge. If you've written a program that does not read $4015 in the IRQ handler, and you execute CLI, the processor will immediately go into a infinite IRQ call-return loop.

    -


    -


    -

    +-----------------------+

    -

    |Frame counter operation|

    -

    +-----------------------+

    -

    Depending on the status of $4017.7, the frame counter will follow 2 different count sequences. These sequences determine when sound hardware counters will be clocked. The sequences are initialized immediately following any write to $4017.

    -


    -

    $4017.7  sequence

    -

    -------  --------

    -

    0        4, 0,1,2,3, 0,1,2,3,..., etc.

    -

    1        0,1,2,3,4, 0,1,2,3,4,..., etc.

    -


    -

    During count sequences 0..3, the linear (triangle) and envelope decay (square & noise) counters recieve a clock for each count. This means that both these counters are clocked once immediately after $4017.7 is written with a value of 1.

    -


    -

    Count sequences 1 & 3 clock (update) the frequency sweep (square), and length (all channels) counters. Even though the length counter's smallest unit of time counting is a frame, it seems that it is actually being clocked twice per frame. That said, you can consider the length counters to contain an extra stage to divide this clock signal by 2.

    -


    -

    No aforementioned sound hardware counters are clocked on count sequence #4. You should now see how this causes the 96, and 192 Hz signals to be generated when $4017.7=1.

    -


    -

    The rest of the document will describe the operation of the sound channels using the $4017.7=0 frequencies (60, 120, and 240 Hz). For $4017.7=1 operation, replace those frequencies with 48, 96, and 192 Hz (respectively).

    -


    -


    -

    ************************

    -

    * Sound hardware delay *

    -

    ************************

    -

    After resetting the 2A03, the first time any sound channel(s) length counter contains a non-zero value (channel is enabled), there will be a 2048 CPU clock cycle delay before any of the sound hardware is clocked. After the 2K clock cycles go by, the NES sound hardware will be clocked normally. This phenomenon only occurs prior to a system reset, and only occurs during the first 2048 CPU clocks after the activation of any of the 4 basic sound channels.

    -


    -

    The information in regards to this delay is only provided to keep this document accurate with all information that is currently known about the 2A03's sound hardware. I haven't done much tests on the behaviour of this delay (mainly because I don't care, as I view it as a inconvenience anyway), so this information should be taken with a grain of salt.

    -


    -


    -

    ************************

    -

    * Register Assignments *

    -

    ************************

    -

    The sound hardware internal to the 2A03 has been designated these special memory addresses in the CPU's memory map.

    -


    -

    $4000-$4003        Square wave 1

    -

    $4004-$4007        Square wave 2 (identical to the first, except for upward frequency sweeps (see "sweep unit" section))

    -

    $4008-$400B        Triangle

    -

    $400C-$400F        Noise

    -

    $4015                Channel enable / length/frame counter status

    -

    $4017                frame counter control

    -


    -

    Note that $4015 (and $4017, but is unrelated to sound hardware) are the only R/W registers. All others are write only (attempt to read them will most likely return the last byte on the bus (usually 040H), due to heavy capacitance on the NES's data bus). Reading a "write only" register, will have no effect on the specific register, or channel.

    -


    -

    Every sound channel has 4 registers affiliated with it. The description of the register sets are as follows:

    -


    -

    +----------------+

    -

    | Register set 1 |

    -

    +----------------+

    -


    -

    $4000(sq1)/$4004(sq2)/$400C(noise) bits

    -

    ---------------------------------------

    -

    0-3        volume / envelope decay rate

    -

    4        envelope decay disable

    -

    5        length counter clock disable / envelope decay looping enable

    -

    6-7        duty cycle type (unused on noise channel)

    -


    -

    $4008(tri) bits

    -

    ---------------

    -

    0-6        linear counter load register

    -

    7        length counter clock disable / linear counter start

    -


    -


    -

    +----------------+

    -

    | Register set 2 |

    -

    +----------------+

    -


    -

    $4001(sq1)/$4005(sq2) bits

    -

    --------------------------

    -

    0-2        right shift amount

    -

    3        decrease / increase (1/0) wavelength

    -

    4-6        sweep update rate

    -

    7        sweep enable

    -


    -

    $4009(tri)/$400D(noise) bits

    -

    ----------------------------

    -

    0-7        unused

    -


    -


    -

    +----------------+

    -

    | Register set 3 |

    -

    +----------------+

    -


    -

    $4002(sq1)/$4006(sq2)/$400A(Tri) bits

    -

    -------------------------------------

    -

    0-7        8 LSB of wavelength

    -


    -

    $400E(noise) bits

    -

    -----------------

    -

    0-3        playback sample rate

    -

    4-6        unused

    -

    7        random number type generation

    -


    -


    -

    +----------------+

    -

    | Register set 4 |

    -

    +----------------+

    -


    -

    $4003(sq1)/$4007(sq2)/$400B(tri)/$400F(noise) bits

    -

    --------------------------------------------------

    -

    0-2        3 MS bits of wavelength (unused on noise channel)

    -

    3-7        length counter load register

    -


    -


    -

    +--------------------------------+

    -

    | length counter status register |

    -

    +--------------------------------+

    -


    -

    $4015(read)

    -

    -----------

    -

    0        square wave channel 1

    -

    1        square wave channel 2

    -

    2        triangle wave channel

    -

    3        noise channel

    -

    4        DMC (see "DMC.TXT" for details)

    -

    5-6        unused

    -

    7        IRQ status of DMC (see "DMC.TXT" for details)

    -


    -


    -

    +-------------------------+

    -

    | channel enable register |

    -

    +-------------------------+

    -


    -

    $4015(write)

    -

    ------------

    -

    0        square wave channel 1

    -

    1        square wave channel 2

    -

    2        triangle wave channel

    -

    3        noise channel

    -

    4        DMC channel (see "DMC.TXT" for details)

    -

    5-7        unused

    -


    -


    -

    ************************

    -

    * Channel architecture *

    -

    ************************

    -

    This section will describe the internal components making up each individual channel. Each component will then be described in full detail.

    -


    -

    Device                                 Triangle Noise  Square

    -

    ------                                 -------- ------ ------

    -

    triangle step generator                        X

    -

    linear counter                                X

    -

    programmable timer                        X      X      X

    -

    length counter                                X      X      X

    -

    4-bit DAC                                        X      X      X

    -

    volume/envelope decay unit                         X      X

    -

    sweep unit                                                          X

    -

    duty cycle generator                                          X

    -

    wavelength converter                                 X

    -

    random number generator                                 X

    -


    -


    -

    +-------------------------+

    -

    | Triangle step generator |

    -

    +-------------------------+

    -

    This is a 5-bit, single direction counter, and it is only used in the triangle channel. Each of the 4 LSB outputs of the counter lead to one input on a corresponding mutually exclusive XNOR gate. The 4 XNOR gates have been strobed together, which results in the inverted representation of the 4 LSB of the counter appearing on the outputs of the gates when the strobe is 0, and a non-inverting action taking place when the strobe is 1. The strobe is naturally connected to the MSB of the counter, which effectively produces on the output of the XNOR gates a count sequence which reflects the scenario of a near- ideal triangle step generator (D,E,F,F,E,D,...,2,1,0,0,1,2,...). At this point, the outputs of the XNOR gates will be fed into the input of a 4-bit DAC.

    -


    -

    This 5-bit counter will be halted whenever the Triangle channel's length or linear counter contains a count of 0. This results in a "latching" behaviour; the counter will NOT be reset to any definite state.

    -


    -

    On system reset, this counter is loaded with 0.

    -


    -

    The counter's clock input is connected directly to the terminal count output pin of the 11-bit programmable timer in the triangle channel. As a result of the 5-bit triangle step generator, the output triangle wave frequency will be 32 times less than the frequency of the triangle channel's programmable timer is set to generate.

    -


    -


    -

    +----------------+

    -

    | Linear counter |

    -

    +----------------+

    -

    The linear counter is only found in the triangle channel. It is a 7-bit presettable down counter, with a decoded output condition of 0 available (not exactly the same as terminal count). Here's the bit assignments:

    -


    -

    $4008 bits

    -

    ----------

    -

    0-6        bits 0-6 of the linear counter load register (NOT the linear counter itself)

    -

    7        linear counter start

    -


    -

    The counter is clocked at 240 Hz (1/4 framerate), and the calculated length in frames is 0.25*N, where N is the 7-bit loaded value. The counter is always being clocked, except when 0 appears on the output of the counter. At this point, the linear counter & triangle step counter clocks signals are disabled, which results in both counters latching their current state (the linear counter will stay at 0, and the triangle step counter will stop, and the channel will be silenced due to this).

    -


    -

    The linear counter has 2 modes: load, and count. When the linear counter is in load mode, it essentially becomes transparent (i.e. whatever value is currently in, or being written to $4008, will appear on the output of the counter). Because of this, no count action can occur in load mode. When the mode changes from load to count, the counter will now latch the value currently in it, and start counting down from there. In the count mode, the current value of $4008 is ignored by the counter (but still retained in $4008). Described below is how the mode of the linear counter is set:

    -


    -


    -

    Writes to $400B

    -

    ---------------

    -

    cur        mode

    -

    ---        ----

    -

    1        load

    -

    0        load (on next linear counter clock), count

    -


    -

    Cur is the current state of the MSB of $4008.

    -


    -


    -

    Writes to $4008

    -

    ---------------

    -

    old        new        mode

    -

    ---        ---        ----

    -

    0        X        count

    -

    1        0        no change (during the CPU write cycle), count

    -

    1        1        no change

    -


    -

    Old and new represent the state(s) of the MSB of $4008. Old is the value being replaced in the MSB of $4008 on the write, and new is the value replacing the old one.

    -


    -

    "no change" indicates that the mode of the linear counter will not change from the last.

    -


    -

    Note that writes to $400B when $4008.7=0 only loads the linear counter with the value in $4008 on the next *linear* counter clock (and NOT at the end of the CPU write cycle). This is a correction from older versions of this doc.

    -


    -


    -

    +--------------------+

    -

    | Programmable timer |

    -

    +--------------------+

    -

    The programmable timer is a 11-bit presettable down counter, and is found in the square, triangle, and noise channel(s). The bit assignments are as follows:

    -


    -

    $4002(sq1)/$4006(sq2)/$400A(Tri) bits

    -

    -------------------------------------

    -

    0-7        represent bits 0-7 of the 11-bit wavelength

    -


    -

    $4003(sq1)/$4007(sq2)/$400B(Tri) bits

    -

    -------------------------------------

    -

    0-2        represent bits 8-A of the 11-bit wavelength

    -


    -

    Note that on the noise channel, the 11 bits are not available directly. See the wavelength converter section, for more details.

    -


    -

    The counter has automatic syncronous reloading upon terminal count (count=0), therefore the counter will count for N+1 (N is the 11-bit loaded value) clock cycles before arriving at terminal count, and reloading. This counter will typically be clocked at the 2A03's internal 6502 speed (1.79 MHz), and produces an output frequency of 1.79 MHz/(N+1). The terminal count's output spike length is typically no longer than half a CPU clock. The TC signal will then be fed to the appropriate device for the particular sound channel (for square, this terminal count spike will lead to the duty cycle generator. For the triangle, the spike will be fed to the triangle step generator. For noise, this signal will go to the random number generator unit).

    -


    -


    -

    +----------------+

    -

    | Length counter |

    -

    +----------------+

    -

    The length counter is found in all sound channels. It is essentially a 7-bit down counter, and is conditionally clocked at a frequency of 60 Hz.

    -


    -

    When the length counter arrives at a count of 0, the counter will be stopped (stay on 0), and the appropriate channel will be silenced.

    -


    -

    The length counter clock disable bit, found in all the channels, can also be used to halt the count sequence of the length counter for the appropriate channel, by writing a 1 out to it. A 0 condition will permit counting (unless of course, the counter's current count = 0). Location(s) of the length counter clock disable bit:

    -


    -

    $4000(sq1)/$4004(sq2)/$400C(noise) bits

    -

    ---------------------------------------

    -

    5        length counter clock disable

    -


    -

    $4008(tri) bits

    -

    ---------------

    -

    7        length counter clock disable

    -


    -

    To load the length counter with a specified count, a write must be made out to the length register. Location(s) of the length register:

    -


    -

    $4003(sq1)/$4007(sq2)/$400B(tri)/$400F(noise) bits

    -

    --------------------------------------------------

    -

    3-7        length

    -


    -

    The 5-bit length value written, determines what 7-bit value the length counter will start counting from. A conversion table here will show how the values are translated.

    -


    -

           +-----------------------+

    -

           |        bit3=0        |

    -

           +-------+---------------+

    -

           |        |frames                |

    -

           |bits        +-------+-------+

    -

           |4-6        |bit7=0        |bit7=1        |

    -

           +-------+-------+-------+

    -

           |0        |05        |06        |

    -

           |1        |0A        |0C        |

    -

           |2        |14        |18        |

    -

           |3        |28        |30        |

    -

           |4        |50        |60        |

    -

           |5        |1E        |24        |

    -

           |6        |07        |08        |

    -

           |7        |0D        |10        |

    -

           +-------+-------+-------+

    -


    -

           +---------------+

    -

           |        bit3=1        |

    -

           +-------+-------+

    -

           |bits        |        |

    -

           |4-7        |frames        |

    -

           +-------+-------+

    -

           |0        |7F        |

    -

           |1        |01        |        

    -

           |2        |02        |

    -

           |3        |03        |

    -

           |4        |04        |

    -

           |5        |05        |

    -

           |6        |06        |

    -

           |7        |07        |

    -

           |8        |08        |

    -

           |9        |09        |

    -

           |A        |0A        |

    -

           |B        |0B        |

    -

           |C        |0C        |

    -

           |D        |0D        |

    -

           |E        |0E        |

    -

           |F        |0F        |

    -

           +-------+-------+

    -


    -

    The length counter's real-time status for each channel can be attained. A 0 is returned for a zero count status in the length counter (channel's sound is disabled), and 1 for a non-zero status. Here's the bit description of the length counter status register:

    -


    -

    $4015(read)

    -

    -----------

    -

    0        length counter status of square wave channel 1

    -

    1        length counter status of square wave channel 2

    -

    2        length counter status of triangle wave channel

    -

    3        length counter status of noise channel

    -

    4        length counter status of DMC (see "DMC.TXT" for details)

    -

    5        unknown

    -

    6        frame IRQ status

    -

    7        IRQ status of DMC (see "DMC.TXT" for details)

    -


    -

    Writing a 0 to the channel enable register will force the length counters to always contain a count equal to 0, which renders that specific channel disabled (as if it doesn't exist). Writing a 1 to the channel enable register disables the forced length counter value of 0, but will not change the count itself (it will still be whatever it was prior to the writing of 1).

    -


    -

    Bit description of the channel enable register:

    -


    -

    $4015(write)

    -

    ------------

    -

    0        enable square wave channel 1

    -

    1        enable square wave channel 2

    -

    2        enable triangle wave channel

    -

    3        enable noise channel

    -

    4        enable DMC channel (see "DMC.TXT" for details)

    -

    5-7        unknown

    -


    -

    Note that all 5 used bits in this register will be set to 0 upon system reset.

    -


    -


    -

    +-----------+

    -

    | 4-bit DAC |

    -

    +-----------+

    -

    This is just a standard 4-bit DAC with 16 steps of output voltage resolution, and is used by all 4 sound channels. On the 2A03, square wave 1 & 2 are mixed together, and are available via pin 1. Triangle & noise are available on pin 2.

    -


    -

    These analog outputs require a negative current source, to attain linear symmetry on the various output voltage levels generated by the channel(s) (moreover, to get the sound to be audible). Instead of current sources, the NES uses external 100 ohm pull-down resistors. This results in the output waveforms having some linear asymmetry (i.e., as the desired output voltage increases on a linear scale, the actual outputted voltage increases less and less each step).

    -


    -

    The side effect of this is that the DMC's 7-bit DAC port ($4011) is able to indirectly control the volume (somewhat) of both triangle & noise channels. While I have not measured the voltage asymmetery, others on the NESdev messageboards have posted their findings. The conclusion is that when $4011 is 0, triangle & noise volume outputs are at maximum. When $4011 = 7F, the triangle & noise channel outputs operate at only 57% total volume.

    -


    -

    The odd thing is that a few games actually take advantage of this "volume" feature, and write values to $4011 in order to regulate the amplitude of the triangle wave channel's output.

    -


    -


    -

    +------------------------------+

    -

    | Volume / envelope decay unit |

    -

    +------------------------------+

    -

    The volume / envelope decay hardware is found only in the square wave and noise channels.

    -


    -

    $4000(sq1)/$4004(sq2)/$400C(noise)

    -

    ----------------------------------

    -

    0-3        volume / envelope decay rate

    -

    4        envelope decay disable

    -

    5        envelope decay looping enable

    -


    -

    When the envelope decay disable bit (bit 4) is set (1), the current volume value (bits 0-3) is sent directly to the channel's DAC. However, depending on certain conditions, this 4-bit volume value will be ignored, and a value of 0 will be sent to the DAC instead. This means that while the channel is enabled (producing sound), the output of the channel (what you'll hear from the DAC) will either be the 4-bit volume value, or 0. This also means that a 4-bit volume value of 0 will result in no audible sound. These conditions are as follows:

    -


    -

    - When hardware in the channel wants to disable it's sound output (like the length counter, or sweep unit (square channels only)).

    -


    -

    - On the negative portion of the output frequency signal coming from the duty cycle / random number generator hardware (square wave channel / noise channel).

    -


    -

    When the envelope decay disable bit is cleared, bits 0-3 now control the envelope decay rate, and an internal 4-bit down counter (hereon the envelope decay counter) now controls the channel's volume level. "Envelope decay" is used to describe the action of the channel's audio output volume starting from a certain value, and decreasing by 1 at a fixed (linear) rate (which produces a "fade-out" sounding effect). This fixed decrement rate is controlled by the envelope decay rate (bits 0-3). The calculated decrement rate is 240Hz/(N+1), where N is any value between $0-$F.

    -


    -

    When the channel's envelope decay counter reaches a value of 0, depending on the status of the envelope decay looping enable bit (bit 5, which is shared with the length counter's clock disable bit), 2 different things will happen:

    -


    -

    bit 5        action

    -

    -----        ------

    -

    0        The envelope decay count will stay at 0 (channel silenced).

    -

    1        The envelope decay count will wrap-around to $F (upon the next clock cycle). The envelope decay counter will then continue to count down normally.

    -


    -

    Only a write out to $4003/$4007/$400F will reset the current envelope decay counter to a known state (to $F, the maximum volume level) for the appropriate channel's envelope decay hardware. Otherwise, the envelope decay counter is always counting down (by 1) at the frequency currently contained in the volume / envelope decay rate bits (even when envelope decays are disabled (setting bit 4)), except when the envelope decay counter contains a value of 0, and envelope decay looping (bit 5) is disabled (0).

    -


    -


    -

    +------------+

    -

    | Sweep unit |

    -

    +------------+

    -

    The sweep unit is only found in the square wave channels. The controls for the sweep unit have been mapped in at $4001 for square 1, and $4005 for square 2.

    -


    -

    The controls

    -

    ------------

    -

    Bit 7          when this bit is set (1), sweeping is active. This results in real-time increasing or decreasing of the the current wavelength value (the audible frequency will decrease or increase, respectively). The wavelength value in $4002/3 ($4006/7) is constantly read & updated by the sweep. Modifying the contents of $4002/3 will be immediately audible, and will result in the sweep now starting from this new wavelength value.

    -


    -

    Bits 6-4        These 3 bits represent the sweep refresh rate, or the frequency at which $4002/3 is updated with the new calculated wavelength. The refresh rate frequency is 120Hz/(N+1), where N is the value written, between 0 and 7.

    -


    -

    Bit 3          This bit controls the sweep mode. When this bit is set (1), sweeps will decrease the current wavelength value, as a 0 will increase the current wavelength.

    -


    -

    Bits 2-0        These bits control the right shift amount of the new calculated sweep update wavelength. Code that shows how the sweep unit calculates a new sweep wavelength is as follows:

    -

    -

    bit 3

    -

    -----

    -

    0        New = Wavelength + (Wavelength >> N)

    -

    1        New = Wavelength - (Wavelength >> N) (minus an additional 1, if using square wave channel 1)

    -


    -

    where N is the the shift right value, between 0-7.

    -


    -

    Note that in decrease mode, for subtracting the 2 values:

    -

    1's compliment (NOT) is being used for square wave channel 1

    -

    2's compliment (NEG) is being used for square wave channel 2

    -


    -

    This information is currently the only known difference between the 2 square wave channels.

    -


    -

    On each sweep refresh clock, the Wavelength register will be updated with the New value, but only if all 3 of these conditions are met:

    -


    -

    - bit 7 is set (sweeping enabled)

    -

    - the shift value (which is N in the formula) does not equal to 0

    -

    - the channel's length counter contains a non-zero value

    -


    -

    Notes

    -

    -----

    -

    There are certain conditions that will cause the sweep unit to silence the channel, and halt the sweep refresh clock (which effectively stops sweep action, if any). Note that these conditions pertain regardless of any sweep refresh rate values, or if sweeping is enabled/disabled (via bit 7).

    -


    -

    - an 11-bit wavelength value less than $008 will cause this condition

    -

    - if the sweep unit is currently set to increase mode, the New calculated wavelength value will always be tested to see if a carry (bit $B) was generated or not (if sweeping is enabled, this carry will be examined before the Wavelength register is updated) from the shift addition calculation. If carry equals 1, the channel is silenced, and sweep action is halted.

    -


    -


    -

    +----------------------+

    -

    | Duty cycle generator |

    -

    +----------------------+

    -

    The duty cycle generator takes the fequency produced from the 11-bit programmable timer, and uses a 4 bit counter to produce 4 types of duty cycles. The output frequency is then 1/16 that of the programmable timer. The duty cycle hardware is only found in the square wave channels. The bit assignments are as follows:

    -


    -

    $4000(sq1)/$4004(sq2)

    -

    ---------------------

    -

    6-7        Duty cycle type

    -


    -

           duty (positive/negative)

    -

    val        in clock cycles

    -

    ---        ---------------

    -

    00         2/14

    -

    01         4/12

    -

    10         8/ 8

    -

    11        12/ 4

    -


    -

    Where val represents bits 6-7 of $4000/$4004.

    -


    -

    This counter is reset when the length counter of the same channel is written to (via $4003/$4007).

    -


    -

    The output frequency at this point will now be fed to the volume/envelope decay hardware.

    -


    -


    -

    +----------------------+

    -

    | Wavelength converter |

    -

    +----------------------+

    -

    The wavelength converter is only used in the noise channel. It is used to convert a given 4-bit value to an 11-bit wavelength, which then is sent to the noise's own programmable timer. Here is the bit descriptions:

    -


    -

    $400E bits

    -

    ----------

    -

    0-3        The 4-bit value to be converted

    -


    -

    Below is a conversion chart that shows what 4-bit value will represent the 11-bit wavelength to be fed to the channel's programmable timer:

    -


    -

    value        octave        scale        CPU clock cycles (11-bit wavelength+1)

    -

    -----        ------        -----        --------------------------------------

    -

    0        15        A        002

    -

    1        14        A        004

    -

    2        13        A        008

    -

    3        12        A        010

    -

    4        11        A        020

    -

    5        11        D        030

    -

    6        10        A        040

    -

    7        10        F        050

    -

    8        10        C        065

    -

    9         9        A        07F

    -

    A         9        D        0BE

    -

    B         8        A        0FE

    -

    C         8        D        17D

    -

    D         7        A        1FC

    -

    E         6        A        3F9

    -

    F         5        A        7F2

    -


    -

    Octave and scale information is provided for the music enthusiast programmer who is more familiar with notes than clock cycles.

    -


    -


    -

    +-------------------------+

    -

    | Random number generator |

    -

    +-------------------------+

    -

    The noise channel has a 1-bit pseudo-random number generator. It's based on a 15-bit shift register, and an exclusive or gate. The generator can produce two types of random number sequences: long, and short. The long sequence generates 32,767-bit long number patterns. The short sequence generates 93-bit long number patterns. The 93-bit mode will generally produce higher sounding playback frequencys on the channel. Here is the bit that controls the mode:

    -


    -

    $400E bits

    -

    ----------

    -

    7        mode

    -


    -

    If mode=0, then 32,767-bit long number sequences will be produced (32K mode), otherwise 93-bit long number sequences will be produced (93-bit mode).

    -


    -

    The following diagram shows where the XOR taps are taken off the shift register to produce the 1-bit pseudo-random number sequences for each mode.

    -


    -

    mode            <-----

    -

    ----        EDCBA9876543210

    -

    32K        **

    -

    93-bit        *     *

    -


    -

    The current result of the XOR will be transferred into bit position 0 of the SR, upon the next shift cycle. The 1-bit random number output is taken from pin E, is inverted, then is sent to the volume/envelope decay hardware for the noise channel. The shift register is shifted upon recieving 2 clock pulses from the programmable timer (the shift frequency will be half that of the frequency from the programmable timer (one octave lower)).

    -


    -

    On system reset, this shift register is loaded with a value of 1.

    -


    -


    -

    RP2A03E quirk

    -

    -------------

    -

    I have been informed that revisions of the 2A03 before "F" actually lacked support for the 93-bit looped noise playback mode. While the Famicom's 2A03 went through 4 revisions (E..H), I think that only one was ever used for the front loading NES: "G". Other differences between 2A03 revisions are unknown.

    -


    -


    -

    EOF

    -

    -

    Created with the Personal Edition of HelpNDoc: Create iPhone web-based documentation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    NES Sound

    + +
    + +

    +

    *******************************************

    +

    *2A03 sound channel hardware documentation*

    +

    *******************************************

    +

    Brad Taylor (big_time_software@hotmail.com)

    +


    +

     4th release:        February 19th, 2K3

    +


    +


    +

     All results were obtained by studying prior information available (from nestech 1.00, and postings on NESDev from miscellanious people), and through a series of experiments conducted by me. Results acquired by individuals prior to my reverse-engineering have been double checked, and final results have been confirmed. Credit is due to those individual(s) who contributed miscellanious information in regards to NES sound channel hardware. Such individuals are:

    +


    +

     Goroh

    +

     Memblers

    +

     FluBBa

    +

     Izumi

    +

     Chibi-Tech

    +

     Quietust

    +

     SnowBro

    +


    +

     Kentaro Ishihara (Ki) is responsible for posting (on the NESdev mailing list) differrences in the 2 square wave channels, including the operation of 2A03 hardware publically undocumented (until now) such as the frame IRQ counter, and it's ties with sound hardware. Goroh had originally discovered some of this information, and Ki confirmed it.

    +


    +

     A special thanks goes out to Matthew Conte, for his expertise on pseudo-random number generation (amoung other things), which allowed for the full reverse engineering of the NES's noise channel to take place. Without his help, I would still be trying to find a needle in a haystack, as far as the noise's method of pseudo-random number generation goes. Additionally, his previous findings / reverse engineering work on the NES's sound hardware really got the ball of NES sound emulation rolling. If it weren't for Matt's original work, this document wouldn't exist.

    +


    +


    +

    ****************

    +

    * Introduction *

    +

    ****************

    +

     The 2A03 (NES's integrated CPU) has 4 internal channels to it that have the ability to generate semi-analog sound, for musical playback purposes. These channels are 2 square wave channels, one triangle wave channel, and a noise generation channel. This document will go into full detail on every aspect of the operation and timing of the mentioned sound channels.

    +


    +


    +

    *******************

    +

    * Channel details *

    +

    *******************

    +

     Each channel has different characteristics to it that make up it's operation.

    +


    +

     The square channel(s) have the ability to generate a square wave frequency in the range of 54.6 Hz to 12.4 KHz. It's key features are frequency sweep abilities, and output duty cycle adjustment.

    +


    +

     The triangle wave channel has the ability to generate an output triangle wave with a resolution of 4-bits (16 steps), in the range of 27.3 Hz to 55.9 KHz. The key features this channel has is it's analog triangle wave output, and it's linear counter, which can be set to automatically disable the channel's sound after a certain period of time has gone by.

    +


    +

     The noise channel is used for producing random frequencys, which results in a "noisey" sounding output. Output frequencys can range anywhere from 29.3 Hz to 447 KHz. It's key feature is it's pseudo- random number generator, which generates the random output frequencys heard by the channel.

    +


    +


    +

    *****************

    +

    * Frame counter *

    +

    *****************

    +

     The 2A03 has an internal frame counter. The purpose of it is to generate the various low frequency signals (60, 120, 240 Hz, and 48, 96, 192 Hz) required to clock several of the sound hardware's counters. It also has the ability to generate IRQ's.

    +


    +

     The smallest unit of timing the frame counter operates around is 240Hz; all other frequencies are generated by multiples of this base frequency. A clock divider of 14915 (clocked at twice the CPU speed) is used to get 240Hz (this was the actual measured ratio).

    +


    +


    +

    +---------------+

    +

    |$4017 operation|

    +

    +---------------+

    +

     Writes to register $4017 control operation of both the clock divider, and the frame counter.

    +


    +

     - Any write to $4017 resets both the frame counter, and the clock divider. Sometimes, games will write to this register in order to synchronize the sound hardware's internal timing, to the sound routine's timing (usually tied into the NMI code). The frame IRQ is slightly longer than the PPU's, so you can see why games would desire this syncronization.

    +


    +

     - bit 7 of $4017 controls the frame counter's divide rate. Every time the counter cycles (reaches terminal count (0)), a frame IRQ will be generated, if enabled by clearing bit 6 of $4017. $4015.6 holds the status of the frame counter IRQ; it will be set if the frame counter is responsible for the interrupt.

    +


    +

    $4017.7  divider  frame IRQ freq.

    +

    -------  -------  ---------------

    +

    0        4        60

    +

    1        5        48

    +


    +

     On 2A03 reset, both bits of $4017 (6 & 7) will be cleared, enabling frame IRQ's off the hop. The reason why the existence of frame IRQ's are generally unknown is because the 6502's maskable interrupt is disabled on reset, and this blocks out the frame IRQ's. Most games don't use any IRQ-generating hardware in general, therefore they don't bother enabling maskable interrupts.

    +


    +

     Note that the IRQ line will be held down by the frame counter until it is acknowledged (by reading $4015). Before this, the 6502 will generate an IRQ *every* time interrupts are enabled (either by CLI or RTI), since the IRQ design on the 6502 is level-triggered, and not edge. If you've written a program that does not read $4015 in the IRQ handler, and you execute CLI, the processor will immediately go into a infinite IRQ call-return loop.

    +


    +


    +

    +-----------------------+

    +

    |Frame counter operation|

    +

    +-----------------------+

    +

     Depending on the status of $4017.7, the frame counter will follow 2 different count sequences. These sequences determine when sound hardware counters will be clocked. The sequences are initialized immediately following any write to $4017.

    +


    +

    $4017.7  sequence

    +

    -------  --------

    +

    0        4, 0,1,2,3, 0,1,2,3,..., etc.

    +

    1        0,1,2,3,4, 0,1,2,3,4,..., etc.

    +


    +

     During count sequences 0..3, the linear (triangle) and envelope decay (square & noise) counters recieve a clock for each count. This means that both these counters are clocked once immediately after $4017.7 is written with a value of 1.

    +


    +

     Count sequences 1 & 3 clock (update) the frequency sweep (square), and length (all channels) counters. Even though the length counter's smallest unit of time counting is a frame, it seems that it is actually being clocked twice per frame. That said, you can consider the length counters to contain an extra stage to divide this clock signal by 2.

    +


    +

     No aforementioned sound hardware counters are clocked on count sequence #4. You should now see how this causes the 96, and 192 Hz signals to be generated when $4017.7=1.

    +


    +

     The rest of the document will describe the operation of the sound channels using the $4017.7=0 frequencies (60, 120, and 240 Hz). For $4017.7=1 operation, replace those frequencies with 48, 96, and 192 Hz (respectively).

    +


    +


    +

    ************************

    +

    * Sound hardware delay *

    +

    ************************

    +

     After resetting the 2A03, the first time any sound channel(s) length counter contains a non-zero value (channel is enabled), there will be a 2048 CPU clock cycle delay before any of the sound hardware is clocked. After the 2K clock cycles go by, the NES sound hardware will be clocked normally. This phenomenon only occurs prior to a system reset, and only occurs during the first 2048 CPU clocks after the activation of any of the 4 basic sound channels.

    +


    +

     The information in regards to this delay is only provided to keep this document accurate with all information that is currently known about the 2A03's sound hardware. I haven't done much tests on the behaviour of this delay (mainly because I don't care, as I view it as a inconvenience anyway), so this information should be taken with a grain of salt.

    +


    +


    +

    ************************

    +

    * Register Assignments *

    +

    ************************

    +

     The sound hardware internal to the 2A03 has been designated these special memory addresses in the CPU's memory map.

    +


    +

    $4000-$4003        Square wave 1

    +

    $4004-$4007        Square wave 2 (identical to the first, except for upward frequency sweeps (see "sweep unit" section))

    +

    $4008-$400B        Triangle

    +

    $400C-$400F        Noise

    +

    $4015                Channel enable / length/frame counter status

    +

    $4017                frame counter control

    +


    +

     Note that $4015 (and $4017, but is unrelated to sound hardware) are the only R/W registers. All others are write only (attempt to read them will most likely return the last byte on the bus (usually 040H), due to heavy capacitance on the NES's data bus). Reading a "write only" register, will have no effect on the specific register, or channel.

    +


    +

     Every sound channel has 4 registers affiliated with it. The description of the register sets are as follows:

    +


    +

    +----------------+

    +

    | Register set 1 |

    +

    +----------------+

    +


    +

    $4000(sq1)/$4004(sq2)/$400C(noise) bits

    +

    ---------------------------------------

    +

    0-3        volume / envelope decay rate

    +

    4        envelope decay disable

    +

    5        length counter clock disable / envelope decay looping enable

    +

    6-7        duty cycle type (unused on noise channel)

    +


    +

    $4008(tri) bits

    +

    ---------------

    +

    0-6        linear counter load register

    +

    7        length counter clock disable / linear counter start

    +


    +


    +

    +----------------+

    +

    | Register set 2 |

    +

    +----------------+

    +


    +

    $4001(sq1)/$4005(sq2) bits

    +

    --------------------------

    +

    0-2        right shift amount

    +

    3        decrease / increase (1/0) wavelength

    +

    4-6        sweep update rate

    +

    7        sweep enable

    +


    +

    $4009(tri)/$400D(noise) bits

    +

    ----------------------------

    +

    0-7        unused

    +


    +


    +

    +----------------+

    +

    | Register set 3 |

    +

    +----------------+

    +


    +

    $4002(sq1)/$4006(sq2)/$400A(Tri) bits

    +

    -------------------------------------

    +

    0-7        8 LSB of wavelength

    +


    +

    $400E(noise) bits

    +

    -----------------

    +

    0-3        playback sample rate

    +

    4-6        unused

    +

    7        random number type generation

    +


    +


    +

    +----------------+

    +

    | Register set 4 |

    +

    +----------------+

    +


    +

    $4003(sq1)/$4007(sq2)/$400B(tri)/$400F(noise) bits

    +

    --------------------------------------------------

    +

    0-2        3 MS bits of wavelength (unused on noise channel)

    +

    3-7        length counter load register

    +


    +


    +

    +--------------------------------+

    +

    | length counter status register |

    +

    +--------------------------------+

    +


    +

    $4015(read)

    +

    -----------

    +

    0        square wave channel 1

    +

    1        square wave channel 2

    +

    2        triangle wave channel

    +

    3        noise channel

    +

    4        DMC (see "DMC.TXT" for details)

    +

    5-6        unused

    +

    7        IRQ status of DMC (see "DMC.TXT" for details)

    +


    +


    +

    +-------------------------+

    +

    | channel enable register |

    +

    +-------------------------+

    +


    +

    $4015(write)

    +

    ------------

    +

    0        square wave channel 1

    +

    1        square wave channel 2

    +

    2        triangle wave channel

    +

    3        noise channel

    +

    4        DMC channel (see "DMC.TXT" for details)

    +

    5-7        unused

    +


    +


    +

    ************************

    +

    * Channel architecture *

    +

    ************************

    +

     This section will describe the internal components making up each individual channel. Each component will then be described in full detail.

    +


    +

    Device                                 Triangle Noise  Square

    +

    ------                                 -------- ------ ------

    +

    triangle step generator                        X

    +

    linear counter                                X

    +

    programmable timer                        X      X      X

    +

    length counter                                X      X      X

    +

    4-bit DAC                                        X      X      X

    +

    volume/envelope decay unit                         X      X

    +

    sweep unit                                                          X

    +

    duty cycle generator                                          X

    +

    wavelength converter                                 X

    +

    random number generator                                 X

    +


    +


    +

    +-------------------------+

    +

    | Triangle step generator |

    +

    +-------------------------+

    +

     This is a 5-bit, single direction counter, and it is only used in the triangle channel. Each of the 4 LSB outputs of the counter lead to one input on a corresponding mutually exclusive XNOR gate. The 4 XNOR gates have been strobed together, which results in the inverted representation of the 4 LSB of the counter appearing on the outputs of the gates when the strobe is 0, and a non-inverting action taking place when the strobe is 1. The strobe is naturally connected to the MSB of the counter, which effectively produces on the output of the XNOR gates a count sequence which reflects the scenario of a near- ideal triangle step generator (D,E,F,F,E,D,...,2,1,0,0,1,2,...). At this point, the outputs of the XNOR gates will be fed into the input of a 4-bit DAC.

    +


    +

     This 5-bit counter will be halted whenever the Triangle channel's length or linear counter contains a count of 0. This results in a "latching" behaviour; the counter will NOT be reset to any definite state.

    +


    +

     On system reset, this counter is loaded with 0.

    +


    +

     The counter's clock input is connected directly to the terminal count output pin of the 11-bit programmable timer in the triangle channel. As a result of the 5-bit triangle step generator, the output triangle wave frequency will be 32 times less than the frequency of the triangle channel's programmable timer is set to generate.

    +


    +


    +

    +----------------+

    +

    | Linear counter |

    +

    +----------------+

    +

     The linear counter is only found in the triangle channel. It is a 7-bit presettable down counter, with a decoded output condition of 0 available (not exactly the same as terminal count). Here's the bit assignments:

    +


    +

    $4008 bits

    +

    ----------

    +

    0-6        bits 0-6 of the linear counter load register (NOT the linear counter itself)

    +

    7        linear counter start

    +


    +

     The counter is clocked at 240 Hz (1/4 framerate), and the calculated length in frames is 0.25*N, where N is the 7-bit loaded value. The counter is always being clocked, except when 0 appears on the output of the counter. At this point, the linear counter & triangle step counter clocks signals are disabled, which results in both counters latching their current state (the linear counter will stay at 0, and the triangle step counter will stop, and the channel will be silenced due to this).

    +


    +

     The linear counter has 2 modes: load, and count. When the linear counter is in load mode, it essentially becomes transparent (i.e. whatever value is currently in, or being written to $4008, will appear on the output of the counter). Because of this, no count action can occur in load mode. When the mode changes from load to count, the counter will now latch the value currently in it, and start counting down from there. In the count mode, the current value of $4008 is ignored by the counter (but still retained in $4008). Described below is how the mode of the linear counter is set:

    +


    +


    +

    Writes to $400B

    +

    ---------------

    +

    cur        mode

    +

    ---        ----

    +

    1        load

    +

    0        load (on next linear counter clock), count

    +


    +

     Cur is the current state of the MSB of $4008.

    +


    +


    +

    Writes to $4008

    +

    ---------------

    +

    old        new        mode

    +

    ---        ---        ----

    +

    0        X        count

    +

    1        0        no change (during the CPU write cycle), count

    +

    1        1        no change

    +


    +

     Old and new represent the state(s) of the MSB of $4008. Old is the value being replaced in the MSB of $4008 on the write, and new is the value replacing the old one.

    +


    +

     "no change" indicates that the mode of the linear counter will not change from the last.

    +


    +

     Note that writes to $400B when $4008.7=0 only loads the linear counter with the value in $4008 on the next *linear* counter clock (and NOT at the end of the CPU write cycle). This is a correction from older versions of this doc.

    +


    +


    +

    +--------------------+

    +

    | Programmable timer |

    +

    +--------------------+

    +

     The programmable timer is a 11-bit presettable down counter, and is found in the square, triangle, and noise channel(s). The bit assignments are as follows:

    +


    +

    $4002(sq1)/$4006(sq2)/$400A(Tri) bits

    +

    -------------------------------------

    +

    0-7        represent bits 0-7 of the 11-bit wavelength

    +


    +

    $4003(sq1)/$4007(sq2)/$400B(Tri) bits

    +

    -------------------------------------

    +

    0-2        represent bits 8-A of the 11-bit wavelength

    +


    +

     Note that on the noise channel, the 11 bits are not available directly. See the wavelength converter section, for more details.

    +


    +

     The counter has automatic syncronous reloading upon terminal count (count=0), therefore the counter will count for N+1 (N is the 11-bit loaded value) clock cycles before arriving at terminal count, and reloading. This counter will typically be clocked at the 2A03's internal 6502 speed (1.79 MHz), and produces an output frequency of 1.79 MHz/(N+1). The terminal count's output spike length is typically no longer than half a CPU clock. The TC signal will then be fed to the appropriate device for the particular sound channel (for square, this terminal count spike will lead to the duty cycle generator. For the triangle, the spike will be fed to the triangle step generator. For noise, this signal will go to the random number generator unit).

    +


    +


    +

    +----------------+

    +

    | Length counter |

    +

    +----------------+

    +

     The length counter is found in all sound channels. It is essentially a 7-bit down counter, and is conditionally clocked at a frequency of 60 Hz.

    +


    +

     When the length counter arrives at a count of 0, the counter will be stopped (stay on 0), and the appropriate channel will be silenced.

    +


    +

     The length counter clock disable bit, found in all the channels, can also be used to halt the count sequence of the length counter for the appropriate channel, by writing a 1 out to it. A 0 condition will permit counting (unless of course, the counter's current count = 0). Location(s) of the length counter clock disable bit:

    +


    +

    $4000(sq1)/$4004(sq2)/$400C(noise) bits

    +

    ---------------------------------------

    +

    5        length counter clock disable

    +


    +

    $4008(tri) bits

    +

    ---------------

    +

    7        length counter clock disable

    +


    +

     To load the length counter with a specified count, a write must be made out to the length register. Location(s) of the length register:

    +


    +

    $4003(sq1)/$4007(sq2)/$400B(tri)/$400F(noise) bits

    +

    --------------------------------------------------

    +

    3-7        length

    +


    +

     The 5-bit length value written, determines what 7-bit value the length counter will start counting from. A conversion table here will show how the values are translated.

    +


    +

           +-----------------------+

    +

           |        bit3=0        |

    +

           +-------+---------------+

    +

           |        |frames                |

    +

           |bits        +-------+-------+

    +

           |4-6        |bit7=0        |bit7=1        |

    +

           +-------+-------+-------+

    +

           |0        |05        |06        |

    +

           |1        |0A        |0C        |

    +

           |2        |14        |18        |

    +

           |3        |28        |30        |

    +

           |4        |50        |60        |

    +

           |5        |1E        |24        |

    +

           |6        |07        |08        |

    +

           |7        |0D        |10        |

    +

           +-------+-------+-------+

    +


    +

           +---------------+

    +

           |        bit3=1        |

    +

           +-------+-------+

    +

           |bits        |        |

    +

           |4-7        |frames        |

    +

           +-------+-------+

    +

           |0        |7F        |

    +

           |1        |01        |        

    +

           |2        |02        |

    +

           |3        |03        |

    +

           |4        |04        |

    +

           |5        |05        |

    +

           |6        |06        |

    +

           |7        |07        |

    +

           |8        |08        |

    +

           |9        |09        |

    +

           |A        |0A        |

    +

           |B        |0B        |

    +

           |C        |0C        |

    +

           |D        |0D        |

    +

           |E        |0E        |

    +

           |F        |0F        |

    +

           +-------+-------+

    +


    +

     The length counter's real-time status for each channel can be attained. A 0 is returned for a zero count status in the length counter (channel's sound is disabled), and 1 for a non-zero status. Here's the bit description of the length counter status register:

    +


    +

    $4015(read)

    +

    -----------

    +

    0        length counter status of square wave channel 1

    +

    1        length counter status of square wave channel 2

    +

    2        length counter status of triangle wave channel

    +

    3        length counter status of noise channel

    +

    4        length counter status of DMC (see "DMC.TXT" for details)

    +

    5        unknown

    +

    6        frame IRQ status

    +

    7        IRQ status of DMC (see "DMC.TXT" for details)

    +


    +

     Writing a 0 to the channel enable register will force the length counters to always contain a count equal to 0, which renders that specific channel disabled (as if it doesn't exist). Writing a 1 to the channel enable register disables the forced length counter value of 0, but will not change the count itself (it will still be whatever it was prior to the writing of 1).

    +


    +

     Bit description of the channel enable register:

    +


    +

    $4015(write)

    +

    ------------

    +

    0        enable square wave channel 1

    +

    1        enable square wave channel 2

    +

    2        enable triangle wave channel

    +

    3        enable noise channel

    +

    4        enable DMC channel (see "DMC.TXT" for details)

    +

    5-7        unknown

    +


    +

     Note that all 5 used bits in this register will be set to 0 upon system reset.

    +


    +


    +

    +-----------+

    +

    | 4-bit DAC |

    +

    +-----------+

    +

     This is just a standard 4-bit DAC with 16 steps of output voltage resolution, and is used by all 4 sound channels. On the 2A03, square wave 1 & 2 are mixed together, and are available via pin 1. Triangle & noise are available on pin 2.

    +


    +

     These analog outputs require a negative current source, to attain linear symmetry on the various output voltage levels generated by the channel(s) (moreover, to get the sound to be audible). Instead of current sources, the NES uses external 100 ohm pull-down resistors. This results in the output waveforms having some linear asymmetry (i.e., as the desired output voltage increases on a linear scale, the actual outputted voltage increases less and less each step).

    +


    +

     The side effect of this is that the DMC's 7-bit DAC port ($4011) is able to indirectly control the volume (somewhat) of both triangle & noise channels. While I have not measured the voltage asymmetery, others on the NESdev messageboards have posted their findings. The conclusion is that when $4011 is 0, triangle & noise volume outputs are at maximum. When $4011 = 7F, the triangle & noise channel outputs operate at only 57% total volume.

    +


    +

     The odd thing is that a few games actually take advantage of this "volume" feature, and write values to $4011 in order to regulate the amplitude of the triangle wave channel's output.

    +


    +


    +

    +------------------------------+

    +

    | Volume / envelope decay unit |

    +

    +------------------------------+

    +

     The volume / envelope decay hardware is found only in the square wave and noise channels.

    +


    +

    $4000(sq1)/$4004(sq2)/$400C(noise)

    +

    ----------------------------------

    +

    0-3        volume / envelope decay rate

    +

    4        envelope decay disable

    +

    5        envelope decay looping enable

    +


    +

     When the envelope decay disable bit (bit 4) is set (1), the current volume value (bits 0-3) is sent directly to the channel's DAC. However, depending on certain conditions, this 4-bit volume value will be ignored, and a value of 0 will be sent to the DAC instead. This means that while the channel is enabled (producing sound), the output of the channel (what you'll hear from the DAC) will either be the 4-bit volume value, or 0. This also means that a 4-bit volume value of 0 will result in no audible sound. These conditions are as follows:

    +


    +

     - When hardware in the channel wants to disable it's sound output (like the length counter, or sweep unit (square channels only)).

    +


    +

     - On the negative portion of the output frequency signal coming from the duty cycle / random number generator hardware (square wave channel / noise channel).

    +


    +

     When the envelope decay disable bit is cleared, bits 0-3 now control the envelope decay rate, and an internal 4-bit down counter (hereon the envelope decay counter) now controls the channel's volume level. "Envelope decay" is used to describe the action of the channel's audio output volume starting from a certain value, and decreasing by 1 at a fixed (linear) rate (which produces a "fade-out" sounding effect). This fixed decrement rate is controlled by the envelope decay rate (bits 0-3). The calculated decrement rate is 240Hz/(N+1), where N is any value between $0-$F.

    +


    +

     When the channel's envelope decay counter reaches a value of 0, depending on the status of the envelope decay looping enable bit (bit 5, which is shared with the length counter's clock disable bit), 2 different things will happen:

    +


    +

    bit 5        action

    +

    -----        ------

    +

    0        The envelope decay count will stay at 0 (channel silenced).

    +

    1        The envelope decay count will wrap-around to $F (upon the next clock cycle). The envelope decay counter will then continue to count down normally.

    +


    +

     Only a write out to $4003/$4007/$400F will reset the current envelope decay counter to a known state (to $F, the maximum volume level) for the appropriate channel's envelope decay hardware. Otherwise, the envelope decay counter is always counting down (by 1) at the frequency currently contained in the volume / envelope decay rate bits (even when envelope decays are disabled (setting bit 4)), except when the envelope decay counter contains a value of 0, and envelope decay looping (bit 5) is disabled (0).

    +


    +


    +

    +------------+

    +

    | Sweep unit |

    +

    +------------+

    +

     The sweep unit is only found in the square wave channels. The controls for the sweep unit have been mapped in at $4001 for square 1, and $4005 for square 2.

    +


    +

     The controls

    +

     ------------

    +

     Bit 7           when this bit is set (1), sweeping is active. This results in real-time increasing or decreasing of the the current wavelength value (the audible frequency will decrease or increase, respectively). The wavelength value in $4002/3 ($4006/7) is constantly read & updated by the sweep. Modifying the contents of $4002/3 will be immediately audible, and will result in the sweep now starting from this new wavelength value.

    +


    +

     Bits 6-4        These 3 bits represent the sweep refresh rate, or the frequency at which $4002/3 is updated with the new calculated wavelength. The refresh rate frequency is 120Hz/(N+1), where N is the value written, between 0 and 7.

    +


    +

     Bit 3           This bit controls the sweep mode. When this bit is set (1), sweeps will decrease the current wavelength value, as a 0 will increase the current wavelength.

    +


    +

     Bits 2-0        These bits control the right shift amount of the new calculated sweep update wavelength. Code that shows how the sweep unit calculates a new sweep wavelength is as follows:

    +

     

    +

    bit 3

    +

    -----

    +

    0        New = Wavelength + (Wavelength >> N)

    +

    1        New = Wavelength - (Wavelength >> N) (minus an additional 1, if using square wave channel 1)

    +


    +

     where N is the the shift right value, between 0-7.

    +


    +

     Note that in decrease mode, for subtracting the 2 values:

    +

     1's compliment (NOT) is being used for square wave channel 1

    +

     2's compliment (NEG) is being used for square wave channel 2

    +


    +

     This information is currently the only known difference between the 2 square wave channels.

    +


    +

     On each sweep refresh clock, the Wavelength register will be updated with the New value, but only if all 3 of these conditions are met:

    +


    +

     - bit 7 is set (sweeping enabled)

    +

     - the shift value (which is N in the formula) does not equal to 0

    +

     - the channel's length counter contains a non-zero value

    +


    +

     Notes

    +

     -----

    +

     There are certain conditions that will cause the sweep unit to silence the channel, and halt the sweep refresh clock (which effectively stops sweep action, if any). Note that these conditions pertain regardless of any sweep refresh rate values, or if sweeping is enabled/disabled (via bit 7).

    +


    +

     - an 11-bit wavelength value less than $008 will cause this condition

    +

     - if the sweep unit is currently set to increase mode, the New calculated wavelength value will always be tested to see if a carry (bit $B) was generated or not (if sweeping is enabled, this carry will be examined before the Wavelength register is updated) from the shift addition calculation. If carry equals 1, the channel is silenced, and sweep action is halted.

    +


    +


    +

    +----------------------+

    +

    | Duty cycle generator |

    +

    +----------------------+

    +

     The duty cycle generator takes the fequency produced from the 11-bit programmable timer, and uses a 4 bit counter to produce 4 types of duty cycles. The output frequency is then 1/16 that of the programmable timer. The duty cycle hardware is only found in the square wave channels. The bit assignments are as follows:

    +


    +

    $4000(sq1)/$4004(sq2)

    +

    ---------------------

    +

    6-7        Duty cycle type

    +


    +

           duty (positive/negative)

    +

    val        in clock cycles

    +

    ---        ---------------

    +

    00         2/14

    +

    01         4/12

    +

    10         8/ 8

    +

    11        12/ 4

    +


    +

     Where val represents bits 6-7 of $4000/$4004.

    +


    +

     This counter is reset when the length counter of the same channel is written to (via $4003/$4007).

    +


    +

     The output frequency at this point will now be fed to the volume/envelope decay hardware.

    +


    +


    +

    +----------------------+

    +

    | Wavelength converter |

    +

    +----------------------+

    +

     The wavelength converter is only used in the noise channel. It is used to convert a given 4-bit value to an 11-bit wavelength, which then is sent to the noise's own programmable timer. Here is the bit descriptions:

    +


    +

    $400E bits

    +

    ----------

    +

    0-3        The 4-bit value to be converted

    +


    +

     Below is a conversion chart that shows what 4-bit value will represent the 11-bit wavelength to be fed to the channel's programmable timer:

    +


    +

    value        octave        scale        CPU clock cycles (11-bit wavelength+1)

    +

    -----        ------        -----        --------------------------------------

    +

    0        15        A        002

    +

    1        14        A        004

    +

    2        13        A        008

    +

    3        12        A        010

    +

    4        11        A        020

    +

    5        11        D        030

    +

    6        10        A        040

    +

    7        10        F        050

    +

    8        10        C        065

    +

    9         9        A        07F

    +

    A         9        D        0BE

    +

    B         8        A        0FE

    +

    C         8        D        17D

    +

    D         7        A        1FC

    +

    E         6        A        3F9

    +

    F         5        A        7F2

    +


    +

     Octave and scale information is provided for the music enthusiast programmer who is more familiar with notes than clock cycles.

    +


    +


    +

    +-------------------------+

    +

    | Random number generator |

    +

    +-------------------------+

    +

     The noise channel has a 1-bit pseudo-random number generator. It's based on a 15-bit shift register, and an exclusive or gate. The generator can produce two types of random number sequences: long, and short. The long sequence generates 32,767-bit long number patterns. The short sequence generates 93-bit long number patterns. The 93-bit mode will generally produce higher sounding playback frequencys on the channel. Here is the bit that controls the mode:

    +


    +

    $400E bits

    +

    ----------

    +

    7        mode

    +


    +

     If mode=0, then 32,767-bit long number sequences will be produced (32K mode), otherwise 93-bit long number sequences will be produced (93-bit mode).

    +


    +

     The following diagram shows where the XOR taps are taken off the shift register to produce the 1-bit pseudo-random number sequences for each mode.

    +


    +

    mode            <-----

    +

    ----        EDCBA9876543210

    +

    32K        **

    +

    93-bit        *     *

    +


    +

     The current result of the XOR will be transferred into bit position 0 of the SR, upon the next shift cycle. The 1-bit random number output is taken from pin E, is inverted, then is sent to the volume/envelope decay hardware for the noise channel. The shift register is shifted upon recieving 2 clock pulses from the programmable timer (the shift frequency will be half that of the frequency from the programmable timer (one octave lower)).

    +


    +

     On system reset, this shift register is loaded with a value of 1.

    +


    +


    +

    RP2A03E quirk

    +

    -------------

    +

     I have been informed that revisions of the 2A03 before "F" actually lacked support for the 93-bit looped noise playback mode. While the Famicom's 2A03 went through 4 revisions (E..H), I think that only one was ever used for the front loading NES: "G". Other differences between 2A03 revisions are unknown.

    +


    +


    +

    EOF

    +

    +

    Created with the Personal Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NLFilesFormat.html b/web/help/NLFilesFormat.html index 86b0d837..e414b15d 100644 --- a/web/help/NLFilesFormat.html +++ b/web/help/NLFilesFormat.html @@ -1,117 +1,310 @@ - - + + + + + - .nl files format - - - - - - - - - - + + + + + + + + .nl files format + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    .nl files format

    - - -
    -
    - Parent - - Previous - -
    -
    -
    -
    - -

    -

    .nl files format

    -


    -


    -

    FCEUX implements Symbolic Debugger which uses "NameList" files to store the data about labels and comments. The needed files are created automatically when user right-clicks an address in Disassembly and enters a symbolic name or a comment for it. The files are stored in the same folder as the debugged ROM, and they inherit the name of the ROM.

    -

    These files are simple ASCII text files. You can edit them in any text editor like Notepad.

    -


    -

    When reverse-engineering a game for which you don't have a source, you can reconstruct the logic incrementally, by adding labels/comments while debugging (right-clicking addresses).

    -


    -

    But if you want to debug your own homebrew game, you can setup your workflow to automatically export all names and comments when building the game using your favourite assembler (e.g. ca65 or ASM6). This way you can use FCEUX as a Source-Level Debugger.

    -


    -

    Example: for the ROM called "NES Test Cart (PD).nes" the NL files will be named "NES Test Cart (PD).nes.0.nl", "NES Test Cart (PD).nes.ram.nl", etc.

    -


    -

    Example of contents of a NL file:

    -


    -

    $C000#NewName1#Comment1

    -

    $C002##Comment2

    -

    $C004#NewName2#

    -

    $C006#NewName3#MultilineComment-Part1

    -

    \MultilineComment-Part2

    -

    \MultilineComment-Part3

    -

    $C008/10#NewName4#

    -


    -

    Every line contains two # characters which separate the three parts of one line:

    -

    * The first part (starting with a $ character) is the address to be renamed. Optionally you can add a "/number" part which marks the offsets as a beginning of an array of the given size (the size must be specified in hex form).

    -

    * The second (optional) part is the new name of that address. Whenever the line of that address is shown in the disassembly window, an extra line saying "NewName1: " is shown above it.  Instructions referencing this address, for example JSR $C000 are also changed to JSR NewName1 (in that example).

    -

    * The third (optional) part is the comment that's also added above the disassembly line the comment refers to. It works exactly like the additional name line, only the prefix of that line is different. Comment lines start with "; ".  Multi-lines comments are possible. Lines in an NL file starting with the \ character are just appended to the comment of the preceding line. Multi-line comments are also shown in multiple lines in the disassembly window.

    -


    -

    In the example above, the first line contains all three parts. Using this NL file, all references to the address $C000 are replaced with NewName1, and whenever line $C000 is shown in the disassembly window (or Trace Logger window) an additional comment is also visible right above the actual disassembled line. The second example line defines only a comment while the third line defines only a name. Following that, there's a multi-line comment definition for address $C006. The last line defines an array called NewName4 of size 0x10 (= 16) bytes starting at offset $C008. FCEUX will regard the line like there are 16 lines describing 16 adjacent addresses with names like NewName4[0], NewName4[1], ... NewName4[F].

    -


    -

    NL files must follow a specific naming convention to account for bank swapping. Each bank needs its own NL file with a hexadecimal number of the bank.

    -

    For instance, an NES file named "mygame.nes" that has 4 banks (i.e. ROM size = 64k) would have these NL files:

    -


    -

    mygame.nes.ram.nl

    -

    mygame.nes.0.nl

    -

    mygame.nes.1.nl

    -

    mygame.nes.2.nl

    -

    mygame.nes.3.nl

    -


    -

    All NL files must be in the same directory as the ROM file itself.

    -


    -

    RAM can also be given its own NL file. In the *.ram.nl file you can name and comment RAM addresses (system bus range of 0x0000 - 0x7FFF) instead of ROM addresses. In this case, you might use a line such as:

    -


    -

    $00A5#Mic Test OK#00=Not Passed, 01=Passed

    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Kindle eBooks generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    .nl files format

    + +
    + +

    +

    .nl files format

    +


    +


    +

    FCEUX implements Symbolic Debugger which uses "NameList" files to store the data about labels and comments. The needed files are created automatically when user right-clicks an address in Disassembly and enters a symbolic name or a comment for it. The files are stored in the same folder as the debugged ROM, and they inherit the name of the ROM.

    +

    These files are simple ASCII text files. You can edit them in any text editor like Notepad.

    +


    +

    When reverse-engineering a game for which you don't have a source, you can reconstruct the logic incrementally, by adding labels/comments while debugging (right-clicking addresses).

    +


    +

    But if you want to debug your own homebrew game, you can setup your workflow to automatically export all names and comments when building the game using your favourite assembler (e.g. ca65 or ASM6). This way you can use FCEUX as a Source-Level Debugger.

    +


    +

    Example: for the ROM called "NES Test Cart (PD).nes" the NL files will be named "NES Test Cart (PD).nes.0.nl", "NES Test Cart (PD).nes.ram.nl", etc. 

    +


    +

    Example of contents of a NL file:

    +


    +

    $C000#NewName1#Comment1

    +

    $C002##Comment2

    +

    $C004#NewName2#

    +

    $C006#NewName3#MultilineComment-Part1

    +

    \MultilineComment-Part2

    +

    \MultilineComment-Part3

    +

    $C008/10#NewName4#

    +


    +

    Every line contains two # characters which separate the three parts of one line:

    +

    * The first part (starting with a $ character) is the address to be renamed. Optionally you can add a "/number" part which marks the offsets as a beginning of an array of the given size (the size must be specified in hex form).

    +

    * The second (optional) part is the new name of that address. Whenever the line of that address is shown in the disassembly window, an extra line saying "NewName1: " is shown above it.  Instructions referencing this address, for example JSR $C000 are also changed to JSR NewName1 (in that example).

    +

    * The third (optional) part is the comment that's also added above the disassembly line the comment refers to. It works exactly like the additional name line, only the prefix of that line is different. Comment lines start with "; ".  Multi-lines comments are possible. Lines in an NL file starting with the \ character are just appended to the comment of the preceding line. Multi-line comments are also shown in multiple lines in the disassembly window.

    +


    +

    In the example above, the first line contains all three parts. Using this NL file, all references to the address $C000 are replaced with NewName1, and whenever line $C000 is shown in the disassembly window (or Trace Logger window) an additional comment is also visible right above the actual disassembled line. The second example line defines only a comment while the third line defines only a name. Following that, there's a multi-line comment definition for address $C006. The last line defines an array called NewName4 of size 0x10 (= 16) bytes starting at offset $C008. FCEUX will regard the line like there are 16 lines describing 16 adjacent addresses with names like NewName4[0], NewName4[1], ... NewName4[F].

    +


    +

    NL files must follow a specific naming convention to account for bank swapping. Each bank needs its own NL file with a hexadecimal number of the bank.

    +

    For instance, an NES file named "mygame.nes" that has 4 banks (i.e. ROM size = 64k) would have these NL files:

    +


    +

    mygame.nes.ram.nl

    +

    mygame.nes.0.nl

    +

    mygame.nes.1.nl

    +

    mygame.nes.2.nl

    +

    mygame.nes.3.nl

    +


    +

    All NL files must be in the same directory as the ROM file itself.

    +


    +

    RAM can also be given its own NL file. In the *.ram.nl file you can name and comment RAM addresses (system bus range of 0x0000 - 0x7FFF) instead of ROM addresses. In this case, you might use a line such as:

    +


    +

    $00A5#Mic Test OK#00=Not Passed, 01=Passed

    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create CHM Help documents

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NSFFormat.html b/web/help/NSFFormat.html index 0f2e5f8c..86f50b5f 100644 --- a/web/help/NSFFormat.html +++ b/web/help/NSFFormat.html @@ -1,408 +1,599 @@ - - + + + + + - NSF Format - - - - - - - - - - + + + + + + + + NSF Format + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    NSF Format

    - -
    - Technical Information ›› Sound ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    NES Music Format Spec

    -

                               ---------------------

    -


    -


    -

    By: Kevin Horton  khorton@iquest.net

    -


    -


    -

    NOTE:

    -

    -----

    -


    -


    -

    Remember that I am very willing to add stuff and update this spec.  If

    -

    you find a new sound chip or other change let me know and I will get back

    -

    with you.  E-mail to the above address.

    -


    -


    -

    V1.61 - 06/27/2000 Updated spec a bit

    -

    V1.60 - 06/01/2000 Updated Sunsoft, MMC5, and Namco chip information

    -

    V1.50 - 05/28/2000 Updated FDS, added Sunsoft and Namco chips

    -

    V1.32 - 11/27/1999 Added MMC5 register locations

    -

    V1.30 - 11/14/1999 Added MMC5 audio bit, added some register info

    -

    V1.20 - 09/12/1999 VRC and FDS prelim sound info added

    -

    V1.00 - 05/11/1999 First official NSF specification file

    -


    -


    -


    -

    This file encompasses a way to transfer NES music data in a small, easy to

    -

    use format.

    -


    -

    The basic idea is one rips the music/sound code from an NES game and prepends

    -

    a small header to the data.

    -


    -

    A program of some form (6502/sound emulator) then takes the data and loads

    -

    it into the proper place into the 6502's address space, then inits and plays

    -

    the tune.

    -


    -

    Here's an overview of the header:

    -


    -

    offset  # of bytes   Function

    -

    ----------------------------

    -


    -

    0000    5   STRING  "NESM",01Ah  ; denotes an NES sound format file

    -

    0005    1   BYTE    Version number (currently 01h)

    -

    0006    1   BYTE    Total songs   (1=1 song, 2=2 songs, etc)

    -

    0007    1   BYTE    Starting song (1= 1st song, 2=2nd song, etc)

    -

    0008    2   WORD    (lo/hi) load address of data (8000-FFFF)

    -

    000a    2   WORD    (lo/hi) init address of data (8000-FFFF)

    -

    000c    2   WORD    (lo/hi) play address of data (8000-FFFF)

    -

    000e    32  STRING  The name of the song, null terminated

    -

    002e    32  STRING  The artist, if known, null terminated

    -

    004e    32  STRING  The Copyright holder, null terminated

    -

    006e    2   WORD    (lo/hi) speed, in 1/1000000th sec ticks, NTSC (see text)

    -

    0070    8   BYTE    Bankswitch Init Values (see text, and FDS section)

    -

    0078    2   WORD    (lo/hi) speed, in 1/1000000th sec ticks, PAL (see text)

    -

    007a    1   BYTE    PAL/NTSC bits:

    -

                    bit 0: if clear, this is an NTSC tune

    -

                    bit 0: if set, this is a PAL tune

    -

                    bit 1: if set, this is a dual PAL/NTSC tune

    -

                    bits 2-7: not used. they *must* be 0

    -

    007b    1   BYTE    Extra Sound Chip Support

    -

                    bit 0: if set, this song uses VRCVI

    -

                    bit 1: if set, this song uses VRCVII

    -

                    bit 2: if set, this song uses FDS Sound

    -

                    bit 3: if set, this song uses MMC5 audio

    -

                    bit 4: if set, this song uses Namco 106

    -

                    bit 5: if set, this song uses Sunsoft FME-07

    -

                    bits 6,7: future expansion: they *must* be 0

    -

    007c    4   ----    4 extra bytes for expansion (must be 00h)

    -

    0080    nnn ----    The music program/data follows

    -


    -

    This may look somewhat familiar;  if so that's because this is somewhat

    -

    sorta of based on the PSID file format for C64 music/sound.

    -


    -


    -

    Loading a tune into RAM

    -

    -----------------------

    -


    -

    If offsets 0070h to 0077h have 00h in them, then bankswitching is *not*

    -

    used.  If one or more bytes are something other than 00h then bankswitching

    -

    is used.  If bankswitching is used then the load address is still used,

    -

    but you now use (ADDRESS AND 0FFFh) to determine where on the first bank

    -

    to load the data.

    -


    -


    -

    Each bank is 4K in size, and that means there are 8 of them for the

    -

    entire 08000h-0ffffh range in the 6502's address space.  You determine where

    -

    in memory the data goes by setting bytes 070h thru 077h in the file.

    -

    These determine the inital bank values that will be used, and hence where

    -

    the data will be loaded into the address space.

    -


    -

    Here's an example:

    -


    -

    METROID.NSF will be used for the following explaination.

    -


    -

    The file is set up like so:  (starting at 070h in the file)

    -


    -


    -

    0070: 05 05 05 05 05 05 05 05 - 00 00 00 00 00 00 00 00

    -

    0080: ... music data goes here...

    -


    -

    Since 0070h-0077h are something other than 00h, then we know that this

    -

    tune uses bankswitching.  The load address for the data is specified as

    -

    08000h.  We take this AND 0fffh and get 0000h, so we will load data in

    -

    at byte 0 of bank 0, since data is loaded into the banks sequentially

    -

    starting from bank 0 up until the music data is fully loaded.

    -


    -

    Metroid has 6 4K banks in it, numbered 0 through 5.  The 6502's address

    -

    space has 8 4K bankswitchable blocks on it, starting at 08000h-08fffh,

    -

    09000h-09fffh, 0a000h-0afffh ... 0f000h-0ffffh.  Each one of these is 4K in

    -

    size, and the current bank is controlled by writes to 05ff8h thru 05fffh,

    -

    one byte per bank.  So, 05ff8h controls the 08000h-08fffh range, 05ff9h

    -

    controls the 09000h-09fffh range, etc. up to 05fffh which controls the

    -

    0f000h-0ffffh range.  When the song is loaded into RAM, it is loaded into

    -

    the banks and not the 6502's address space.  Once this is done, then the

    -

    bank control registers are written to set up the inital bank values.

    -

    To do this, the value at 0070h in the file is written to 05ff8h, 0071h

    -

    is written to 05ff9h, etc. all the way to 0077h is written to 05fffh.

    -

    This is should be done before every call to the init routine.

    -


    -

    If the tune was not bankswitched, then it is simply loaded in at the

    -

    specified load address, until EOF

    -


    -


    -

    Initalizing a tune

    -

    ------------------

    -


    -

    This is pretty simple.  Load the desired song # into the accumulator,

    -

    minus 1 and set the X register to specify PAL (X=1) or NTSC (X=0).

    -

    If this is a single standard tune (i.e. PAL *or* NTSC but not both)

    -

    then the X register contents should not matter.  Once the song # and

    -

    optional PAL/NTSC standard are loaded, simply call the INIT address.

    -

    Once init is done, it should perform an RTS.

    -


    -


    -

    Playing a tune

    -

    --------------

    -


    -

    Once the tune has been initalized, it can now be played.  To do this,

    -

    simply call the play address several times a second.  How many times

    -

    per second is determined by offsets 006eh and 006fh in the file.

    -

    These bytes denote the speed of playback in 1/1000000ths of a second.  

    -

    For the "usual" 60Hz playback rate, set this to 411ah.  

    -


    -

    To generate a differing playback rate, use this formula:

    -


    -


    -

            1000000

    -

    PBRATE= ---------

    -

             speed

    -


    -

    Where PBRATE is the value you stick into 006e/006fh in the file, and

    -

    speed is the desired speed in hertz.

    -


    -


    -

    "Proper" way to load the tune

    -

    -----------------------------

    -


    -

    1) If the tune is bankswitched, go to #3.

    -


    -

    2) Load the data into the 6502's address space starting at the specified

    -

      load address. Go to #4.

    -


    -

    3) Load the data into a RAM area, starting at (start_address AND 0fffh).

    -


    -

    4) Tune load is done.

    -


    -


    -

    "Proper" way to init a tune

    -

    ---------------------------

    -


    -

    1) Clear all RAM at 0000h-07ffh.

    -


    -

    2) Clear all RAM at 6000h-7fffh.

    -


    -

    3) Init the sound registers by writing 00h to 04000-0400Fh, 10h to 4010h,

    -

      and 00h to 4011h-4013h.

    -


    -

    4) Set volume register 04015h to 00fh.

    -


    -

    5) If this is a banked tune, load the bank values from the header into

    -

      5ff8-5fffh.

    -


    -

    6) Set the accumulator and X registers for the desired song.

    -


    -

    7) Call the music init routine.

    -


    -


    -

    "Proper" way to play a tune

    -

    ---------------------------

    -


    -

    1) Call the play address of the music at periodic intervals determined

    -

      by the speed words.  Which word to use is determined by which mode

    -

      you are in- PAL or NTSC.

    -


    -


    -

    Sound Chip Support

    -

    ------------------

    -


    -

    Byte 007bh of the file stores the sound chip flags.  If a particular flag

    -

    is set, those sound registers should be enabled.  If the flag is clear,

    -

    then those registers should be disabled.

    -


    -

    * VRCVI Uses registers 9000-9002, A000-A002, and B000-B002, write only.

    -


    -

    Caveats: 1) The above registers are *write only* and must not disrupt music

    -

               code that happens to be stored there.

    -


    -

            2) Major caveat:  The A0 and A1 lines are flipped on a few games!!

    -

               If you rip the music and it sounds all funny, flip around

    -

               the xxx1 and xxx2 register pairs.  (i.e. 9001 and 9002)  9000

    -

               and 9003 can be left untouched.  I decided to do this since it

    -

               would make things easier all around, and this means you only

    -

               will have to change the music code in a very few places (6).

    -

               Esper2 and Madara will need this change, while Castlevania 3j

    -

               will not for instance.

    -

           

    -

            3) See my VRCVI.TXT doc for a complete register description.

    -


    -

    * VRCVII Uses registers 9010 and 9030, write only.

    -


    -

    Caveats: 1) Same caveat as #1, above.

    -


    -

            2) See my VRCVII.TXT doc for a complete register description.

    -


    -

    * FDS Sound uses registers from 4040 through 4092.

    -


    -

    Caveats: 1) 6000-DFFF is assumed to be RAM, since 6000-DFFF is RAM on the

    -

               FDS.  E000-FFFF is usually not included in FDS games because

    -

               it is the BIOS ROM.  However, it can be used on FDS rips to help

    -

               the ripper (for modified play/init addresses).

    -


    -

            2) Bankswitching operates slightly different on FDS tunes.  

    -

               5FF6 and 5FF7 control the banks 6000-6FFF and 7000-7FFF

    -

               respectively.  NSF header offsets 76h and 77h correspond to

    -

               *both* 6000-7FFF *AND* E000-FFFF.  Keep this in mind!

    -


    -

    * MMC5 Sound Uses registers 5000-5015, write only as well as 5205 and 5206,

    -

               and 5C00-5FF5

    -


    -

    Caveats: 1) Generating a proper doc file.  Be patient.  

    -


    -

            2) 5205 and 5206 are a hardware 8*8 multiplier.  The idea being

    -

               you write your two bytes to be multiplied into 5205 and 5206

    -

               and after doing so, you read the result back out.  Still working

    -

               on what exactly triggers it (I think a write to either 5205

    -

               or 5206 triggers the multiply).

    -


    -

            3) 5C00-5FF5 should be RAM to emulate EXRAM while in MMC5 mode.

    -


    -

    Note: Thanks to Mamiya for the EXRAM info.

    -


    -


    -

    * Namco 106 Sound Uses registers 4800 and F800.  

    -


    -

               This works similar to VRC7.  4800 is the "data" port which is

    -

               readable and writable, while F800 is the "address" port and is

    -

               writable only.

    -


    -

               The address is 7 bits plus a "mode" bit.  Bit 7 controls

    -

               address auto-incrementing.  If bit 7 is set, the address will

    -

               auto-increment after a byte of data is read or written from/to

    -

               4800.

    -


    -

               $40 ffffffff f:frequency L

    -

               $42 ffffffff f:frequency M

    -

               $44 ---sssff f:frequency H s:tone length (8-s)*4 in 4bit-samples

    -

               $46 tttttttt t:tone address(4bit-address,$41 means high-4bits of $20)

    -

               $47 -cccvvvv v:linear volume 1+c:number of channels in use($7F only)

    -

               $40-47:ch1 $48-4F:ch2 ... $78-7F:ch8

    -

               ch2-ch8 same to ch1

    -


    -

               $00-3F(8ch)...77(1ch) hhhhllll tone data

    -

               h:odd address data(signed 4bit)

    -

               l:even address data(signed 4bit)

    -


    -

               real frequency = (f * NES_BASECYCLES) / (40000h * (c+1) * (8-s)*4 * 45)

    -

               NES_BASECYCLES 21477270(Hz)

    -


    -

    Note:  Very Special thanks to Mamiya for this information!

    -


    -


    -

    * Sunsoft FME-07 Sound uses registers C000 and E000

    -


    -

               This is similar to the common AY 3-8910 sound chip that is

    -

               used on tons of arcade machines, and in the Intellivision.

    -


    -

               C000 is the address port

    -

               E000 is the data port

    -


    -

               Both are write-only, and behave like the AY 3-8910.

    -


    -

    Note:  Special thanks to Mamiya for this information as well

    -


    -


    -

    Caveats

    -

    -------

    -


    -

    1) The starting song number and maximum song numbers start counting at

    -

      1, while the init address of the tune starts counting at 0.  To

    -

      "fix", simply pass the desired song number minus 1 to the init

    -

      routine.

    -


    -

    2) The NTSC speed word is used *only* for NTSC tunes, or dual PAL/NTSC tunes.

    -

      The PAL speed word is used *only* for PAL tunes, or dual PAL/NTSC tunes.

    -


    -

    3) The length of the text in the name, artist, and copyright fields must

    -

      be 31 characters or less!  There has to be at least a single NULL byte

    -

      (00h) after the text, between fields.

    -


    -

    4) If a field is not known (name, artist, copyright) then the field must

    -

      contain the string "<?>" (without quotes).  

    -


    -

    5) There should be 8K of RAM present at 6000-7FFFh. MMC5 tunes need RAM at

    -

      5C00-5FF7 to emulate its EXRAM. 8000-FFFF Should be read-only (not

    -

      writable) after a tune has loaded.  The only time this area should be

    -

      writable is if an FDS tune is being played.

    -


    -

    6) Do not assume the state of *anything* on entry to the init routine

    -

      except A and X.  Y can be anything, as can the flags.  

    -


    -

    7) Do not assume the state of *anything* on entry to the play routine either.

    -

      Flags, X, A, and Y could be at any state.  I've fixed about 10 tunes

    -

      because of this problem and the problem, above.

    -


    -

    8) The stack sits at 1FFh and grows down.  Make sure the tune does not

    -

      attempt to use 1F0h-1FFh for variables. (Armed Dragon Villigust did and

    -

      I had to relocate its RAM usage to 2xx)

    -


    -

    9) Variables should sit in the 0000h-07FFh area *only*.  If the tune writes

    -

      outside this range, say 1400h this is bad and should be relocated.

    -

      (Terminator 3 did this and I relocated it to 04xx).

    -


    -

    That's it!

    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free iPhone documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    NSF Format

    + +
    + +

    +

    NES Music Format Spec

    +

                                ---------------------

    +


    +


    +

    By: Kevin Horton  khorton@iquest.net

    +


    +


    +

    NOTE:

    +

    -----

    +


    +


    +

    Remember that I am very willing to add stuff and update this spec.  If

    +

    you find a new sound chip or other change let me know and I will get back

    +

    with you.  E-mail to the above address. 

    +


    +


    +

    V1.61 - 06/27/2000 Updated spec a bit

    +

    V1.60 - 06/01/2000 Updated Sunsoft, MMC5, and Namco chip information

    +

    V1.50 - 05/28/2000 Updated FDS, added Sunsoft and Namco chips

    +

    V1.32 - 11/27/1999 Added MMC5 register locations

    +

    V1.30 - 11/14/1999 Added MMC5 audio bit, added some register info

    +

    V1.20 - 09/12/1999 VRC and FDS prelim sound info added

    +

    V1.00 - 05/11/1999 First official NSF specification file

    +


    +


    +


    +

    This file encompasses a way to transfer NES music data in a small, easy to

    +

    use format.

    +


    +

    The basic idea is one rips the music/sound code from an NES game and prepends

    +

    a small header to the data.

    +


    +

    A program of some form (6502/sound emulator) then takes the data and loads

    +

    it into the proper place into the 6502's address space, then inits and plays

    +

    the tune.

    +


    +

    Here's an overview of the header:

    +


    +

    offset  # of bytes   Function

    +

    ----------------------------

    +


    +

    0000    5   STRING  "NESM",01Ah  ; denotes an NES sound format file

    +

    0005    1   BYTE    Version number (currently 01h)

    +

    0006    1   BYTE    Total songs   (1=1 song, 2=2 songs, etc)

    +

    0007    1   BYTE    Starting song (1= 1st song, 2=2nd song, etc)

    +

    0008    2   WORD    (lo/hi) load address of data (8000-FFFF)

    +

    000a    2   WORD    (lo/hi) init address of data (8000-FFFF)

    +

    000c    2   WORD    (lo/hi) play address of data (8000-FFFF)

    +

    000e    32  STRING  The name of the song, null terminated

    +

    002e    32  STRING  The artist, if known, null terminated

    +

    004e    32  STRING  The Copyright holder, null terminated

    +

    006e    2   WORD    (lo/hi) speed, in 1/1000000th sec ticks, NTSC (see text)

    +

    0070    8   BYTE    Bankswitch Init Values (see text, and FDS section)

    +

    0078    2   WORD    (lo/hi) speed, in 1/1000000th sec ticks, PAL (see text)

    +

    007a    1   BYTE    PAL/NTSC bits:

    +

                     bit 0: if clear, this is an NTSC tune

    +

                     bit 0: if set, this is a PAL tune

    +

                     bit 1: if set, this is a dual PAL/NTSC tune

    +

                     bits 2-7: not used. they *must* be 0

    +

    007b    1   BYTE    Extra Sound Chip Support

    +

                     bit 0: if set, this song uses VRCVI

    +

                     bit 1: if set, this song uses VRCVII

    +

                     bit 2: if set, this song uses FDS Sound

    +

                     bit 3: if set, this song uses MMC5 audio

    +

                     bit 4: if set, this song uses Namco 106

    +

                     bit 5: if set, this song uses Sunsoft FME-07

    +

                     bits 6,7: future expansion: they *must* be 0

    +

    007c    4   ----    4 extra bytes for expansion (must be 00h)

    +

    0080    nnn ----    The music program/data follows

    +


    +

    This may look somewhat familiar;  if so that's because this is somewhat

    +

    sorta of based on the PSID file format for C64 music/sound.

    +


    +


    +

    Loading a tune into RAM

    +

    -----------------------

    +


    +

    If offsets 0070h to 0077h have 00h in them, then bankswitching is *not*

    +

    used.  If one or more bytes are something other than 00h then bankswitching

    +

    is used.  If bankswitching is used then the load address is still used,

    +

    but you now use (ADDRESS AND 0FFFh) to determine where on the first bank

    +

    to load the data.

    +


    +


    +

    Each bank is 4K in size, and that means there are 8 of them for the

    +

    entire 08000h-0ffffh range in the 6502's address space.  You determine where

    +

    in memory the data goes by setting bytes 070h thru 077h in the file.

    +

    These determine the inital bank values that will be used, and hence where

    +

    the data will be loaded into the address space.

    +


    +

    Here's an example:

    +


    +

    METROID.NSF will be used for the following explaination.

    +


    +

    The file is set up like so:  (starting at 070h in the file)

    +


    +


    +

    0070: 05 05 05 05 05 05 05 05 - 00 00 00 00 00 00 00 00

    +

    0080: ... music data goes here...

    +


    +

    Since 0070h-0077h are something other than 00h, then we know that this

    +

    tune uses bankswitching.  The load address for the data is specified as

    +

    08000h.  We take this AND 0fffh and get 0000h, so we will load data in

    +

    at byte 0 of bank 0, since data is loaded into the banks sequentially

    +

    starting from bank 0 up until the music data is fully loaded.

    +


    +

    Metroid has 6 4K banks in it, numbered 0 through 5.  The 6502's address

    +

    space has 8 4K bankswitchable blocks on it, starting at 08000h-08fffh,

    +

    09000h-09fffh, 0a000h-0afffh ... 0f000h-0ffffh.  Each one of these is 4K in

    +

    size, and the current bank is controlled by writes to 05ff8h thru 05fffh,

    +

    one byte per bank.  So, 05ff8h controls the 08000h-08fffh range, 05ff9h 

    +

    controls the 09000h-09fffh range, etc. up to 05fffh which controls the 

    +

    0f000h-0ffffh range.  When the song is loaded into RAM, it is loaded into

    +

    the banks and not the 6502's address space.  Once this is done, then the

    +

    bank control registers are written to set up the inital bank values.

    +

    To do this, the value at 0070h in the file is written to 05ff8h, 0071h

    +

    is written to 05ff9h, etc. all the way to 0077h is written to 05fffh.

    +

    This is should be done before every call to the init routine.

    +


    +

    If the tune was not bankswitched, then it is simply loaded in at the 

    +

    specified load address, until EOF

    +


    +


    +

    Initalizing a tune

    +

    ------------------

    +


    +

    This is pretty simple.  Load the desired song # into the accumulator,

    +

    minus 1 and set the X register to specify PAL (X=1) or NTSC (X=0).

    +

    If this is a single standard tune (i.e. PAL *or* NTSC but not both)

    +

    then the X register contents should not matter.  Once the song # and

    +

    optional PAL/NTSC standard are loaded, simply call the INIT address.

    +

    Once init is done, it should perform an RTS.

    +


    +


    +

    Playing a tune

    +

    --------------

    +


    +

    Once the tune has been initalized, it can now be played.  To do this,

    +

    simply call the play address several times a second.  How many times

    +

    per second is determined by offsets 006eh and 006fh in the file.

    +

    These bytes denote the speed of playback in 1/1000000ths of a second.  

    +

    For the "usual" 60Hz playback rate, set this to 411ah.  

    +


    +

    To generate a differing playback rate, use this formula:

    +


    +


    +

             1000000

    +

    PBRATE= ---------

    +

              speed

    +


    +

    Where PBRATE is the value you stick into 006e/006fh in the file, and

    +

    speed is the desired speed in hertz. 

    +


    +


    +

    "Proper" way to load the tune

    +

    -----------------------------

    +


    +

    1) If the tune is bankswitched, go to #3.

    +


    +

    2) Load the data into the 6502's address space starting at the specified

    +

       load address. Go to #4.

    +


    +

    3) Load the data into a RAM area, starting at (start_address AND 0fffh).

    +


    +

    4) Tune load is done.

    +


    +


    +

    "Proper" way to init a tune

    +

    ---------------------------

    +


    +

    1) Clear all RAM at 0000h-07ffh.

    +


    +

    2) Clear all RAM at 6000h-7fffh.

    +


    +

    3) Init the sound registers by writing 00h to 04000-0400Fh, 10h to 4010h,

    +

       and 00h to 4011h-4013h.

    +


    +

    4) Set volume register 04015h to 00fh.

    +


    +

    5) If this is a banked tune, load the bank values from the header into

    +

       5ff8-5fffh.

    +


    +

    6) Set the accumulator and X registers for the desired song.

    +


    +

    7) Call the music init routine.

    +


    +


    +

    "Proper" way to play a tune

    +

    ---------------------------

    +


    +

    1) Call the play address of the music at periodic intervals determined

    +

       by the speed words.  Which word to use is determined by which mode

    +

       you are in- PAL or NTSC.

    +


    +


    +

    Sound Chip Support

    +

    ------------------

    +


    +

    Byte 007bh of the file stores the sound chip flags.  If a particular flag

    +

    is set, those sound registers should be enabled.  If the flag is clear,

    +

    then those registers should be disabled.

    +


    +

    * VRCVI Uses registers 9000-9002, A000-A002, and B000-B002, write only.

    +


    +

    Caveats: 1) The above registers are *write only* and must not disrupt music

    +

                code that happens to be stored there.

    +


    +

             2) Major caveat:  The A0 and A1 lines are flipped on a few games!!

    +

                If you rip the music and it sounds all funny, flip around 

    +

                the xxx1 and xxx2 register pairs.  (i.e. 9001 and 9002)  9000

    +

                and 9003 can be left untouched.  I decided to do this since it 

    +

                would make things easier all around, and this means you only 

    +

                will have to change the music code in a very few places (6).

    +

                Esper2 and Madara will need this change, while Castlevania 3j

    +

                will not for instance.

    +

             

    +

             3) See my VRCVI.TXT doc for a complete register description.

    +


    +

    * VRCVII Uses registers 9010 and 9030, write only.

    +


    +

    Caveats: 1) Same caveat as #1, above.

    +


    +

             2) See my VRCVII.TXT doc for a complete register description.

    +


    +

    * FDS Sound uses registers from 4040 through 4092.

    +


    +

    Caveats: 1) 6000-DFFF is assumed to be RAM, since 6000-DFFF is RAM on the

    +

                FDS.  E000-FFFF is usually not included in FDS games because

    +

                it is the BIOS ROM.  However, it can be used on FDS rips to help

    +

                the ripper (for modified play/init addresses).

    +


    +

             2) Bankswitching operates slightly different on FDS tunes.  

    +

                5FF6 and 5FF7 control the banks 6000-6FFF and 7000-7FFF 

    +

                respectively.  NSF header offsets 76h and 77h correspond to

    +

                *both* 6000-7FFF *AND* E000-FFFF.  Keep this in mind!

    +


    +

    * MMC5 Sound Uses registers 5000-5015, write only as well as 5205 and 5206,

    +

                and 5C00-5FF5

    +


    +

    Caveats: 1) Generating a proper doc file.  Be patient.  

    +


    +

             2) 5205 and 5206 are a hardware 8*8 multiplier.  The idea being

    +

                you write your two bytes to be multiplied into 5205 and 5206

    +

                and after doing so, you read the result back out.  Still working

    +

                on what exactly triggers it (I think a write to either 5205

    +

                or 5206 triggers the multiply).

    +


    +

             3) 5C00-5FF5 should be RAM to emulate EXRAM while in MMC5 mode.

    +


    +

    Note: Thanks to Mamiya for the EXRAM info.

    +


    +


    +

    * Namco 106 Sound Uses registers 4800 and F800.  

    +


    +

                This works similar to VRC7.  4800 is the "data" port which is

    +

                readable and writable, while F800 is the "address" port and is

    +

                writable only.

    +


    +

                The address is 7 bits plus a "mode" bit.  Bit 7 controls

    +

                address auto-incrementing.  If bit 7 is set, the address will

    +

                auto-increment after a byte of data is read or written from/to

    +

                4800.

    +


    +

                $40 ffffffff f:frequency L

    +

                $42 ffffffff f:frequency M

    +

                $44 ---sssff f:frequency H s:tone length (8-s)*4 in 4bit-samples

    +

                $46 tttttttt t:tone address(4bit-address,$41 means high-4bits of $20)

    +

                $47 -cccvvvv v:linear volume 1+c:number of channels in use($7F only)

    +

                $40-47:ch1 $48-4F:ch2 ... $78-7F:ch8

    +

                ch2-ch8 same to ch1

    +


    +

                $00-3F(8ch)...77(1ch) hhhhllll tone data

    +

                h:odd address data(signed 4bit)

    +

                l:even address data(signed 4bit)

    +


    +

                real frequency = (f * NES_BASECYCLES) / (40000h * (c+1) * (8-s)*4 * 45)

    +

                NES_BASECYCLES 21477270(Hz)

    +


    +

    Note:  Very Special thanks to Mamiya for this information!

    +


    +


    +

    * Sunsoft FME-07 Sound uses registers C000 and E000

    +


    +

                This is similar to the common AY 3-8910 sound chip that is

    +

                used on tons of arcade machines, and in the Intellivision.

    +


    +

                C000 is the address port

    +

                E000 is the data port

    +


    +

                Both are write-only, and behave like the AY 3-8910.

    +


    +

    Note:  Special thanks to Mamiya for this information as well

    +


    +


    +

    Caveats

    +

    -------

    +


    +

    1) The starting song number and maximum song numbers start counting at

    +

       1, while the init address of the tune starts counting at 0.  To

    +

       "fix", simply pass the desired song number minus 1 to the init

    +

       routine.

    +


    +

    2) The NTSC speed word is used *only* for NTSC tunes, or dual PAL/NTSC tunes.

    +

       The PAL speed word is used *only* for PAL tunes, or dual PAL/NTSC tunes.

    +


    +

    3) The length of the text in the name, artist, and copyright fields must 

    +

       be 31 characters or less!  There has to be at least a single NULL byte

    +

       (00h) after the text, between fields.

    +


    +

    4) If a field is not known (name, artist, copyright) then the field must

    +

       contain the string "<?>" (without quotes).  

    +


    +

    5) There should be 8K of RAM present at 6000-7FFFh. MMC5 tunes need RAM at

    +

       5C00-5FF7 to emulate its EXRAM. 8000-FFFF Should be read-only (not 

    +

       writable) after a tune has loaded.  The only time this area should be 

    +

       writable is if an FDS tune is being played.

    +


    +

    6) Do not assume the state of *anything* on entry to the init routine

    +

       except A and X.  Y can be anything, as can the flags.  

    +


    +

    7) Do not assume the state of *anything* on entry to the play routine either.

    +

       Flags, X, A, and Y could be at any state.  I've fixed about 10 tunes

    +

       because of this problem and the problem, above.

    +


    +

    8) The stack sits at 1FFh and grows down.  Make sure the tune does not

    +

       attempt to use 1F0h-1FFh for variables. (Armed Dragon Villigust did and

    +

       I had to relocate its RAM usage to 2xx)

    +


    +

    9) Variables should sit in the 0000h-07FFh area *only*.  If the tune writes

    +

       outside this range, say 1400h this is bad and should be relocated. 

    +

       (Terminator 3 did this and I relocated it to 04xx).

    +


    +

    That's it!

    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured Help generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NameTableViewer.html b/web/help/NameTableViewer.html index 77903cd8..93cc2af7 100644 --- a/web/help/NameTableViewer.html +++ b/web/help/NameTableViewer.html @@ -1,96 +1,287 @@ - - + + + + + - Name Table Viewer - - - - - - - - - - + + + + + + + + Name Table Viewer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Name Table Viewer

    - -
    - Debug ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Name Table Viewer

    -


    -

    Introduction

    -


    -

    This displays the name tables as they exist in PPU memory. Furthermore, it shows you the game's current mirroring, and the current state of the PPU's scroll registers (if the option for this is set).  It also lets you change the mirroring on the fly (which will break most games).

    -


    -


    -

    Using the Name Table Viewer

    -


    -

    Note that the Name Table Viewer will display the name tables using whatever CHR is present at the time the "Display on Scanline" scanline is reached. So for example if it does not correctly display a game's status bar, try setting it to update on a scanline in which the status bar is displayed.

    -


    -

    The same applies to the Scroll Lines: they display the state of the PPU scroll registers when the "Display on Scanline" scanline is reached. So for example if said scanline is within the game's status bar, it will not display level scrolling because the horizontal scroll is always zero at the time that scanline is drawn. To display the level scrolling, set it to update on a scanline in which the level is displayed.

    -


    -

    Display on scanline

    -

    This will show what it looks like when the NES has finished drawing that many scanlines to screen including any PPU data scroll line movement

    -


    -

    Getting Tile Addresses

    -

    Placing the mouse cursor over the name table image will display the tile address of a given tile.

    -


    -


    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Name Table Viewer

    + +
    + +

    +

    Name Table Viewer

    +


    +

    Introduction

    +


    +

    This displays the name tables as they exist in PPU memory. Furthermore, it shows you the game's current mirroring, and the current state of the PPU's scroll registers (if the option for this is set).  It also lets you change the mirroring on the fly (which will break most games).

    +


    +


    +

    Using the Name Table Viewer

    +


    +

    Note that the Name Table Viewer will display the name tables using whatever CHR is present at the time the "Display on Scanline" scanline is reached. So for example if it does not correctly display a game's status bar, try setting it to update on a scanline in which the status bar is displayed.

    +


    +

    The same applies to the Scroll Lines: they display the state of the PPU scroll registers when the "Display on Scanline" scanline is reached. So for example if said scanline is within the game's status bar, it will not display level scrolling because the horizontal scroll is always zero at the time that scanline is drawn. To display the level scrolling, set it to update on a scanline in which the level is displayed.

    +


    +

    Display on scanline

    +

    This will show what it looks like when the NES has finished drawing that many scanlines to screen including any PPU data scroll line movement

    +


    +

    Getting Tile Addresses

    +

    Placing the mouse cursor over the name table image will display the tile address of a given tile.

    +


    +


    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easy EBook and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/NetworkPlay.html b/web/help/NetworkPlay.html index 02dce064..57165ae6 100644 --- a/web/help/NetworkPlay.html +++ b/web/help/NetworkPlay.html @@ -1,78 +1,269 @@ - - + + + + + - Network Play - - - - - - - - - - + + + + + + + + Network Play + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Network Play

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Network Play

    -


    -

    Allows you to play against a human opponent over the internet.  Requires the use of FCEU server.

    -


    -

    Currently however, FCEU Server runs very poorly and is hardly useable.  This issue will be resolved in a future release.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create CHM Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Network Play

    + +
    + +

    +

    Network Play

    +


    +

    Allows you to play against a human opponent over the internet.  Requires the use of FCEU server.

    +


    +

    Currently however, FCEU Server runs very poorly and is hardly useable.  This issue will be resolved in a future release.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring tool

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Newtopic.html b/web/help/Newtopic.html new file mode 100644 index 00000000..4fb09d8f --- /dev/null +++ b/web/help/Newtopic.html @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + What's New? 2.3.0 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.3.0 (changelog)

    + +
    + +

    +

    What's New? 2.3.0

    +

    Released -- 15 December 2020

    +


    +


    +

    The 2.3.0 release includes 4 years worth of improvements and bug fixes.

    +


    +

    Common

    +
      +
    • 64 bit build support
    • +
    +


    +

    Emulation

    +
      +
    • Added Mapper 111 cheapocabra
    • +
    • Added Mapper 190
    • +
    • Added RAM Init Options: default (00 00 00 00 FF FF FF FF as always), all FF, all 00, random.
    • +
    • New UNIF mappers
    • +
    +


    +

    Lua

    +
      +
    • Various improvements and bug fixes to pre-existing functions
    • +
    • Fix parsing of lua colors over 0x80000000 on 32bits systems
    • +
    • Lua write callbacks: adding optional third parameter to retrieve the value written, added Sprites.lua script to visualize sprites
    • +
    +


    +

    New Lua functions:

    +
      +
    • emu.exit()
    • +
    • rom.getfilename()
    • +
    +


    +

    Win32

    +
      +
    • Various GUI improvements and bug fixes
    • +
    +


    +

    Debugger

    +
      +
    • Added memory read/write conditional breakpoint capability.
    • +
    • Added illegal opcode support for breakpoints.
    • +
    • Support for 'S' register in conditional debugger breakpoints
    • +
    +


    +

    Trace Logger

    +
      +
    • Added bank number log option
    • +
    +


    +

    CDLogger

    +
      +
    • Fix Fixed VRAM data logging glitch
    • +
    +


    +

    Hex Editor

    +
      +
    • Added OAM view feature
    • +
    • Bookmark fixes for all view region types
    • +
    • Prevent middle mouse button from attempting to "FreezeRam" when not in RAM mode
    • +
    +


    +

    SDL

    +
      +
    • GUI completely rewritten using Qt5. Replaces old GTK GUI.
    • +
    • New Qt GUI now contains most of the debug tools that previously only existed in windows version.
    • +
    • Build setup migrated to cmake. Replaces scons build setup.
    • +
    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Create help files for the Qt Help Framework

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Overview.html b/web/help/Overview.html index c9a0b8a7..1e9c1409 100644 --- a/web/help/Overview.html +++ b/web/help/Overview.html @@ -1,78 +1,269 @@ - - + + + + + - Overview - - - - - - - - - - + + + + + + + + Overview + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Overview

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    FCEUX

    -


    -

    FCEUX is a cross platform, NTSC and PAL Famicom/NES and Dendy emulator that is an evolution of the original FCE Ultra emulator.  Over time FCE Ultra had separated into many separate branches.  

    -


    -

    The concept behind FCEUX is to merge elements from FCEU Ultra, FCEU rerecording, FCEUXD, FCEUXDSP, FCEUXDSP CE, and FCEU-mm into a single branch of FCEU.  As the X implies, it is an all-encompassing version of the FCEU emulator that provides the best of all worlds for the general player, the ROM-hacking community, and the Tool-Assisted Speedrun Community.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free CHM Help documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Overview

    + +
    + +

    +

    FCEUX

    +


    +

    FCEUX is a cross platform, NTSC and PAL Famicom/NES and Dendy emulator that is an evolution of the original FCE Ultra emulator.  Over time FCE Ultra had separated into many separate branches.  

    +


    +

    The concept behind FCEUX is to merge elements from FCEU Ultra, FCEU rerecording, FCEUXD, FCEUXDSP, FCEUXDSP CE, and FCEU-mm into a single branch of FCEU.  As the X implies, it is an all-encompassing version of the FCEU emulator that provides the best of all worlds for the general player, the ROM-hacking community, and the Tool-Assisted Speedrun Community.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Write EPub books for the iPad

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/OverviewofIncludedScripts.html b/web/help/OverviewofIncludedScripts.html index f8587344..5619bd32 100644 --- a/web/help/OverviewofIncludedScripts.html +++ b/web/help/OverviewofIncludedScripts.html @@ -1,130 +1,320 @@ - - + + + + + - Overview of Included Scripts - - - - - - - - - - + + + + + + + + Overview of Included Scripts + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Overview of Included Scripts

    - -
    - Lua Scripting ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Overview of Included Scripts

    + +
    +

    -

    (written by FatRatKnight)

    -


    -

    Overview of Included Scripts

    -


    -

    Many users of FCEUX do not investigate the luaScripts folder, or, for that matter, ignore lua scripting altogether. The purpose of this text is to let users know that knowing how to create lua scripts is not a requirement in using them. Indeed, there are several scripts that, if you just load them, will explain themselves enough that you don't need to know how to program at all in order to use them. Besides, they shouldn't need to be re-programmed anyway if you are to use them, for if they needed programming experience just to be used, their existence is largely defeated by that very fact!

    -


    -

    FCEUX itself is a program that you load. Our amazing programmers did all the work already so you don't need to program up your own FCEUX to run it, do you? The same can be said of these scripts.

    -


    -

    So, open the luaScripts folder and actually take the time to look at some of these scripts. You may use a text-editing program to open these if you so wish.

    -


    -


    -

    General Purpose scripts:

    -

    These may be used with any game freely. Else, the "General" part of General Purpose doesn't apply.

    -


    -
      -
    • Mutlitrack2.lua        -        Tracks future input that FCEUX promptly loses on state-load, for TAS
    • -
    • Subtitler.lua                -        For easier use of FCEUX's built-in subtitles for .fm2 files
    • -
    • Rewinder.lua        -        A way to rewind backwards by pressing a button
    • -
    • Sprites.lua        -        Sprite debugging highlights all sprites on screen, with mouse hover to inspect.
    • +

      (written by FatRatKnight)

      +


      +

      Overview of Included Scripts

      +


      +

      Many users of FCEUX do not investigate the luaScripts folder, or, for that matter, ignore lua scripting altogether. The purpose of this text is to let users know that knowing how to create lua scripts is not a requirement in using them. Indeed, there are several scripts that, if you just load them, will explain themselves enough that you don't need to know how to program at all in order to use them. Besides, they shouldn't need to be re-programmed anyway if you are to use them, for if they needed programming experience just to be used, their existence is largely defeated by that very fact!

      +


      +

      FCEUX itself is a program that you load. Our amazing programmers did all the work already so you don't need to program up your own FCEUX to run it, do you? The same can be said of these scripts.

      +


      +

      So, open the luaScripts folder and actually take the time to look at some of these scripts. You may use a text-editing program to open these if you so wish.

      +


      +


      +

      General Purpose scripts:

      +

      These may be used with any game freely. Else, the "General" part of General Purpose doesn't apply.

      +


      +
        +
      • Mutlitrack2.lua        -        Tracks future input that FCEUX promptly loses on state-load, for TAS
      • +
      • Subtitler.lua                -        For easier use of FCEUX's built-in subtitles for .fm2 files
      • +
      • Rewinder.lua        -        A way to rewind backwards by pressing a button
      -


      -


      -

      Game Specific scripts:

      -

      These scripts are built specifically for certain games. Attempting to run them while you've loaded another ROM will likely cause undesired results. The meaning of "undesired results" in this case are things like crashing the game, causing it to glitch in other ways, or having nonsense numbers and pixels show up.

      -


      -
        -
      • BugsBunnyBirthdayBlowout.lua
      • -
      • Excitingbike.lua
      • -
      • Excitingbike-speedometeronly.lua
      • -
      • Galaxian.lua
      • -
      • Gradius-BulletHell.lua
      • -
      • Machrider.lua
      • -
      • MegamanII-LaserEyes.lua
      • -
      • PunchOutChallenge.lua
      • -
      • PunchOutStats.lua
      • -
      • PunchOutTraining.lua
      • -
      • SMB2U.lua
      • -
      • SMB3-RainbowRiding.lua
      • -
      • SMB-AreaScrambler.lua
      • -
      • SMB-CompetitionRecorder.lua
      • -
      • SMB-HitBoxes.lua
      • -
      • SMB-Jetpack.lua
      • -
      • SMB-Lives&HPDisplay.lua
      • -
      • SMB-Mouse.lua
      • -
      • SMB-Snow.lua
      • -
      • TeenageMutantNinjaTurtles.lua
      • -
      • tetris.lua
      • +


        +


        +

        Game Specific scripts:

        +

        These scripts are built specifically for certain games. Attempting to run them while you've loaded another ROM will likely cause undesired results. The meaning of "undesired results" in this case are things like crashing the game, causing it to glitch in other ways, or having nonsense numbers and pixels show up.

        +


        +
          +
        • BugsBunnyBirthdayBlowout.lua
        • +
        • Excitingbike.lua
        • +
        • Excitingbike-speedometeronly.lua
        • +
        • Galaxian.lua
        • +
        • Gradius-BulletHell.lua
        • +
        • Machrider.lua
        • +
        • MegamanII-LaserEyes.lua
        • +
        • PunchOutChallenge.lua
        • +
        • PunchOutStats.lua
        • +
        • PunchOutTraining.lua
        • +
        • SMB2U.lua
        • +
        • SMB3-RainbowRiding.lua
        • +
        • SMB-AreaScrambler.lua
        • +
        • SMB-CompetitionRecorder.lua
        • +
        • SMB-HitBoxes.lua
        • +
        • SMB-Jetpack.lua
        • +
        • SMB-Lives&HPDisplay.lua
        • +
        • SMB-Mouse.lua
        • +
        • SMB-Snow.lua
        • +
        • TeenageMutantNinjaTurtles.lua
        • +
        • tetris.lua
        -


        -


        -


        -

        Auxiliary Functions scripts:

        -

        These scripts exist to make the life of programmers easier. As such, if you don't program, you may skip over these scripts. These should not be run by themselves, for they themselves probably don't have any programming to do any work usefully. It's like giving yourself a clip of bullets with no gun to use.

        -


        -
          -
        • FRKfunctions.lua        -        To aid with input.get, display, and registers
        • -
        • x_functions.lua
        • -
        • shapedefs.lua        -        Contains a few shape-drawing functions
        • +


          +


          +


          +

          Auxiliary Functions scripts:

          +

          These scripts exist to make the life of programmers easier. As such, if you don't program, you may skip over these scripts. These should not be run by themselves, for they themselves probably don't have any programming to do any work usefully. It's like giving yourself a clip of bullets with no gun to use.

          +


          +
            +
          • FRKfunctions.lua        -        To aid with input.get, display, and registers
          • +
          • x_functions.lua
          • +
          • shapedefs.lua        -        Contains a few shape-drawing functions

          -

          Created with the Personal Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation

          -
    - - + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + - -
    - - diff --git a/web/help/PPU.html b/web/help/PPU.html index df7fafa5..ba8a9313 100644 --- a/web/help/PPU.html +++ b/web/help/PPU.html @@ -1,367 +1,558 @@ - - + + + + + - PPU - 2C02 - - - - - - - - - - + + + + + + + + PPU - 2C02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    PPU - 2C02

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    *******************************

    -

    *NTSC 2C02 technical operation*

    -

    *******************************

    -

    Brad Taylor (big_time_software@hotmail.com)

    -


    -

    1st release: Sept 25th, Y2K

    -

    2nd release: Jan  27th, 2K3

    -

    3rd release: Feb   4th, 2K3

    -

    4th release: Feb  19th, 2K3

    -


    -


    -

    This document describes the low-level operation and technical details of the 2C02, the NES's PPU. In general, it contains important information in regards to PPU timing, which no NES coder/emulator author should be without. This document assumes that you already understand the basics of how the PPU works, like how the playfield/object images are generated, and the behaviour of scroll/address counters during playfield rendering.

    -


    -

    Alot of the concepts behind how the PPU works described here have been extracted from Nintendo's patent documentation (U.S.#4,824,106). With block diagrams of the PPU's architecture (and even some schematics), these papers will definetely aid in the comprehension of this complex device.

    -


    -

    Since the first release, this document has been given a major overhaul. Most sections of the document have been reworked, and new information has been added just about everywhere. If you've read the old version of this document before, I recommend that you read this new one in it's entirity; there's new information even in sections which may look like they haven't changed much.

    -


    -

    Topics discussed hereon are as follows.

    -


    -

    - Video signal generation

    -

    - PPU base timing

    -

    - Miscellanious PPU info

    -

    - PPU memory access cycles

    -

    - Frame rendering details

    -

    - Scanline rendering details

    -

    - In-range object evaluation

    -

    - Details of playfield render pipeline

    -

    - Details of object pattern fetch & render

    -

    - Extra cycle frames

    -

    - The MMC3's scanline counter

    -

    - PPU pixel priority quirk

    -

    - Graphical enhancements

    -


    -


    -

    +-------+

    -

    |History|

    -

    +-------+

    -

    On the weekend of Sept. 25th, Y2K, I setup an experiment with my NTSC NES MB & my PC so's I could RE the PPU's timing. What I did was (using a PC interface) analyse the changes that occur on the PPU's address and data pins on every rising & falling edge of the PPU's clock. I was not planning on removing the PPU from the motherboard (yet), so basically I just kept everything intact (minus the stuff I added onto the MB so I could monitor the PPU's signals), and popped in a game, so that it would initialize the PPU for me (I used DK classics, since it was only taking somthing like 4 frames before it was turning on the background/sprites).

    -


    -

    The only change I made was taking out the 21 MHz clock generator circuitry. To replace the clock signal, I connected a port controlled latch to the NES's main clock line instead. Now, by writing a 0 or a 1 out to an PC ISA port of my choice (I was using $104), I was able to control the 21 MHz clockline of the NES. After I would create a rise or a fall on the NES's clock line, I would then read in the data that appeared on the PPU's address and data pins, which included monitoring what PPU registers the game read/wrote to (& the data that was read/written).

    -


    -


    -

    +-----------------------+

    -

    |Video signal generation|

    -

    +-----------------------+

    -

    A 21.48 MHz clock signal is fed into the PPU. This is the NES's main clock line, which is shared by the CPU.

    -


    -

    Inside the PPU, the 21.48 MHz signal is used to clock a three-stage Johnson counter. The complimentery outputs of both master and slave portions of each stage are used to form 12 mutually exclusive output phases- all 3.58 MHz each (the NTSC colorburst). These 12 different phases form the basis of all color generation for the PPU's composite video output.

    -


    -

    Naturally, when the user programs the lower 4-bits of a palette register, they are essentially selecting any 1 of 12 phases to be routed to the PPU's video out pin (this corresponds to chrominance (tint/hue) video information) when the appropriate pixel indexes it. Other chrominance combinations (0 & 13) are simply hardwired to a 1 or 0 to generate grayscale pixels.

    -


    -

    Bits 4 & 5 of a palette entry selects 1 of 4 linear DC voltage offsets to apply to the selected chrominance signal (this corresponds to luminance (brightness) video information) for a pixel.

    -


    -

    Chrominance values 14 & 15 yield a black pixel color, regardless of any luminance value setting.

    -


    -

    Luminance value 0, mixed with chrominance value 13 yield a "blacker than black" pixel color. This super black pixel has an output voltage level close to the vertical/horizontal syncronization pulses. Because of this, some video monitors will display warped/distorted screens for games which use this color for black (Game Genie is the best example of this). Essentially what is happening is the video monitor's horizontal timing is compromised by what it thinks are extra syncronization pulses in the scanline. This is not damaging to the monitors which are effected by it, but use of the super black color should be avoided, due to the graphical distortion it causes.

    -


    -

    The amplitude of the selected chrominance signal (via the 4 lower bits of a palette register) remain constant regardless of bits 4 or 5. Thus it is not possible to adjust the saturation level of a particular color.

    -


    -


    -

    +---------------+

    -

    |PPU base timing|

    -

    +---------------+

    -

    Other than the 3-stage Johnson counter, the 21.48 MHz signal is not used directly by any other PPU hardware. Instead, the signal is divided by 4 to get 5.37 MHz, and is used as the smallest unit of timing in the PPU. All following references to PPU clock cycle (abbr. "cc") timing in this document will be in respect to this timing base, unless otherwise indicated.

    -


    -

    - Pixels are rendered at the same rate as the base PPU clock. In other words, 1 clock cycle= 1 pixel.

    -


    -

    - 341 PPU cc's make up the time of a typical scanline (or 341/3 CPU cc's).

    -


    -

    - One frame consists of 262 scanlines. This equals 341*262 PPU cc's per frame (divide by 3 for # of CPU cc's).

    -


    -


    -

    +------------------------+

    -

    |PPU memory access cycles|

    -

    +------------------------+

    -

    All PPU memory access cycles are 2 clocks long, and can be made back-to-back (typically done during rendering). Here's how the access breaks down:

    -


    -

    At the beginning of the access cycle, PPU address lines 8..13 are updated with the target address. This data remains here until the next time an access cycle occurs.

    -


    -

    The lower 8-bits of the PPU address lines are multiplexed with the data bus, to reduce the PPU's pin count. On the first clock cycle of the access, A0..A7 are put on the PPU's data bus, and the ALE (address latch enable) line is activated for the first half of the cycle. This loads the lower 8-bit address into an external 8-bit transparent latch strobed by ALE (74LS373 is used).

    -


    -

    On the second clock cycle, the /RD (or /WR) line is activated, and stays active for the entire cycle. Appropriate data is driven onto the bus during this time.

    -


    -


    -

    +----------------------+

    -

    |Miscellanious PPU info|

    -

    +----------------------+

    -

    - Sprite DMA is 1536 clock cycles long (512 CPU cc's). 256 individual transfers are made from CPU memory to a temp register inside the CPU, then from the CPU's temp reg, to $2004.

    -


    -

    - The PPU makes NO external access to the PPU bus, unless the playfield or objects are enabled during a scanline outside vblank. This means that the PPU's address and data busses are dead while in this state.

    -


    -

    - palette RAM is accessed internally during playfield rendering (i.e., the palette address/data is never put on the PPU bus during this time). Additionally, when the programmer accesses palette RAM via $2006/7, the palette address accessed actually does show up on the PPU address bus, but the PPU's /RD & /WR flags are not activated. This is required; to prevent writing over name table data falling under the approprite mirrored area (since the name table RAM's address decoder simply consists of an inverter connected to the A13 line- effectively decoding all addresses in $2000-$3FFF).

    -


    -

    - the VINT impulse (NMI) and bit $2002.7 are set simultaniously. Reading $2002 will reset bit 7, but it seems that the VINT flag goes down on it's own. Because of this, when the PPU generates a VINT, it doesn't require any acknowledgement whatsoever; it will continue firing off VINTs, regardless of inservice to $2002. The only way to stop VINTs is to clear $2000.7.

    -


    -

    - Because the PPU cannot make a read from PPU memory immediately upon request (via $2007), there is an internal buffer, which acts as a 1-stage data pipeline. As a read is requested, the contents of the read buffer are returned to the NES's CPU. After this, at the PPU's earliest convience (according to PPU read cycle timings), the PPU will fetch the requested data from the PPU memory, and throw it in the read buffer. Writes to PPU mem via $2007 are pipelined as well, but it is unknown to me if the PPU uses this same buffer (this could be easily tested by writing somthing to $2007, and seeing if the same value is returned immediately after reading).

    -


    -


    -

    +-----------------------+

    -

    |Frame rendering details|

    -

    +-----------------------+

    -

     The following describes the PPU's status during all 262 scanlines of a frame. Any scanlines where work is done (like image rendering), consists of the steps which will be described in the next section.

    -


    -

    0..19:        Starting at the instant the VINT flag is pulled down (when a NMI is generated), 20 scanlines make up the period of time on the PPU which I like to call the VINT period. During this time, the PPU makes no access to it's external memory (i.e. name / pattern tables, etc.).

    -


    -

    20:        After 20 scanlines worth of time go by (since the VINT flag was set), the PPU starts to render scanlines. This first scanline is a dummy one; although it will access it's external memory in the same sequence it would for drawing a valid scanline, no on-screen pixels are rendered during this time, making the fetched background data immaterial. Both horizontal *and* vertical scroll counters are updated (presumably) at cc offset 256 in this scanline. Other than that, the operation of this scanline is identical to any other. The primary reason this scanline exists is to start the object render pipeline, since it takes 256 cc's worth of time to determine which objects are in range or not for any particular scanline.

    -


    -

    21..260: after rendering 1 dummy scanline, the PPU starts to render the actual data to be displayed on the screen. This is done for 240 scanlines, of course.

    -


    -

    261:        after the very last rendered scanline finishes, the PPU does nothing for 1 scanline (i.e. the programmer gets screwed out of perfectly good VINT time). When this scanline finishes, the VINT flag is set, and the process of drawing lines starts all over again.

    -


    -


    -

    +--------------------------+

    -

    |Scanline rendering details|

    -

    +--------------------------+

    -

    Naturally, the PPU will fetch data from name, attribute, and pattern tables during a scanline to produce an image on the screen. This section details the PPU's doings during this time.

    -


    -

    As explained before, external PPU memory can be accessed every 2 cc's. With 341 cc's per scanline, this gives the PPU enough time to make 170 memory accesses per scanline (and it uses all of them!). After the 170th fetch, the PPU does nothing for 1 clock cycle. Remember that a single pixel is rendered every clock cycle.

    -


    -


    -

    Memory fetch phase 1 thru 128

    -

    -----------------------------

    -

    1. Name table byte

    -

    2. Attribute table byte

    -

    3. Pattern table bitmap #0

    -

    4. Pattern table bitmap #1

    -


    -

    This process is repeated 32 times (32 tiles in a scanline).

    -


    -


    -

    This is when the PPU retrieves the appropriate data from PPU memory for rendering the playfield. The first playfield tile fetched here is actually the 3rd to be drawn on the screen (the playfield data for the first 2 tiles to be rendered on this scanline are fetched at the end of the scanline prior to this one).

    -


    -

    All valid on-screen pixel data arrives at the PPU's video out pin during this time (256 clocks). For determining the precise delay between when a tile's bitmap fetch phase starts (the whole 4 memory fetches), and when the first pixel of that tile's bitmap data hits the video out pin, the formula is (16-n) clock cycles, where n is the fine horizontal scroll offset (0..7 pixels). This information is relivant for understanding the exact timing operation of the "object 0 collision" flag.

    -


    -

    Note that the PPU fetches an attribute table byte for every 8 sequential horizontal pixels it draws. This essentially limits the PPU's color area (the area of pixels which are forced to use the same 3-color palette) to only 8 horizontally sequential pixels.

    -


    -

    It is also during this time that the PPU evaluates the "Y coordinate" entries of all 64 objects in object attribute RAM (OAM), to see if the objects are within range (to be drawn on the screen) for the *next* scanline (this is why Y-coordinate entries in the OAM must be programmed to a value 1 less than the scanline the object is to appear on). Each evaluation (presumably) takes 4 clock cycles, for a total of 256 (which is why it's done during on-screen pixel rendering).

    -


    -


    -

    In-range object evaluation

    -

    --------------------------

    -

    An 8-bit comparator is used to calculate the 9-bit difference between the current scanline (minus 21), and each Y-coordinate (plus 1) of every object entry in the OAM. Objects are considered in range if the comparator produces a difference in the range of 0..7 (if $2000.5 currently = 0), or 0..15 (if $2000.5 currently = 1).

    -


    -

    (Note that a 9-bit comparison result is generated. This means that setting object scanline coordinates for ranges -1..-15 are actually interpreted as ranges 241..255. For this reason, objects with these ranges will never be considered to be part of any on-screen scanline range, and will not allow smooth object scrolling off the top of the screen.)

    -


    -

    Tile index (8 bits), X-coordinate (8 bits), & attribute information (4 bits; vertical inversion is excluded) from the in-range OAM element, plus the associated 4-bit result of the range comparison accumulate in a part of the PPU called the "sprite temporary memory". Logical inversion is applied to the loaded 4-bit range comparison result, if the object's vertical inversion attribute bit is set.

    -


    -

    Since object range evaluations occur sequentially through the OAM (starting from entry 0 to 63), the sprite temporary memory always fills in order from the highest priority in-range object, to lower ones. A 4-bit "in-range" counter is used to determine the number of found objects on the scanline (from 0 up to 8), and serves as an index pointer for placement of found object data into the 8-element sprite temporary memory. The counter is reset at the beginning of the object evaluation phase, and is post-incremented everytime an object is found in-range. This occurs until the counter equals 8, when found object data after this is discarded, and a flag (bit 5 of $2002) is raised, indicating that it is going to be dropping objects for the next scanline.

    -


    -

    An additional memory bit associated with the sprite temporary memory is used to indicate that the primary object (#0) was found to be in range. This will be used later on to detect primary object-to-playfield pixel collisions.

    -


    -


    -

    Playfield render pipeline details

    -

    ---------------------------------

    -

    As pattern table & palette select data is fetched, it is loaded into internal latches (the palette select data is selected from the fetched byte via a 2-bit 1-of-4 selector).

    -


    -

    At the start of a new tile fetch phase (every 8 cc's), both latched pattern table bitmaps are loaded into the upper 8-bits of 2- 16-bit shift registers (which both shift right every clock cycle). The palette select data is also transfered into another latch during this time (which feeds the serial inputs of 2 8-bit right shift registers shifted every clock). The pixel data is fed into these extra shift registers in order to implement fine horizontal scrolling, since the periods when the PPU fetch tile data is fixed.

    -


    -

    A single bit from each shift register is selected, to form the valid 4-bit playfield pixel for the current clock cycle. The bit selection offset is based on the fine horizontal scroll value (this selects bit positions 0..7 for all 4 shift registers). The selected 4-bit pixel data will then be fed into the multiplexer (described later) to be mixed with object data.

    -


    -


    -

    Memory fetch phase 129 thru 160

    -

    -------------------------------

    -

    1. Garbage name table byte

    -

    2. Garbage name table byte

    -

    3. Pattern table bitmap #0 for applicable object (for next scanline)

    -

    4. Pattern table bitmap #1 for applicable object (for next scanline)

    -


    -

    This process is repeated 8 times.

    -


    -


    -

    This is the period of time when the PPU retrieves the appropriate pattern table data for the objects to be drawn on the *next* scanline. When less than 8 objects exist on the next scanline (as the in-range object evaluation counter indicates), dummy pattern table fetches take place for the remaining fetches. Internally, the fetched dummy-data is discarded, and replaced with completely transparent bitmap patterns).

    -


    -

    Although the fetched name table data is thrown away, and the name table address is somewhat unpredictable, the address does seem to relate to the first name table tile to be fetched for the next scanline. This would seem to imply that PPU cc #256 is when the PPU's scroll/address counters have their horizontal scroll values automatically updated.

    -


    -

    It should also be noted that because this fetch is required for objects on the next scanline, it is neccessary for a garbage scanline to exist prior to the very first scanline to be actually rendered, so that object attribute RAM entries can be evaluated, and the appropriate bitmap data retrieved.

    -


    -

    As far as the wasted fetch phases here, well, what can I say. Either Nintendo's engineers were VERY lazy, and didn't want to add the small amount of extra circuitry to the PPU so that 16 object fetches could take place per scanline, or Nintendo couldn't spot the extra memory required to implement 16 object scanlines. Thing is though- between the object attribute mem, sprite temporary & buffer mem, and palette mem, that's already 2406 bits of RAM; I don't think it would've killed them to just add the 408 bits it would've took for an extra 8 objects, which would've made games with horrible OAM cycling (Double Dragon 2 w/ 2 players) look half-decent (hell, with 16 object scanlines, games would hardly even need OAM cycling).

    -


    -

    -

    Details of object pattern fetch & render

    -

    ----------------------------------------

    -

    Where the PPU fetches pattern table data for an individual object is conditioned on the contents of the sprite temporary memory element, and $2000.5. If $2000.5 = 0, the tile index data is used as usual, and $2000.3 selects the pattern table to use. If $2000.5 = 1, the MSB of the range result value become the LSB of the indexed tile, and the LSB of the tile index value determines pattern table selection. The lower 3 bits of the range result value are always used as the fine vertical offset into the selected pattern.

    -


    -

    Horizontal inversion (bit order reversing) is applied to fetched bitmaps, if indicated in the sprite temporary memory element.

    -


    -

    The fetched pattern table data (which is 2 bytes), plus the associated 3 attribute bits (palette select & priority), and the x coordinate byte in sprite temporary memory are then loaded into a part of the PPU called the "sprite buffer memory" (the primary object present bit is also copied). This memory area again, is large enough to hold the contents for 8 sprites.

    -


    -

    The composition of one sprite buffer element here is: 2 8-bit shift registers (the fetched pattern table data is loaded in here, where it will be serialized at the appropriate time), a 3-bit latch (which holds the color & priority data for an object), and an 8-bit down counter (this is where the x coordinate is loaded).

    -


    -

    The counter is decremented every time the PPU renders a pixel (the first 256 cc's of a scanline; see "Memory fetch phase 1 thru 128" above). When the counter equals 0, the pattern table data in the shift registers will start to serialize (1 shift per clock). Before this time, or 8 clocks after, consider the outputs of the serializers for each stage to be 0 (transparency).

    -


    -

    The streams of all 8 object serializers are prioritized, and ultimately only one stream (with palette select & priority information) is selected for output to the multiplexer (where object & playfield pixels are prioritized).

    -


    -

    The data for the first sprite buffer entry (including the primary object present flag) has the first chance to enter the multiplexer, if it's output pixel is non-transparent (non-zero). Otherwise, priority is passed to the next serializer in the sprite buffer memory, and the test for non-transparency is made again (the primary object present status will always be passed to the multiplexer as false in this case). This is done until the last (8th) stage is reached, when the object data is passed through unconditionally. Keep in mind that this whole process occurs every clock cycle (hardware is used to determine priority instantly).

    -


    -

    The multiplexer does 2 things: determines primary object collisions, and decides which pixel data to pass through to index the palette RAM- either the playfield's or the object's.

    -


    -

    Primary object collisions occur when a non-transparent playfield pixel coincides with a non-transparent object pixel, while the primary object present status entering the multiplexer for the current clock cycle is true. This causes a flip-flop ($2002.6) to be set, and remains set (presumably) some time after the VINT occurence (prehaps up until scanline 20?).

    -


    -

    The decision for selecting the data to pass through to the palette index is made rather easilly. The condition to use object (opposed to playfield) data is:

    -


    -

    (OBJpri=foreground OR PFpixel=xparent) AND OBJpixel<>xparent

    -


    -

    Since the PPU has 2 palettes; one for objects, and one for playfield, the appropriate palette will be selected depending on which pixel data is passed through.

    -


    -

    After the palette look-up, the operation of events follows the aforementioned steps in the "video signal generation" section.

    -


    -


    -

    Memory fetch phase 161 thru 168

    -

    -------------------------------

    -

    1. Name table byte

    -

    2. Attribute table byte

    -

    3. Pattern table bitmap #0 (for next scanline)

    -

    4. Pattern table bitmap #1 (for next scanline)

    -


    -

    This process is repeated 2 times.

    -


    -


    -

    It is during this time that the PPU fetches the appliciable playfield data for the first and second tiles to be rendered on the screen for the *next* scanline. These fetches initialize the internal playfield pixel pipelines (2- 16-bit shift registers) with valid bitmap data. The rest of tiles (3..32) are fetched at the beginning of the following scanline.

    -


    -


    -

    Memory fetch phase 169 thru 170

    -

    -------------------------------

    -

    1. Name table byte

    -

    2. Name table byte

    -


    -


    -

    I'm unclear of the reason why this particular access to memory is made. The name table address that is accessed 2 times in a row here, is also the same nametable address that points to the 3rd tile to be rendered on the screen (or basically, the first name table address that will be accessed when the PPU is fetching playfield data on the next scanline).

    -


    -


    -

    After memory access 170

    -

    -----------------------

    -

    The PPU simply rests for 1 cycle here (or the equivelant of half a memory access cycle) before repeating the whole pixel/scanline rendering process.

    -


    -


    -

    +------------------+

    -

    |Extra cycle frames|

    -

    +------------------+

    -

    Scanline 20 is the only scanline that has variable length. On every odd frame, this scanline is only 340 cycles (the dead cycle at the end is removed). This is done to cause a shift in the NTSC colorburst phase.

    -


    -

    You see, a 3.58 MHz signal, the NTSC colorburst, is required to be modulated into a luminance carrying signal in order for color to be generated on an NTSC monitor. Since the PPU's video out consists of basically square waves (as opposed to sine waves, which would be preferred), it takes an entire colorburst cycle (1/3.58 MHz) for an NTSC monitor to identify the color of a PPU pixel accurately.

    -


    -

    But now you remember that the PPU renders pixels at 5.37 MHz- 1.5x the rate of the colorburst. This means that if a single pixel resides on a scanline with a color different to those surrounding it, the pixel will probably be misrepresented on the screen, sometimes appearing faintly.

    -


    -

    Well, to somewhat fix this problem, they added this extra pixel into every odd frame (shifting the colorburst phase over a bit), and changing the way the monitor interprets isolated colored pixels each frame. This is why when you play games with detailed background graphics, the background seems to flicker a bit. Once you start scrolling the screen however, it seems as if some pixels become invisible; this is how stationary PPU images would look without this cycle removed from odd frames.

    -


    -

    Certain scroll rates expose this NTSC PPU color caveat regardless of the toggling phase shift. Some of Zelda 2's dungeon backgrounds are a good place to see this effect.

    -


    -


    -

    +---------------------------+

    -

    |The MMC3's scanline counter|

    -

    +---------------------------+

    -

    As most people know, the MMC3 bases it's scanline counter on PPU address line A13 (which is why IRQ's can be fired off manually by toggling A13 a bunch of times via $2006). What's not common knowledge is the number of times A13 is expected to toggle in a scanline (although if you've been paying close attention to the doc here, you should already know ;)

    -


    -

    A13 was probably used for the IRQ counter (as opposed to using the PPU's /READ line) because this address line already needed to be connected to the MMC for bankswitching purposes (so in other words, to reduce the MMC3's pin count by 1). They also probably used this method of counting (as opposed to a CPU cycle counter) since A13 cycles (0 -> 1) exactly 42 times per scanline, whereas the CPU count of cycles per scanline is not an exact integer (113.67). Having said that, I guess Nintendo wanted to provide an "easy-to-use" method of generating special image effects, without making programmers have to figure out how many clock cycles to program an IRQ counter with (a pretty lame excuse for not providing an IRQ counter with CPU clock cycle precision (which would have been more useful and versatile)).

    -


    -

    Regardless of any values PPU registers are programmed with, A13 will operate in a predictable fashion during image rendering (and if you understand how PPU addressing works, you should understand that A13 is the *only* address line with fixed behaviour during image rendering).

    -


    -


    -

    +------------------------+

    -

    |PPU pixel priority quirk|

    -

    +------------------------+

    -

    Object data is prioritized between itself, then prioritized between the playfield. There are some odd side effects to this scheme of rendering, however. For instance, imagine a low priority object pixel with foreground priority, a high priority object pixel with background priority, and a playfield pixel all coinciding (all non-transparent).

    -


    -

    Ideally, the playfield is considered to be the middle layer between background and foreground priority objects. This means that the playfield pixel should hide the background priority object pixel (regardless of object priority), and the foreground priority object should appear atop the PF pixel.

    -


    -

    However, because of the way the PPU renders (as just described), OBJ priority is evaluated first, and therefore the background object pixel wins, which means that you'll only be seeing the PF pixel after this mess.

    -


    -

    A good game to demonstrate this behaviour is Megaman 2. Go into airman's stage. First, jump into the energy bar, just to confirm that megaman's sprite is of a higher priority than the energy bar's. Now, get to the second half of the stage, where the clouds cover the energy bar. The energy bar will be ontop of the clouds, but megaman will be behind them. Now, look what happens when you jump into the energy bar here... you see the clouds where megaman underlaps the energy bar.

    -


    -


    -

    +----------------------+

    -

    |Graphical enhancements|

    -

    +----------------------+

    -

    Since an NES cartridge has access to the PPU bus, any number of on-cart hardware schemes can be used to enhance the graphic capabilities of the NES. After all, the PPU's playfield pipeline is very simple: it fetches 272 playfield pixels per scanline (as 34*2 byte fetches, in real-time), and outputs 256 of them to the screen (with the 0..7 pixel offset determined by the fine X scroll register), along with object data combined with it.

    -


    -

    Essentially, you can bypass the PPU's simple scrolling system, implement a custom one on your cart (fetching bitmap data in your own fashion), and feed the PPU bitmap data in your own order.

    -


    -

    The possibilities of this are endless (like sporting multiple playfields, or even playfield rotation/scaling), but of course what it comes down to is the amount of cartridge hardware required.

    -


    -

    Generally, playfield rotation/scaling can be done quite easily- it only requires a few sets of 16-bit registers and adders (the 16 bits are broken up into 8.8 fixed point values). But this kind of implementation is more suited for an integrated circuit, since this would require dozens of discrete logic chips.

    -


    -

    Multiple playfields are another thing which could be easily done. The caveat here is that pixel pipelines (i.e., shift registers) and a multiplexer would have to be implemented on the cart (not to mention exclusive name table RAM) in order to process the playfield bitmaps from multiple sources. The access to the CHR-ROM/RAM would also have to increased- but as it stands, the CHR-ROM/RAM bandwidth is 1.34 MHz, a rather low frequency. With a memory device capable of a 10.74 MHz bandwith, you could have 8 playfields to work with. Generally, this would be very useful for displaying multiple huge objects on the screen- without ever having to worry about annoying flicker.

    -


    -

    The only restriction to doing any of this is that:

    -


    -

    - every 8 sequential horizontal pixels sent to the PPU must share the same palette select value. Because of this, hardware would have to be implemented to decide which palette select value to feed the PPU between 8 horizontally sequential pixels, if they do not all share the same palette select value. The on-screen results of this may not be too flattering sometimes, but this is a small price to pay to do some neat graphical tricks on the NES.

    -


    -

    -only the playfield palette can be used. As usual, this pretty much limits your randomly accessable colors to about 12+1.

    -


    -

    It's a damn shame that Nintendo never created a MMC which would enhance graphics on the NES in useful ways as mentioned above. The MMC5 was the only device that came close, and it's only selling features were the single-tile color area, and the vertical split screen mode (which I don't think any game ever used). Considering the amount of pins (100) the MMC5 had, and number of gates they put in it just for the EXRAM (which was 1K bytes), they could've put some really useful graphics hardware inside there instead.

    -


    -

    Prehaps the infamous Color Dreams "Hellraiser" cart was the closest the NES ever came to seeing such sophisticated graphics. The cart was never released, but from what I've read, it was going to use some sort of frame buffer, and a Z80 CPU to do the graphical rendering. It had been rumored that the game had 3D graphics (or at least 2.5D) in it. If so (and the game was actually good), prehaps it would have raised a few eyebrows in the industry, and inspired Nintendo to develop a new MMC chip with similar capabilities, in order to keep the NES in it's profit margin for another few years (and allow it to compete somewhat with the more advanced systems of the time).

    -


    -

    EOF

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create CHM Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    PPU - 2C02

    + +
    + +

    +

    *******************************

    +

    *NTSC 2C02 technical operation*

    +

    *******************************

    +

    Brad Taylor (big_time_software@hotmail.com)

    +


    +

    1st release: Sept 25th, Y2K

    +

    2nd release: Jan  27th, 2K3

    +

    3rd release: Feb   4th, 2K3

    +

    4th release: Feb  19th, 2K3

    +


    +


    +

     This document describes the low-level operation and technical details of the 2C02, the NES's PPU. In general, it contains important information in regards to PPU timing, which no NES coder/emulator author should be without. This document assumes that you already understand the basics of how the PPU works, like how the playfield/object images are generated, and the behaviour of scroll/address counters during playfield rendering.

    +


    +

     Alot of the concepts behind how the PPU works described here have been extracted from Nintendo's patent documentation (U.S.#4,824,106). With block diagrams of the PPU's architecture (and even some schematics), these papers will definetely aid in the comprehension of this complex device.

    +


    +

     Since the first release, this document has been given a major overhaul. Most sections of the document have been reworked, and new information has been added just about everywhere. If you've read the old version of this document before, I recommend that you read this new one in it's entirity; there's new information even in sections which may look like they haven't changed much.

    +


    +

     Topics discussed hereon are as follows.

    +


    +

     - Video signal generation

    +

     - PPU base timing

    +

     - Miscellanious PPU info

    +

     - PPU memory access cycles

    +

     - Frame rendering details

    +

     - Scanline rendering details

    +

     - In-range object evaluation

    +

     - Details of playfield render pipeline

    +

     - Details of object pattern fetch & render

    +

     - Extra cycle frames

    +

     - The MMC3's scanline counter

    +

     - PPU pixel priority quirk

    +

     - Graphical enhancements

    +


    +


    +

    +-------+

    +

    |History|

    +

    +-------+

    +

     On the weekend of Sept. 25th, Y2K, I setup an experiment with my NTSC NES MB & my PC so's I could RE the PPU's timing. What I did was (using a PC interface) analyse the changes that occur on the PPU's address and data pins on every rising & falling edge of the PPU's clock. I was not planning on removing the PPU from the motherboard (yet), so basically I just kept everything intact (minus the stuff I added onto the MB so I could monitor the PPU's signals), and popped in a game, so that it would initialize the PPU for me (I used DK classics, since it was only taking somthing like 4 frames before it was turning on the background/sprites).

    +


    +

     The only change I made was taking out the 21 MHz clock generator circuitry. To replace the clock signal, I connected a port controlled latch to the NES's main clock line instead. Now, by writing a 0 or a 1 out to an PC ISA port of my choice (I was using $104), I was able to control the 21 MHz clockline of the NES. After I would create a rise or a fall on the NES's clock line, I would then read in the data that appeared on the PPU's address and data pins, which included monitoring what PPU registers the game read/wrote to (& the data that was read/written).

    +


    +


    +

    +-----------------------+

    +

    |Video signal generation|

    +

    +-----------------------+

    +

     A 21.48 MHz clock signal is fed into the PPU. This is the NES's main clock line, which is shared by the CPU.

    +


    +

     Inside the PPU, the 21.48 MHz signal is used to clock a three-stage Johnson counter. The complimentery outputs of both master and slave portions of each stage are used to form 12 mutually exclusive output phases- all 3.58 MHz each (the NTSC colorburst). These 12 different phases form the basis of all color generation for the PPU's composite video output.

    +


    +

     Naturally, when the user programs the lower 4-bits of a palette register, they are essentially selecting any 1 of 12 phases to be routed to the PPU's video out pin (this corresponds to chrominance (tint/hue) video information) when the appropriate pixel indexes it. Other chrominance combinations (0 & 13) are simply hardwired to a 1 or 0 to generate grayscale pixels.

    +


    +

     Bits 4 & 5 of a palette entry selects 1 of 4 linear DC voltage offsets to apply to the selected chrominance signal (this corresponds to luminance (brightness) video information) for a pixel.

    +


    +

     Chrominance values 14 & 15 yield a black pixel color, regardless of any luminance value setting. 

    +


    +

     Luminance value 0, mixed with chrominance value 13 yield a "blacker than black" pixel color. This super black pixel has an output voltage level close to the vertical/horizontal syncronization pulses. Because of this, some video monitors will display warped/distorted screens for games which use this color for black (Game Genie is the best example of this). Essentially what is happening is the video monitor's horizontal timing is compromised by what it thinks are extra syncronization pulses in the scanline. This is not damaging to the monitors which are effected by it, but use of the super black color should be avoided, due to the graphical distortion it causes.

    +


    +

     The amplitude of the selected chrominance signal (via the 4 lower bits of a palette register) remain constant regardless of bits 4 or 5. Thus it is not possible to adjust the saturation level of a particular color.

    +


    +


    +

    +---------------+

    +

    |PPU base timing|

    +

    +---------------+

    +

     Other than the 3-stage Johnson counter, the 21.48 MHz signal is not used directly by any other PPU hardware. Instead, the signal is divided by 4 to get 5.37 MHz, and is used as the smallest unit of timing in the PPU. All following references to PPU clock cycle (abbr. "cc") timing in this document will be in respect to this timing base, unless otherwise indicated.

    +


    +

     - Pixels are rendered at the same rate as the base PPU clock. In other words, 1 clock cycle= 1 pixel.

    +


    +

     - 341 PPU cc's make up the time of a typical scanline (or 341/3 CPU cc's).

    +


    +

     - One frame consists of 262 scanlines. This equals 341*262 PPU cc's per frame (divide by 3 for # of CPU cc's).

    +


    +


    +

    +------------------------+

    +

    |PPU memory access cycles|

    +

    +------------------------+

    +

     All PPU memory access cycles are 2 clocks long, and can be made back-to-back (typically done during rendering). Here's how the access breaks down:

    +


    +

     At the beginning of the access cycle, PPU address lines 8..13 are updated with the target address. This data remains here until the next time an access cycle occurs.

    +


    +

     The lower 8-bits of the PPU address lines are multiplexed with the data bus, to reduce the PPU's pin count. On the first clock cycle of the access, A0..A7 are put on the PPU's data bus, and the ALE (address latch enable) line is activated for the first half of the cycle. This loads the lower 8-bit address into an external 8-bit transparent latch strobed by ALE (74LS373 is used).

    +


    +

     On the second clock cycle, the /RD (or /WR) line is activated, and stays active for the entire cycle. Appropriate data is driven onto the bus during this time.

    +


    +


    +

    +----------------------+

    +

    |Miscellanious PPU info|

    +

    +----------------------+

    +

     - Sprite DMA is 1536 clock cycles long (512 CPU cc's). 256 individual transfers are made from CPU memory to a temp register inside the CPU, then from the CPU's temp reg, to $2004.

    +


    +

     - The PPU makes NO external access to the PPU bus, unless the playfield or objects are enabled during a scanline outside vblank. This means that the PPU's address and data busses are dead while in this state.

    +


    +

     - palette RAM is accessed internally during playfield rendering (i.e., the palette address/data is never put on the PPU bus during this time). Additionally, when the programmer accesses palette RAM via $2006/7, the palette address accessed actually does show up on the PPU address bus, but the PPU's /RD & /WR flags are not activated. This is required; to prevent writing over name table data falling under the approprite mirrored area (since the name table RAM's address decoder simply consists of an inverter connected to the A13 line- effectively decoding all addresses in $2000-$3FFF).

    +


    +

     - the VINT impulse (NMI) and bit $2002.7 are set simultaniously. Reading $2002 will reset bit 7, but it seems that the VINT flag goes down on it's own. Because of this, when the PPU generates a VINT, it doesn't require any acknowledgement whatsoever; it will continue firing off VINTs, regardless of inservice to $2002. The only way to stop VINTs is to clear $2000.7.

    +


    +

     - Because the PPU cannot make a read from PPU memory immediately upon request (via $2007), there is an internal buffer, which acts as a 1-stage data pipeline. As a read is requested, the contents of the read buffer are returned to the NES's CPU. After this, at the PPU's earliest convience (according to PPU read cycle timings), the PPU will fetch the requested data from the PPU memory, and throw it in the read buffer. Writes to PPU mem via $2007 are pipelined as well, but it is unknown to me if the PPU uses this same buffer (this could be easily tested by writing somthing to $2007, and seeing if the same value is returned immediately after reading).

    +


    +


    +

    +-----------------------+

    +

    |Frame rendering details|

    +

    +-----------------------+

    +

      The following describes the PPU's status during all 262 scanlines of a frame. Any scanlines where work is done (like image rendering), consists of the steps which will be described in the next section.

    +


    +

     0..19:        Starting at the instant the VINT flag is pulled down (when a NMI is generated), 20 scanlines make up the period of time on the PPU which I like to call the VINT period. During this time, the PPU makes no access to it's external memory (i.e. name / pattern tables, etc.).

    +


    +

     20:        After 20 scanlines worth of time go by (since the VINT flag was set), the PPU starts to render scanlines. This first scanline is a dummy one; although it will access it's external memory in the same sequence it would for drawing a valid scanline, no on-screen pixels are rendered during this time, making the fetched background data immaterial. Both horizontal *and* vertical scroll counters are updated (presumably) at cc offset 256 in this scanline. Other than that, the operation of this scanline is identical to any other. The primary reason this scanline exists is to start the object render pipeline, since it takes 256 cc's worth of time to determine which objects are in range or not for any particular scanline.

    +


    +

     21..260: after rendering 1 dummy scanline, the PPU starts to render the actual data to be displayed on the screen. This is done for 240 scanlines, of course.

    +


    +

     261:        after the very last rendered scanline finishes, the PPU does nothing for 1 scanline (i.e. the programmer gets screwed out of perfectly good VINT time). When this scanline finishes, the VINT flag is set, and the process of drawing lines starts all over again.

    +


    +


    +

    +--------------------------+

    +

    |Scanline rendering details|

    +

    +--------------------------+

    +

     Naturally, the PPU will fetch data from name, attribute, and pattern tables during a scanline to produce an image on the screen. This section details the PPU's doings during this time.

    +


    +

     As explained before, external PPU memory can be accessed every 2 cc's. With 341 cc's per scanline, this gives the PPU enough time to make 170 memory accesses per scanline (and it uses all of them!). After the 170th fetch, the PPU does nothing for 1 clock cycle. Remember that a single pixel is rendered every clock cycle.

    +


    +


    +

     Memory fetch phase 1 thru 128

    +

     -----------------------------

    +

     1. Name table byte

    +

     2. Attribute table byte

    +

     3. Pattern table bitmap #0

    +

     4. Pattern table bitmap #1

    +


    +

     This process is repeated 32 times (32 tiles in a scanline).

    +


    +


    +

     This is when the PPU retrieves the appropriate data from PPU memory for rendering the playfield. The first playfield tile fetched here is actually the 3rd to be drawn on the screen (the playfield data for the first 2 tiles to be rendered on this scanline are fetched at the end of the scanline prior to this one).

    +


    +

     All valid on-screen pixel data arrives at the PPU's video out pin during this time (256 clocks). For determining the precise delay between when a tile's bitmap fetch phase starts (the whole 4 memory fetches), and when the first pixel of that tile's bitmap data hits the video out pin, the formula is (16-n) clock cycles, where n is the fine horizontal scroll offset (0..7 pixels). This information is relivant for understanding the exact timing operation of the "object 0 collision" flag.

    +


    +

     Note that the PPU fetches an attribute table byte for every 8 sequential horizontal pixels it draws. This essentially limits the PPU's color area (the area of pixels which are forced to use the same 3-color palette) to only 8 horizontally sequential pixels.

    +


    +

     It is also during this time that the PPU evaluates the "Y coordinate" entries of all 64 objects in object attribute RAM (OAM), to see if the objects are within range (to be drawn on the screen) for the *next* scanline (this is why Y-coordinate entries in the OAM must be programmed to a value 1 less than the scanline the object is to appear on). Each evaluation (presumably) takes 4 clock cycles, for a total of 256 (which is why it's done during on-screen pixel rendering).

    +


    +


    +

     In-range object evaluation

    +

     --------------------------

    +

     An 8-bit comparator is used to calculate the 9-bit difference between the current scanline (minus 21), and each Y-coordinate (plus 1) of every object entry in the OAM. Objects are considered in range if the comparator produces a difference in the range of 0..7 (if $2000.5 currently = 0), or 0..15 (if $2000.5 currently = 1).

    +


    +

     (Note that a 9-bit comparison result is generated. This means that setting object scanline coordinates for ranges -1..-15 are actually interpreted as ranges 241..255. For this reason, objects with these ranges will never be considered to be part of any on-screen scanline range, and will not allow smooth object scrolling off the top of the screen.)

    +


    +

     Tile index (8 bits), X-coordinate (8 bits), & attribute information (4 bits; vertical inversion is excluded) from the in-range OAM element, plus the associated 4-bit result of the range comparison accumulate in a part of the PPU called the "sprite temporary memory". Logical inversion is applied to the loaded 4-bit range comparison result, if the object's vertical inversion attribute bit is set.

    +


    +

     Since object range evaluations occur sequentially through the OAM (starting from entry 0 to 63), the sprite temporary memory always fills in order from the highest priority in-range object, to lower ones. A 4-bit "in-range" counter is used to determine the number of found objects on the scanline (from 0 up to 8), and serves as an index pointer for placement of found object data into the 8-element sprite temporary memory. The counter is reset at the beginning of the object evaluation phase, and is post-incremented everytime an object is found in-range. This occurs until the counter equals 8, when found object data after this is discarded, and a flag (bit 5 of $2002) is raised, indicating that it is going to be dropping objects for the next scanline.

    +


    +

     An additional memory bit associated with the sprite temporary memory is used to indicate that the primary object (#0) was found to be in range. This will be used later on to detect primary object-to-playfield pixel collisions.

    +


    +


    +

     Playfield render pipeline details

    +

     ---------------------------------

    +

     As pattern table & palette select data is fetched, it is loaded into internal latches (the palette select data is selected from the fetched byte via a 2-bit 1-of-4 selector).

    +


    +

     At the start of a new tile fetch phase (every 8 cc's), both latched pattern table bitmaps are loaded into the upper 8-bits of 2- 16-bit shift registers (which both shift right every clock cycle). The palette select data is also transfered into another latch during this time (which feeds the serial inputs of 2 8-bit right shift registers shifted every clock). The pixel data is fed into these extra shift registers in order to implement fine horizontal scrolling, since the periods when the PPU fetch tile data is fixed.

    +


    +

     A single bit from each shift register is selected, to form the valid 4-bit playfield pixel for the current clock cycle. The bit selection offset is based on the fine horizontal scroll value (this selects bit positions 0..7 for all 4 shift registers). The selected 4-bit pixel data will then be fed into the multiplexer (described later) to be mixed with object data.

    +


    +


    +

     Memory fetch phase 129 thru 160

    +

     -------------------------------

    +

     1. Garbage name table byte

    +

     2. Garbage name table byte

    +

     3. Pattern table bitmap #0 for applicable object (for next scanline)

    +

     4. Pattern table bitmap #1 for applicable object (for next scanline)

    +


    +

     This process is repeated 8 times.

    +


    +


    +

     This is the period of time when the PPU retrieves the appropriate pattern table data for the objects to be drawn on the *next* scanline. When less than 8 objects exist on the next scanline (as the in-range object evaluation counter indicates), dummy pattern table fetches take place for the remaining fetches. Internally, the fetched dummy-data is discarded, and replaced with completely transparent bitmap patterns).

    +


    +

     Although the fetched name table data is thrown away, and the name table address is somewhat unpredictable, the address does seem to relate to the first name table tile to be fetched for the next scanline. This would seem to imply that PPU cc #256 is when the PPU's scroll/address counters have their horizontal scroll values automatically updated.

    +


    +

     It should also be noted that because this fetch is required for objects on the next scanline, it is neccessary for a garbage scanline to exist prior to the very first scanline to be actually rendered, so that object attribute RAM entries can be evaluated, and the appropriate bitmap data retrieved.

    +


    +

     As far as the wasted fetch phases here, well, what can I say. Either Nintendo's engineers were VERY lazy, and didn't want to add the small amount of extra circuitry to the PPU so that 16 object fetches could take place per scanline, or Nintendo couldn't spot the extra memory required to implement 16 object scanlines. Thing is though- between the object attribute mem, sprite temporary & buffer mem, and palette mem, that's already 2406 bits of RAM; I don't think it would've killed them to just add the 408 bits it would've took for an extra 8 objects, which would've made games with horrible OAM cycling (Double Dragon 2 w/ 2 players) look half-decent (hell, with 16 object scanlines, games would hardly even need OAM cycling).

    +


    +

     

    +

     Details of object pattern fetch & render

    +

     ----------------------------------------

    +

     Where the PPU fetches pattern table data for an individual object is conditioned on the contents of the sprite temporary memory element, and $2000.5. If $2000.5 = 0, the tile index data is used as usual, and $2000.3 selects the pattern table to use. If $2000.5 = 1, the MSB of the range result value become the LSB of the indexed tile, and the LSB of the tile index value determines pattern table selection. The lower 3 bits of the range result value are always used as the fine vertical offset into the selected pattern.

    +


    +

     Horizontal inversion (bit order reversing) is applied to fetched bitmaps, if indicated in the sprite temporary memory element.

    +


    +

     The fetched pattern table data (which is 2 bytes), plus the associated 3 attribute bits (palette select & priority), and the x coordinate byte in sprite temporary memory are then loaded into a part of the PPU called the "sprite buffer memory" (the primary object present bit is also copied). This memory area again, is large enough to hold the contents for 8 sprites.

    +


    +

     The composition of one sprite buffer element here is: 2 8-bit shift registers (the fetched pattern table data is loaded in here, where it will be serialized at the appropriate time), a 3-bit latch (which holds the color & priority data for an object), and an 8-bit down counter (this is where the x coordinate is loaded).

    +


    +

     The counter is decremented every time the PPU renders a pixel (the first 256 cc's of a scanline; see "Memory fetch phase 1 thru 128" above). When the counter equals 0, the pattern table data in the shift registers will start to serialize (1 shift per clock). Before this time, or 8 clocks after, consider the outputs of the serializers for each stage to be 0 (transparency).

    +


    +

     The streams of all 8 object serializers are prioritized, and ultimately only one stream (with palette select & priority information) is selected for output to the multiplexer (where object & playfield pixels are prioritized).

    +


    +

     The data for the first sprite buffer entry (including the primary object present flag) has the first chance to enter the multiplexer, if it's output pixel is non-transparent (non-zero). Otherwise, priority is passed to the next serializer in the sprite buffer memory, and the test for non-transparency is made again (the primary object present status will always be passed to the multiplexer as false in this case). This is done until the last (8th) stage is reached, when the object data is passed through unconditionally. Keep in mind that this whole process occurs every clock cycle (hardware is used to determine priority instantly).

    +


    +

     The multiplexer does 2 things: determines primary object collisions, and decides which pixel data to pass through to index the palette RAM- either the playfield's or the object's.

    +


    +

     Primary object collisions occur when a non-transparent playfield pixel coincides with a non-transparent object pixel, while the primary object present status entering the multiplexer for the current clock cycle is true. This causes a flip-flop ($2002.6) to be set, and remains set (presumably) some time after the VINT occurence (prehaps up until scanline 20?).

    +


    +

     The decision for selecting the data to pass through to the palette index is made rather easilly. The condition to use object (opposed to playfield) data is:

    +


    +

     (OBJpri=foreground OR PFpixel=xparent) AND OBJpixel<>xparent

    +


    +

     Since the PPU has 2 palettes; one for objects, and one for playfield, the appropriate palette will be selected depending on which pixel data is passed through.

    +


    +

     After the palette look-up, the operation of events follows the aforementioned steps in the "video signal generation" section.

    +


    +


    +

     Memory fetch phase 161 thru 168

    +

     -------------------------------

    +

     1. Name table byte

    +

     2. Attribute table byte

    +

     3. Pattern table bitmap #0 (for next scanline)

    +

     4. Pattern table bitmap #1 (for next scanline)

    +


    +

     This process is repeated 2 times.

    +


    +


    +

     It is during this time that the PPU fetches the appliciable playfield data for the first and second tiles to be rendered on the screen for the *next* scanline. These fetches initialize the internal playfield pixel pipelines (2- 16-bit shift registers) with valid bitmap data. The rest of tiles (3..32) are fetched at the beginning of the following scanline.

    +


    +


    +

     Memory fetch phase 169 thru 170

    +

     -------------------------------

    +

     1. Name table byte

    +

     2. Name table byte

    +


    +


    +

     I'm unclear of the reason why this particular access to memory is made. The name table address that is accessed 2 times in a row here, is also the same nametable address that points to the 3rd tile to be rendered on the screen (or basically, the first name table address that will be accessed when the PPU is fetching playfield data on the next scanline).

    +


    +


    +

     After memory access 170

    +

     -----------------------

    +

     The PPU simply rests for 1 cycle here (or the equivelant of half a memory access cycle) before repeating the whole pixel/scanline rendering process.

    +


    +


    +

    +------------------+

    +

    |Extra cycle frames|

    +

    +------------------+

    +

     Scanline 20 is the only scanline that has variable length. On every odd frame, this scanline is only 340 cycles (the dead cycle at the end is removed). This is done to cause a shift in the NTSC colorburst phase.

    +


    +

     You see, a 3.58 MHz signal, the NTSC colorburst, is required to be modulated into a luminance carrying signal in order for color to be generated on an NTSC monitor. Since the PPU's video out consists of basically square waves (as opposed to sine waves, which would be preferred), it takes an entire colorburst cycle (1/3.58 MHz) for an NTSC monitor to identify the color of a PPU pixel accurately.

    +


    +

     But now you remember that the PPU renders pixels at 5.37 MHz- 1.5x the rate of the colorburst. This means that if a single pixel resides on a scanline with a color different to those surrounding it, the pixel will probably be misrepresented on the screen, sometimes appearing faintly.

    +


    +

     Well, to somewhat fix this problem, they added this extra pixel into every odd frame (shifting the colorburst phase over a bit), and changing the way the monitor interprets isolated colored pixels each frame. This is why when you play games with detailed background graphics, the background seems to flicker a bit. Once you start scrolling the screen however, it seems as if some pixels become invisible; this is how stationary PPU images would look without this cycle removed from odd frames.

    +


    +

     Certain scroll rates expose this NTSC PPU color caveat regardless of the toggling phase shift. Some of Zelda 2's dungeon backgrounds are a good place to see this effect.

    +


    +


    +

    +---------------------------+

    +

    |The MMC3's scanline counter|

    +

    +---------------------------+

    +

     As most people know, the MMC3 bases it's scanline counter on PPU address line A13 (which is why IRQ's can be fired off manually by toggling A13 a bunch of times via $2006). What's not common knowledge is the number of times A13 is expected to toggle in a scanline (although if you've been paying close attention to the doc here, you should already know ;)

    +


    +

     A13 was probably used for the IRQ counter (as opposed to using the PPU's /READ line) because this address line already needed to be connected to the MMC for bankswitching purposes (so in other words, to reduce the MMC3's pin count by 1). They also probably used this method of counting (as opposed to a CPU cycle counter) since A13 cycles (0 -> 1) exactly 42 times per scanline, whereas the CPU count of cycles per scanline is not an exact integer (113.67). Having said that, I guess Nintendo wanted to provide an "easy-to-use" method of generating special image effects, without making programmers have to figure out how many clock cycles to program an IRQ counter with (a pretty lame excuse for not providing an IRQ counter with CPU clock cycle precision (which would have been more useful and versatile)).

    +


    +

     Regardless of any values PPU registers are programmed with, A13 will operate in a predictable fashion during image rendering (and if you understand how PPU addressing works, you should understand that A13 is the *only* address line with fixed behaviour during image rendering).

    +


    +


    +

    +------------------------+

    +

    |PPU pixel priority quirk|

    +

    +------------------------+

    +

     Object data is prioritized between itself, then prioritized between the playfield. There are some odd side effects to this scheme of rendering, however. For instance, imagine a low priority object pixel with foreground priority, a high priority object pixel with background priority, and a playfield pixel all coinciding (all non-transparent).

    +


    +

     Ideally, the playfield is considered to be the middle layer between background and foreground priority objects. This means that the playfield pixel should hide the background priority object pixel (regardless of object priority), and the foreground priority object should appear atop the PF pixel.

    +


    +

     However, because of the way the PPU renders (as just described), OBJ priority is evaluated first, and therefore the background object pixel wins, which means that you'll only be seeing the PF pixel after this mess.

    +


    +

     A good game to demonstrate this behaviour is Megaman 2. Go into airman's stage. First, jump into the energy bar, just to confirm that megaman's sprite is of a higher priority than the energy bar's. Now, get to the second half of the stage, where the clouds cover the energy bar. The energy bar will be ontop of the clouds, but megaman will be behind them. Now, look what happens when you jump into the energy bar here... you see the clouds where megaman underlaps the energy bar.

    +


    +


    +

    +----------------------+

    +

    |Graphical enhancements|

    +

    +----------------------+

    +

     Since an NES cartridge has access to the PPU bus, any number of on-cart hardware schemes can be used to enhance the graphic capabilities of the NES. After all, the PPU's playfield pipeline is very simple: it fetches 272 playfield pixels per scanline (as 34*2 byte fetches, in real-time), and outputs 256 of them to the screen (with the 0..7 pixel offset determined by the fine X scroll register), along with object data combined with it.

    +


    +

     Essentially, you can bypass the PPU's simple scrolling system, implement a custom one on your cart (fetching bitmap data in your own fashion), and feed the PPU bitmap data in your own order.

    +


    +

     The possibilities of this are endless (like sporting multiple playfields, or even playfield rotation/scaling), but of course what it comes down to is the amount of cartridge hardware required.

    +


    +

     Generally, playfield rotation/scaling can be done quite easily- it only requires a few sets of 16-bit registers and adders (the 16 bits are broken up into 8.8 fixed point values). But this kind of implementation is more suited for an integrated circuit, since this would require dozens of discrete logic chips.

    +


    +

     Multiple playfields are another thing which could be easily done. The caveat here is that pixel pipelines (i.e., shift registers) and a multiplexer would have to be implemented on the cart (not to mention exclusive name table RAM) in order to process the playfield bitmaps from multiple sources. The access to the CHR-ROM/RAM would also have to increased- but as it stands, the CHR-ROM/RAM bandwidth is 1.34 MHz, a rather low frequency. With a memory device capable of a 10.74 MHz bandwith, you could have 8 playfields to work with. Generally, this would be very useful for displaying multiple huge objects on the screen- without ever having to worry about annoying flicker.

    +


    +

     The only restriction to doing any of this is that:

    +


    +

     - every 8 sequential horizontal pixels sent to the PPU must share the same palette select value. Because of this, hardware would have to be implemented to decide which palette select value to feed the PPU between 8 horizontally sequential pixels, if they do not all share the same palette select value. The on-screen results of this may not be too flattering sometimes, but this is a small price to pay to do some neat graphical tricks on the NES.

    +


    +

     -only the playfield palette can be used. As usual, this pretty much limits your randomly accessable colors to about 12+1.

    +


    +

     It's a damn shame that Nintendo never created a MMC which would enhance graphics on the NES in useful ways as mentioned above. The MMC5 was the only device that came close, and it's only selling features were the single-tile color area, and the vertical split screen mode (which I don't think any game ever used). Considering the amount of pins (100) the MMC5 had, and number of gates they put in it just for the EXRAM (which was 1K bytes), they could've put some really useful graphics hardware inside there instead.

    +


    +

     Prehaps the infamous Color Dreams "Hellraiser" cart was the closest the NES ever came to seeing such sophisticated graphics. The cart was never released, but from what I've read, it was going to use some sort of frame buffer, and a Z80 CPU to do the graphical rendering. It had been rumored that the game had 3D graphics (or at least 2.5D) in it. If so (and the game was actually good), prehaps it would have raised a few eyebrows in the industry, and inspired Nintendo to develop a new MMC chip with similar capabilities, in order to keep the NES in it's profit margin for another few years (and allow it to compete somewhat with the more advanced systems of the time).

    +


    +

    EOF

    +

    +

    Created with the Personal Edition of HelpNDoc: Free Qt Help documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/PPUViewer.html b/web/help/PPUViewer.html index 8d2caed9..5b47e701 100644 --- a/web/help/PPUViewer.html +++ b/web/help/PPUViewer.html @@ -1,101 +1,291 @@ - - + + + + + - PPU Viewer - - - - - - - - - - + + + + + + + + PPU Viewer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    PPU Viewer

    - -
    - Debug ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    PPU Viewer

    -


    -


    -

    Introduction

    -


    -

    The NES architecture includes a 6502 CPU as well as a custom video controller known as a PPU (Picture Processing Unit).  The PPU's video memory is separated from the main CPU memory and can be read/written via special ports (see PPU Memory).

    -


    -

    The PPU viewer will only display the contents of the current PPU memory. It does not alter game data in any way.

    -


    -


    -

    Using PPU Viewer

    -


    -

    Show on Scanline

    -

    This options makes it show what the PPU looks like when the screen is drawing that particular scanline. It is useful for games like SMB, that swap pattern tables mid-frame (e.g. for status bar stuff).

    -


    -

    Right clicking on one of the PPU panels will change the palette it is shown with, cycling though pattern palettes, then sprite ones, then a ninth fixed grey palette (useful for inspecting CHR if all the palettes are currently black).

    -


    -

    Putting the mouse cursor over a tile will display the tile address. Moving cursor over palette color will give palette address.

    -


    -

    When Code/Data Logger is running, you can also use the "Mask unused graphics" feature. Alternatively, you can only mask tiles that were used (drawn or otherwise accessed) and emphasize the tiles that weren't used (e.g. in order to find secret sprites).

    -

    Note: this feature only works with games that use CHR ROM, because Code/Data Logger only logs accesses to CHR ROM.

    -


    -


    -


    -


    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Produce electronic books easily

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    PPU Viewer

    + +
    + +

    +

    PPU Viewer

    +


    +


    +

    Introduction

    +


    +

    The NES architecture includes a 6502 CPU as well as a custom video controller known as a PPU (Picture Processing Unit).  The PPU's video memory is separated from the main CPU memory and can be read/written via special ports (see PPU Memory).

    +


    +

    The PPU viewer will only display the contents of the current PPU memory. It does not alter game data in any way.

    +


    +


    +

    Using PPU Viewer

    +


    +

    Show on Scanline

    +

    This options makes it show what the PPU looks like when the screen is drawing that particular scanline. It is useful for games like SMB, that swap pattern tables mid-frame (e.g. for status bar stuff).

    +


    +

    Right clicking on one of the PPU panels will change the palette it is shown with, cycling though pattern palettes and then sprite ones.

    +

    Putting the mouse cursor over a tile will display the tile address. Moving cursor over palette color will give palette address.

    +


    +

    When Code/Data Logger is running, you can also use the "Mask unused graphics" feature. Alternatively, you can only mask tiles that were used (drawn or otherwise accessed) and emphasize the tiles that weren't used (e.g. in order to find secret sprites).

    +

    Note: this feature only works with games that use CHR ROM, because Code/Data Logger only logs accesses to CHR ROM.

    +


    +


    +


    +


    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring tool

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Palette.html b/web/help/Palette.html index 9aa4242a..16017c00 100644 --- a/web/help/Palette.html +++ b/web/help/Palette.html @@ -1,118 +1,309 @@ - - + + + + + - Palette - - - - - - - - - - + + + + + + + + Palette + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Palette

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Palette

    -


    -

    Settings related to the emulator's color palette choices.

    -


    -


    -

    NES Palette

    -


    -

    Use Custom Palette

    -

    Check or uncheck this to switch between default palette and currently loaded custom palette.

    -


    -

    Load Palette

    -

    Allows you to load a custom color palette (.pal) file to use for the current game loaded.

    -


    -

    A note on on the format of external palettes; Palette files are expected to contain 64 8-bit RGB triplets (each in that order; red comes first in the triplet in the file, then green, then blue). Each 8-bit value represents brightness for that particular color. 0 is minimum, 255 is maximum.

    -


    -

    Palettes can be set on a per-game basis. To do this, put a palette file in the same directory the game is in, and add the extension "pal". Examples:

    -


    -

                    File name:              Palette file name:

    -

                    BigBad.nes             BigBad.pal

    -

                    BigBad.zip              BigBad.pal

    -

                    BigBad.Better.nes   BigBad.Better.pal

    -


    -


    -

    With so many ways to choose a palette, figuring out which one will be active may be difficult. Here's a list of what palettes will be used, in order from highest priority to least priority(if a condition doesn't exist for a higher priority palette, the emulator will continue down its list of palettes).

    -


    -

       * NSF Palette(for NSFs only)

    -

       * Palette loaded from the "gameinfo" directory.

    -

       * NTSC Color Emulation(only for NTSC NES games).

    -

       * VS Unisystem palette(if the game is a VS Unisystem game and a palette is available).

    -

       * Custom global palette.

    -

       * Default NES palette.

    -


    -

    Force Grayscale

    -

    Applies simple Grayscale filter, no matter what palette is currently used.

    -


    -

    De-emphasis bit swap

    -

    Every PAL PPU has de-emphasis bits for green and red colors swapped. This option simulates that behavior.

    -


    -


    -

    NTSC Color Emulation

    -


    -

    If enabled, FCEUX will simulate actual NTSC signal processing.  The result should be the actual colors you would see if outputting to an actual NTSC television.

    -


    -

    The Tint and Hue knobs can be used to make adjustments to the resulting color change.

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free CHM Help documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Palette

    + +
    + +

    +

    Palette

    +


    +

    Settings related to the emulator's color palette choices.

    +


    +


    +

    NES Palette

    +


    +

    Use Custom Palette

    +

    Check or uncheck this to switch between default palette and currently loaded custom palette.

    +


    +

    Load Palette

    +

    Allows you to load a custom color palette (.pal) file to use for the current game loaded.

    +


    +

    A note on on the format of external palettes; Palette files are expected to contain 64 8-bit RGB triplets (each in that order; red comes first in the triplet in the file, then green, then blue). Each 8-bit value represents brightness for that particular color. 0 is minimum, 255 is maximum.

    +


    +

    Palettes can be set on a per-game basis. To do this, put a palette file in the same directory the game is in, and add the extension "pal". Examples:

    +


    +

                     File name:              Palette file name:

    +

                     BigBad.nes             BigBad.pal

    +

                     BigBad.zip              BigBad.pal

    +

                     BigBad.Better.nes   BigBad.Better.pal

    +


    +


    +

    With so many ways to choose a palette, figuring out which one will be active may be difficult. Here's a list of what palettes will be used, in order from highest priority to least priority(if a condition doesn't exist for a higher priority palette, the emulator will continue down its list of palettes).

    +


    +

        * NSF Palette(for NSFs only)

    +

        * Palette loaded from the "gameinfo" directory.

    +

        * NTSC Color Emulation(only for NTSC NES games).

    +

        * VS Unisystem palette(if the game is a VS Unisystem game and a palette is available).

    +

        * Custom global palette.

    +

        * Default NES palette.

    +


    +

    Force Grayscale

    +

    Applies simple Grayscale filter, no matter what palette is currently used.

    +


    +

    De-emphasis bit swap

    +

    Every PAL PPU has de-emphasis bits for green and red colors swapped. This option simulates that behavior.

    +


    +


    +

    NTSC Color Emulation

    +


    +

    If enabled, FCEUX will simulate actual NTSC signal processing.  The result should be the actual colors you would see if outputting to an actual NTSC television.

    +


    +

    The Tint and Hue knobs can be used to make adjustments to the resulting color change.

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Create help files for the Qt Help Framework

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/PaletteOptions.html b/web/help/PaletteOptions.html index b3874bff..f400439e 100644 --- a/web/help/PaletteOptions.html +++ b/web/help/PaletteOptions.html @@ -1,108 +1,299 @@ - - + + + + + - Palette Options - - - - - - - - - - + + + + + + + + Palette Options + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Palette Options

    - -
    - General ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Palette Options

    -


    -

    FCEUX comes packaged with several palette files. This page describes details for each one.

    -

    To load a palette file, see Palette config.

    -


    -


    -

    FCEUX.pal

    -


    -

    This is the default palette that FCEUX uses. It is the same palette used in FCEU.12 or earlier, and FCEUD/FCEUXD/FCEUXDSP.

    -


    -

    FCEU-13-default_nitsuja.pal

    -


    -

    This is the palette added to FCEU.13 rerecording by Nitsuja.

    -


    -

    FCEU-15-nitsuja-new.pal

    -


    -

    This is the palette added to FCEU.15 rerecording by Nitsuja.  It is a slight adjustment to the FCEU.13 palette.

    -


    -

    NESTOPIA_RGB.pal & NESTOPIA_YUV.pal

    -


    -

    Default palettes of Nestopia.

    -


    -

    BMF_final2.pal & BMF_final3.pal

    -


    -

    These palettes were designed by BMF.  He customized these by looking at snapshots of his television screen and attempting to replicate them as close as possible.

    -


    -

    ASQ_realityA.pal & ASQ_realityB.pal

    -


    -

    BMF palettes had some flaws.  AspiringSquire tweaked BMF's palettes and came up with this.  They fix issues mostly related to brightness.

    -


    -

    SONY_CXA2025AS_US.pal

    -


    -

    This palette is based on the CXA2025AS integrated circuit used in Sony TV-sets.

    -


    -

    Unsaturated-V6.pal

    -


    -

    This palette by FirebrandX offers a more realistic brightness/contrast scale of the original console. It was developed using a direct-capture device hooked up to the NES, then error-corrected to the current and final 6th version.

    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Palette Options

    + +
    + +

    +

    Palette Options

    +


    +

    FCEUX comes packaged with several palette files. This page describes details for each one.

    +

    To load a palette file, see Palette config.

    +


    +


    +

    FCEUX.pal

    +


    +

    This is the default palette that FCEUX uses. It is the same palette used in FCEU.12 or earlier, and FCEUD/FCEUXD/FCEUXDSP.

    +


    +

    FCEU-13-default_nitsuja.pal

    +


    +

    This is the palette added to FCEU.13 rerecording by Nitsuja.

    +


    +

    FCEU-15-nitsuja-new.pal

    +


    +

    This is the palette added to FCEU.15 rerecording by Nitsuja.  It is a slight adjustment to the FCEU.13 palette.

    +


    +

    NESTOPIA_RGB.pal & NESTOPIA_YUV.pal

    +


    +

    Default palettes of Nestopia.

    +


    +

    BMF_final2.pal & BMF_final3.pal

    +


    +

    These palettes were designed by BMF.  He customized these by looking at snapshots of his television screen and attempting to replicate them as close as possible.

    +


    +

    ASQ_realityA.pal & ASQ_realityB.pal

    +


    +

    BMF palettes had some flaws.  AspiringSquire tweaked BMF's palettes and came up with this.  They fix issues mostly related to brightness.

    +


    +

    SONY_CXA2025AS_US.pal

    +


    +

    This palette is based on the CXA2025AS integrated circuit used in Sony TV-sets.

    +


    +

    Unsaturated-V6.pal

    +


    +

    This palette by FirebrandX offers a more realistic brightness/contrast scale of the original console. It was developed using a direct-capture device hooked up to the NES, then error-corrected to the current and final 6th version.

    +

    +

    Created with the Personal Edition of HelpNDoc: Easy EBook and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/RAMSearch.html b/web/help/RAMSearch.html index 211f0890..6a7b3718 100644 --- a/web/help/RAMSearch.html +++ b/web/help/RAMSearch.html @@ -1,83 +1,274 @@ - - + + + + + - RAM Search - - - - - - - - - - + + + + + + + + RAM Search + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    RAM Search

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Ram Search

    -


    -

    Ram Search is a tool originally written for GENS rerecording.  It was ported to FCEUX in version 2.1.2.  This dialog has also been ported to SNELS9x-rr, Desmume, PCEjin, VBA-rr, PCSX-rr, Yabause, VBjin, and FBA-rr.

    -


    -


    -

    It is designed to filter RAM values just like in the Cheat Search dialog.  However, it features many options that are lacking in the Cheat Search dialog.  Among these are search undo, search preview, a modulus filter, a data size option, signed/unsigned/hex options, autosearch, and several more compare by options.

    -


    -

    Documentation on this dialog can be found on TASVideos here.

    -


    -

    Hotkeys

    -


    -

    Hotkeys can be assigned to common search commands so they can be easily selected while in the main window.

    -

    -

    Created with the Personal Edition of HelpNDoc: Free HTML Help documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    RAM Search

    + +
    + +

    +

    Ram Search

    +


    +

    Ram Search is a tool originally written for GENS rerecording.  It was ported to FCEUX in version 2.1.2.  This dialog has also been ported to SNELS9x-rr, Desmume, PCEjin, VBA-rr, PCSX-rr, Yabause, VBjin, and FBA-rr.

    +


    +


    +

    It is designed to filter RAM values just like in the Cheat Search dialog.  However, it features many options that are lacking in the Cheat Search dialog.  Among these are search undo, search preview, a modulus filter, a data size option, signed/unsigned/hex options, autosearch, and several more compare by options.

    +


    +

    Documentation on this dialog can be found on TASVideos here.

    +


    +

    Hotkeys

    +


    +

    Hotkeys can be assigned to common search commands so they can be easily selected while in the main window.

    +

    +

    Created with the Personal Edition of HelpNDoc: Free EPub producer

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/RAMWatch.html b/web/help/RAMWatch.html index 948818e6..59b1fe7d 100644 --- a/web/help/RAMWatch.html +++ b/web/help/RAMWatch.html @@ -1,78 +1,269 @@ - - + + + + + - RAM Watch - - - - - - - - - - + + + + + + + + RAM Watch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    RAM Watch

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Ram Watch

    -


    -

    Ram Watch is a tool originally written for GENS rerecording.  It was ported to FCEUX in version 2.1.2.  This dialog has also been ported to SNES9x-rr, Desmume, PCEjin, VBA-rr, PCSX-rr, Yabause, and FBA-rr.

    -


    -

    It is designed to filter ram values just like in the Cheat Search dialog.  However, it features many options that are lacking in the Cheat Search dialog.  Among these are search undo, search preview, a modulus filter, a data size option, signed/unsigned/hex options, autosearch, and several more compare by options.

    -


    -

    Documentation on this dialog can be found on TASVideos here.

    -

    -

    Created with the Personal Edition of HelpNDoc: Free help authoring environment

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    RAM Watch

    + +
    + +

    +

    Ram Watch

    +


    +

    Ram Watch is a tool originally written for GENS rerecording.  It was ported to FCEUX in version 2.1.2.  This dialog has also been ported to SNES9x-rr, Desmume, PCEjin, VBA-rr, PCSX-rr, Yabause, and FBA-rr.

    +


    +

    It is designed to filter ram values just like in the Cheat Search dialog.  However, it features many options that are lacking in the Cheat Search dialog.  Among these are search undo, search preview, a modulus filter, a data size option, signed/unsigned/hex options, autosearch, and several more compare by options.

    +


    +

    Documentation on this dialog can be found on TASVideos here.

    +

    +

    Created with the Personal Edition of HelpNDoc: Produce Kindle eBooks easily

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/ROMHacking.html b/web/help/ROMHacking.html index fada4be4..0782de84 100644 --- a/web/help/ROMHacking.html +++ b/web/help/ROMHacking.html @@ -1,98 +1,289 @@ - - + + + + + - ROM Hacking - - - - - - - - - - + + + + + + + + ROM Hacking + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    ROM Hacking

    - -
    - FAQ / Guides ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    ROM Hacking

    -


    -

    What is ROM Hacking?

    -


    -

    ROM Hacking is the process of modifying a video game ROM image to alter the game's graphics, dialogue, levels, gameplay, or other gameplay elements. This is usually done by technically-inclined video game fans to breathe new life into a cherished old game, as a creative outlet, or to make essentially new unofficial games using an old game as a foundation.

    -


    -

    ROM hacking is generally accomplished through use of a hex editor (a program for editing non-textual data) and various specialized tools such as tile editors, and game-specific tools which are generally used for editing levels, items, and the like, although more advanced tools such as assemblers and debuggers are occasionally used. Once ready, they are usually distributed on the Internet for others to play on an emulator.

    -


    -

    For more information on ROM Hacking:

    -

    "The ROM Hackers Bible"

    -

    Parodius - ROM Hacking Community

    -

    ROM-Hacking.net Archive

    -


    -


    -

    FCEUX ROM-Hacking Features

    -


    -

    FCEUX provides a wealth of tools and resources to aid in hacking NES & FDS games.  It features the most current and cutting edge tools debugging and hacking games as well as making the process quicker an easier.

    -


    -

    Debugging / Reverse engineering:

    -

    Debugger, Trace Logger, Code/Data Logger, Cheat Search, RAM Filter, Movie Making tools/Frame Advance

    -


    -

    Memory & PPU Viewing:

    -

    Debugger, PPU Viewer, Hex Editor, Trace Logger, Code/Data Logger

    -


    -

    ROM Editing / Game Genie Codes

    -

    Debugger, Hex Editor, Cheat Search, Game Genie Decoder/Encoder

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Generate EPub eBooks with ease

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    ROM Hacking

    + +
    + +

    +

    ROM Hacking

    +


    +

    What is ROM Hacking?

    +


    +

    ROM Hacking is the process of modifying a video game ROM image to alter the game's graphics, dialogue, levels, gameplay, or other gameplay elements. This is usually done by technically-inclined video game fans to breathe new life into a cherished old game, as a creative outlet, or to make essentially new unofficial games using an old game as a foundation.

    +


    +

    ROM hacking is generally accomplished through use of a hex editor (a program for editing non-textual data) and various specialized tools such as tile editors, and game-specific tools which are generally used for editing levels, items, and the like, although more advanced tools such as assemblers and debuggers are occasionally used. Once ready, they are usually distributed on the Internet for others to play on an emulator.

    +


    +

    For more information on ROM Hacking:

    +

    "The ROM Hackers Bible"

    +

    Parodius - ROM Hacking Community

    +

    ROM-Hacking.net Archive

    +


    +


    +

    FCEUX ROM-Hacking Features

    +


    +

    FCEUX provides a wealth of tools and resources to aid in hacking NES & FDS games.  It features the most current and cutting edge tools debugging and hacking games as well as making the process quicker an easier.

    +


    +

    Debugging / Reverse engineering:

    +

    Debugger, Trace Logger, Code/Data Logger, Cheat Search, RAM Filter, Movie Making tools/Frame Advance

    +


    +

    Memory & PPU Viewing:

    +

    Debugger, PPU Viewer, Hex Editor, Trace Logger, Code/Data Logger

    +


    +

    ROM Editing / Game Genie Codes

    +

    Debugger, Hex Editor, Cheat Search, Game Genie Decoder/Encoder

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: What is a Help Authoring tool?

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Sound.html b/web/help/Sound.html index d960ec8a..5715f762 100644 --- a/web/help/Sound.html +++ b/web/help/Sound.html @@ -1,79 +1,270 @@ - - + + + + + - Sound - - - - - - - - - - + + + + + + + + Sound + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Sound

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Sound

    -


    -

    Includes specifications for the NSF Format & NES Sound core

    -


    -


    -

    NSF Format

    -


    -

    NES Sound

    -

    -

    Created with the Personal Edition of HelpNDoc: Create iPhone web-based documentation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + + + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/SoundOptions.html b/web/help/SoundOptions.html index dfd46d55..4714956a 100644 --- a/web/help/SoundOptions.html +++ b/web/help/SoundOptions.html @@ -1,119 +1,310 @@ - - + + + + + - Sound - - - - - - - - - - + + + + + + + + Sound + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Sound

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Sound Configuration

    -


    -

    where you can configure sound

    -


    -


    -

    Input/Output format

    -


    -

    The sound enabled/disabled checkbox will turn on/off FCEUX's sound.

    -

    The force 8-bit sound checkbox will override the current sound configuration and use 8-bit sound instead.

    -


    -

    You can select the sound quality in the sound quality pull down menu.

    -


    -

    Rate sets the audio sample rate.

    -


    -


    -

    Mute frame advance

    -


    -

    If checked, no sound will be produce when frame advance is pressed.

    -


    -

    Mute Turbo

    -


    -

    If checked, the sound processing will be bypassed when emulation is in turbo mode

    -


    -

    Swap Duty Cycles

    -


    -

    If checked, replicates the behavior of some famiclones that have duty cycles swapped for square channels.

    -


    -

    Buffering

    -


    -

    On older machines, increased buffering may be necessary.  If the sound is glitchy or crackling, increasing the buffing time may resolve the issue.  Lower buffering settings can reduce sound latency.

    -


    -

    Volume Control

    -


    -

    Sets the sound volume of the master sound or individual sound channels.

    -


    -

    Master

    -


    -

    Sets the Master volume level.  You can also set volume levels using the sound volume up, volume down, mute, and volume normal hotkeys under map hotkeys menu.

    -


    -

    Triangle/Square 1/Square 2/Noise/PCM

    -


    -

    Sets the volume to each individual sound channel.

    -


    -

    Note: When using low quality sound, the amount of channel control is greatly limited.  Some sound channels are disabled.

    -


    -

    Restore Defaults

    -


    -

    Restores the master and individual sound channel volumes to their default location.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Web Help sites

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Sound

    + +
    + +

    +

    Sound Configuration

    +


    +

    where you can configure sound

    +


    +


    +

    Input/Output format

    +


    +

    The sound enabled/disabled checkbox will turn on/off FCEUX's sound.

    +

    The force 8-bit sound checkbox will override the current sound configuration and use 8-bit sound instead.

    +


    +

    You can select the sound quality in the sound quality pull down menu.

    +


    +

    Rate sets the audio sample rate.

    +


    +


    +

    Mute frame advance

    +


    +

    If checked, no sound will be produce when frame advance is pressed.

    +


    +

    Mute Turbo

    +


    +

    If checked, the sound processing will be bypassed when emulation is in turbo mode

    +


    +

    Swap Duty Cycles

    +


    +

    If checked, replicates the behavior of some famiclones that have duty cycles swapped for square channels.

    +


    +

    Buffering

    +


    +

    On older machines, increased buffering may be necessary.  If the sound is glitchy or crackling, increasing the buffing time may resolve the issue.  Lower buffering settings can reduce sound latency.

    +


    +

    Volume Control

    +


    +

    Sets the sound volume of the master sound or individual sound channels.

    +


    +

    Master

    +


    +

    Sets the Master volume level.  You can also set volume levels using the sound volume up, volume down, mute, and volume normal hotkeys under map hotkeys menu.

    +


    +

    Triangle/Square 1/Square 2/Noise/PCM

    +


    +

    Sets the volume to each individual sound channel.

    +


    +

    Note: When using low quality sound, the amount of channel control is greatly limited.  Some sound channels are disabled.

    +


    +

    Restore Defaults

    +


    +

    Restores the master and individual sound channel volumes to their default location.

    +

    +

    Created with the Personal Edition of HelpNDoc: Produce online help for Qt applications

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/TASEditor.html b/web/help/TASEditor.html index 9e13f3bd..23dc671b 100644 --- a/web/help/TASEditor.html +++ b/web/help/TASEditor.html @@ -1,83 +1,274 @@ - - + + + + + - TAS Editor - - - - - - - - - - + + + + + + + + TAS Editor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    TAS Editor

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    TAS Editor

    -


    -


    -

    TAS Editor is an overhaul in the logic of creating TAS movies (see Tool Assisted Speedruns). It is a powerful new design that takes movie making from a "recording" concept to a "creating an input file" way of thinking.

    -


    -

    In the 2.2.0 release the TAS Editor was completely redesigned and rewritten, incorporating new experimental ideas.

    -

    Now it also has its own Manual, see taseditor.chm or fceux.com/web/help/taseditor/

    -


    -

    The tool is only available in Windows version of FCEUX.

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Write eBooks for the Kindle

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    TAS Editor

    + +
    + +

    +

    TAS Editor

    +


    +


    +

    TAS Editor is an overhaul in the logic of creating TAS movies (see Tool Assisted Speedruns). It is a powerful new design that takes movie making from a "recording" concept to a "creating an input file" way of thinking.

    +


    +

    In the 2.2.0 release the TAS Editor was completely redesigned and rewritten, incorporating new experimental ideas.

    +

    Now it also has its own Manual, see taseditor.chm or fceux.com/web/help/taseditor/

    +


    +

    The tool is only available in Windows version of FCEUX.

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured multi-format Help generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Technicalinformation.html b/web/help/Technicalinformation.html index 785475fe..fa9ff4bd 100644 --- a/web/help/Technicalinformation.html +++ b/web/help/Technicalinformation.html @@ -1,74 +1,269 @@ - - + + + + + - Technical Information - - - - - - - - - - + + + + + + + + Technical Information + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Technical Information

    - -
    -
    - Previous - - Next - -
    -
    -
    -
    - -

    -

    Technical Information

    -


    -

    These chapters deal with documentation of specific hardware configurations of the NES and/or how the FCEU core emulates these aspects.

    -


    -

    More documentation about NES and Famicom hardware specifications can be found at: http://nesdev.parodius.com/

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Produce Kindle eBooks easily

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Technical Information

    + +
    + +

    +

    Technical Information

    +


    +

    These chapters deal with documentation of specific hardware configurations of the NES and/or how the FCEU core emulates these aspects.

    +


    +

    More documentation about NES and Famicom hardware specifications can be found at: http://nesdev.parodius.com/

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring environment

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/TextHooker.html b/web/help/TextHooker.html index 9382e58a..b5939031 100644 --- a/web/help/TextHooker.html +++ b/web/help/TextHooker.html @@ -1,167 +1,358 @@ - - + + + + + - Text Hooker - - - - - - - - - - + + + + + + + + Text Hooker + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Text Hooker

    - -
    - Tools ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Text Hooker

    -


    -

    (written by Ugly Joe, author of the Text Hooker tool)

    -


    -


    -

    What is Text Hooker?

    -


    -

    Here's a premise for you. Suppose you've pirated a bunch of Japanese NES roms and you load one of them up at random. Cool music. Cool title screen. You go to start a game, put in ???? at the name entry screen, and get to the actual game. Well, big surprise here, it's an RPG. You soon realize that you have no idea what people are saying, what shops are selling, or what your battle options are. It can be fun to trial-and-error for a while, but you're ultimately stuck in the first town. Time to load up a new ROM.

    -


    -

    Well, being the aspiring Japanophile that I am, I have all kinds of translation tools and websites at my disposal. It's not impossible for me to figure out the kana for an item name, put it into a website somewhere, and figure out what it is. It's a slow process, but I can figure out short, simple strings of Japanese text. Sometimes, this is all I need to know to get by.

    -


    -

    This is why I made the Text Hooker. What it allows you to do is highlight text boxes in the game and copy the kana right to the clipboard. I no longer have to look up stuff, I can just copy from the emulator, paste into the website, and go from there. While developing it, I took it a bit further by adding a (shoddy) translator right into the app, and added features such as word substitutions (so you only have to look up the word once and then the app will know what it is as soon as you copy it). What you end up with is kind of like a translator's notebook. It keeps commonly used words in a dictionary and helps you get through a Japanese game without having too much knowledge of the Japanese language.

    -


    -


    -

    What do I need to use to use it?

    -


    -

    Some knowledge of the Japanese language

    -

    I really can't say how much you need to know, but I suppose the more you know the better. I could be wrong, but I think you need to know at least something about the language before you can start copy/pasting translations.

    -


    -

    Know how to make a Japanese table file

    -

    I'm not going to explain how to do this since there are adequate tutorials already out there. You'll need to be able to do this per game in order for the Text Hooker to work.

    -


    -

    Japanese font support

    -

    Okay, I have tested this thing on a Win98 installation with no Japanese font. It still works. However, I didn't test it for very long and I'm not sure how well translation websites are going to work without it. So, it might work without Japanese font support, but I'm not officially saying it does.

    -


    -

    A Japanese ROM

    -

    Duh, you'll need a game to play. Find it yourself.

    -


    -


    -

    How do I use the Text Hooker?

    -


    -

    First of all, you need to make your table file. The text hooker doesn't use Thingy tables, but uses a modified Thingy table instead. So, make your standard Thingy table file, but save it with a .tht extension (instead of .tbl). What you need to add to the table are the dakuten and handakuten marks (tenten and maru). The byte for the dakuten mark needs to be set to tenten and the byte for the handakuten mark needs to be set to tenten. Like:

    -


    -

    DC=tenten

    -

    DD=maru

    -


    -

    If you don't do this, the Text Hooker will fail miserabley when copying the text over from the game.

    -


    -

    Once you have your table file ready, open up your rom in FCEUXDSP CE and open the text hooker window (Tools -> Text Hooker). Click on the "Load Table" button and open up your .tht file. Now you can really get ready to work.

    -


    -

    Basic Usage

    -


    -

    A warning

    -

    All information is saved in the table file. You have to save your table manually using the Save Table button. If you close the Text Hooker window or load a different table, your changes since the last save will be lost. You will not be prompted to save changes. Please remember to save!

    -


    -

    Making Selections

    -

    The Selection Window is where you select the text in the game. It is basically the same view as the actual emulator window, but it updates less often and does not show sprites (text is not drawn with sprites, so they are not needed). To make a selection, click on a deselected tile and drag your mouse. To remove a selection, click on a selected tile and drag your mouse. It works a lot like a pen tool and an eraser tool in standard paint programs.

    -


    -

    Once you have made a selection, you can save it for later use. This comes in handy since most RPGs will display their text boxes and battle menus in the same place throughout the entire game. To save a selection, type a name for the selection into the New Selection Name field and press the Save Selection button. Note that this selection will not be saved to your table file until you press the Save Table button.

    -


    -

    You can also use the Clear Selection button to deselect all of the tiles in the selection window.

    -


    -

    Please note that when you select text, you should not select the mostly blank rows that contains the dakuten and handakuten marks. You're essentially selecting every other row. Please see the UI image above for an example.

    -


    -

    Translating Text

    -

    Once you've made a selection, press the big Snap button to copy the text into the Hooked Text window. Only the tiles that are defined in your table file will be copied over. All other tiles will be ignored. Once you have some Japanese text in your Hooked Text window, you have a few options. You can press the Excite.co.jp button to receive a really bad translation (better than Babelfish, but still bad) in the Translated Text window, or you can select all or part of the text in the Hooked Text window and copy/paste it into another translation tool or website. If you're translating a block of text (as opposed to item names or menus), you should probably use the Trim button to clean up the excess whitespace.

    -


    -

    Please bear in mind that, due to the limitations of the NES, Japenese games use very little kanji. This means you'll have to look up the kana representation of what would normally be a kanji. Most translation tools will give you a hard time about this.

    -


    -

    The word substitution feature can be used to process the selected text before it is sent to the Hooked Text window. By entering in Japanese-to-English definitions, you build up your word subs dictionary. If word subs are enabled and you press the snap button, the selected text is checked against your dictionary and any words that it finds are replaced by their definition.

    -


    -

    This is useful for a few reason. One, many words written in katakana don't translate too well. You can use this to stop the translators from mangling them. Two, character names are often the same thing as words. For example, if your character's name is ??? (Sakura), the translator will likely translate it to “cherry blossom”. If you define ??? as Sakura, then you won't have to worry about that. Three, you only really need to translate menus and items once. Once you have them figured out, add them to your dictionary. This way, you can just select your menu (perhaps from a saved selection?) and press Snap -- instant menu translation! Four, I'm not positive about this, but if you know that a string of kana is going to always mean a particular kanji, you could put the kana in the Japanese side and the kanji in the English side. This would aid translators since it wouldn't have to try and figure it out itself. Note that I haven't tested that last one since I don't know enough kanji to put it to the test.

    -


    -

    Again, please remember that your dictionary will not be saved unless you use the Save Table button.

    -


    -

    Tweaking

    -

    Here are some other helpful features.

    -


    -

    Pause Button: this is used to pause and unpause the emulator.

    -


    -

    Scanline: this is used to determine on what scanline the Selection Window will be updated. Some games will switch their font tiles in and out of the PPU. If this happens, you may need to change the scanline to a bigger number in order to see the tiles you're looking for. For example, this happens a lot in the game Metal Slader Glory.

    -


    -

    Update every x frames: this is used to determine how often the Selection Window is updated. The smaller the number, the slower the emulator will go.

    -


    -

    Selection Window checkbox: this is used to determine whether or not the selection window should be updated. If you're not going to be needing the Text Hooker for a while, you should probably uncheck this box while you play.

    -


    -

    Word Substitution checkbox: this is used to determine whether or not word substitution will be used.

    -


    -

    (han)dakuten mark position checkbox: this is used to tell the text hooker where the dakuten and handakuten marks are located in relation to the kana. Most games will use Above, but some games that try to squeeze in as much text into a small area as possible will use Right.

    -

    Features > Text Hooker > Reference

    -

    Features > Text Hooker > Reference > Text Hooker Table file reference

    -

    I suppose this is the kind of thing that should be documented, so here it is. When I started to make this thing, I was just using Thingy tables. When I started to add other features, I knew I needed to save them somewhere. It seemed kind of dumb to me to store this information in separate files, so I decided I would append the other sections to the end of the table files. In the far off chance that there becomes some kind of archive for Text Hooker table files, I decided to use a different extension.

    -


    -

    A .tht file is comprised of three parts (and possibly more in the future). The first part resembles a Thingy table, since it's more or less that same thing. You have a hex byte value, and equals sign, and the corresponding character after the equals sign. The biggest difference from Thingy tables is that the tenten and maru marks must be defined using the words tenten and maru.

    -


    -

    The next section is the Selections storage. This section begins with a

    -


    -

    [selections]

    -


    -

    declaration. What follows are hashes for saved selections (name of selection, equals sign, hash). The hashes should be safe for viewing and saving in any text editor that is capable of viewing and saving Japanese text. These hashes are, admittedly, under tested. If anyone can find a situation in which the selection hashes are corrupted but the rest of the table file is not, please let me know.

    -


    -

    Up next is the Word Substitution Dictionary. This section begins with a

    -


    -

    [words]

    -


    -

    declaration. These lines are formatted in a Japanese=English manner. You should be able to have Japanese or English on either or both sides. It's nothing more than a list of values used during a search and replace function.

    -

    -

    Created with the Personal Edition of HelpNDoc: Easy EPub and documentation editor

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Text Hooker

    + +
    + +

    +

    Text Hooker

    +


    +

    (written by Ugly Joe, author of the Text Hooker tool)

    +


    +


    +

    What is Text Hooker? 

    +


    +

    Here's a premise for you. Suppose you've pirated a bunch of Japanese NES roms and you load one of them up at random. Cool music. Cool title screen. You go to start a game, put in ???? at the name entry screen, and get to the actual game. Well, big surprise here, it's an RPG. You soon realize that you have no idea what people are saying, what shops are selling, or what your battle options are. It can be fun to trial-and-error for a while, but you're ultimately stuck in the first town. Time to load up a new ROM.

    +


    +

    Well, being the aspiring Japanophile that I am, I have all kinds of translation tools and websites at my disposal. It's not impossible for me to figure out the kana for an item name, put it into a website somewhere, and figure out what it is. It's a slow process, but I can figure out short, simple strings of Japanese text. Sometimes, this is all I need to know to get by.

    +


    +

    This is why I made the Text Hooker. What it allows you to do is highlight text boxes in the game and copy the kana right to the clipboard. I no longer have to look up stuff, I can just copy from the emulator, paste into the website, and go from there. While developing it, I took it a bit further by adding a (shoddy) translator right into the app, and added features such as word substitutions (so you only have to look up the word once and then the app will know what it is as soon as you copy it). What you end up with is kind of like a translator's notebook. It keeps commonly used words in a dictionary and helps you get through a Japanese game without having too much knowledge of the Japanese language.

    +


    +


    +

    What do I need to use to use it?

    +


    +

    Some knowledge of the Japanese language

    +

    I really can't say how much you need to know, but I suppose the more you know the better. I could be wrong, but I think you need to know at least something about the language before you can start copy/pasting translations.

    +


    +

    Know how to make a Japanese table file

    +

    I'm not going to explain how to do this since there are adequate tutorials already out there. You'll need to be able to do this per game in order for the Text Hooker to work.

    +


    +

    Japanese font support

    +

    Okay, I have tested this thing on a Win98 installation with no Japanese font. It still works. However, I didn't test it for very long and I'm not sure how well translation websites are going to work without it. So, it might work without Japanese font support, but I'm not officially saying it does.

    +


    +

    A Japanese ROM

    +

    Duh, you'll need a game to play. Find it yourself.

    +


    +


    +

    How do I use the Text Hooker?

    +


    +

    First of all, you need to make your table file. The text hooker doesn't use Thingy tables, but uses a modified Thingy table instead. So, make your standard Thingy table file, but save it with a .tht extension (instead of .tbl). What you need to add to the table are the dakuten and handakuten marks (tenten and maru). The byte for the dakuten mark needs to be set to tenten and the byte for the handakuten mark needs to be set to tenten. Like:

    +


    +

    DC=tenten

    +

    DD=maru

    +


    +

    If you don't do this, the Text Hooker will fail miserabley when copying the text over from the game.

    +


    +

    Once you have your table file ready, open up your rom in FCEUXDSP CE and open the text hooker window (Tools -> Text Hooker). Click on the "Load Table" button and open up your .tht file. Now you can really get ready to work.

    +


    +

    Basic Usage

    +


    +

    A warning

    +

    All information is saved in the table file. You have to save your table manually using the Save Table button. If you close the Text Hooker window or load a different table, your changes since the last save will be lost. You will not be prompted to save changes. Please remember to save!

    +


    +

    Making Selections

    +

    The Selection Window is where you select the text in the game. It is basically the same view as the actual emulator window, but it updates less often and does not show sprites (text is not drawn with sprites, so they are not needed). To make a selection, click on a deselected tile and drag your mouse. To remove a selection, click on a selected tile and drag your mouse. It works a lot like a pen tool and an eraser tool in standard paint programs.

    +


    +

    Once you have made a selection, you can save it for later use. This comes in handy since most RPGs will display their text boxes and battle menus in the same place throughout the entire game. To save a selection, type a name for the selection into the New Selection Name field and press the Save Selection button. Note that this selection will not be saved to your table file until you press the Save Table button.

    +


    +

    You can also use the Clear Selection button to deselect all of the tiles in the selection window.

    +


    +

    Please note that when you select text, you should not select the mostly blank rows that contains the dakuten and handakuten marks. You're essentially selecting every other row. Please see the UI image above for an example.

    +


    +

    Translating Text

    +

    Once you've made a selection, press the big Snap button to copy the text into the Hooked Text window. Only the tiles that are defined in your table file will be copied over. All other tiles will be ignored. Once you have some Japanese text in your Hooked Text window, you have a few options. You can press the Excite.co.jp button to receive a really bad translation (better than Babelfish, but still bad) in the Translated Text window, or you can select all or part of the text in the Hooked Text window and copy/paste it into another translation tool or website. If you're translating a block of text (as opposed to item names or menus), you should probably use the Trim button to clean up the excess whitespace.

    +


    +

    Please bear in mind that, due to the limitations of the NES, Japenese games use very little kanji. This means you'll have to look up the kana representation of what would normally be a kanji. Most translation tools will give you a hard time about this.

    +


    +

    The word substitution feature can be used to process the selected text before it is sent to the Hooked Text window. By entering in Japanese-to-English definitions, you build up your word subs dictionary. If word subs are enabled and you press the snap button, the selected text is checked against your dictionary and any words that it finds are replaced by their definition.

    +


    +

    This is useful for a few reason. One, many words written in katakana don't translate too well. You can use this to stop the translators from mangling them. Two, character names are often the same thing as words. For example, if your character's name is ??? (Sakura), the translator will likely translate it to “cherry blossom”. If you define ??? as Sakura, then you won't have to worry about that. Three, you only really need to translate menus and items once. Once you have them figured out, add them to your dictionary. This way, you can just select your menu (perhaps from a saved selection?) and press Snap -- instant menu translation! Four, I'm not positive about this, but if you know that a string of kana is going to always mean a particular kanji, you could put the kana in the Japanese side and the kanji in the English side. This would aid translators since it wouldn't have to try and figure it out itself. Note that I haven't tested that last one since I don't know enough kanji to put it to the test.

    +


    +

    Again, please remember that your dictionary will not be saved unless you use the Save Table button.

    +


    +

    Tweaking

    +

    Here are some other helpful features.

    +


    +

    Pause Button: this is used to pause and unpause the emulator.

    +


    +

    Scanline: this is used to determine on what scanline the Selection Window will be updated. Some games will switch their font tiles in and out of the PPU. If this happens, you may need to change the scanline to a bigger number in order to see the tiles you're looking for. For example, this happens a lot in the game Metal Slader Glory.

    +


    +

    Update every x frames: this is used to determine how often the Selection Window is updated. The smaller the number, the slower the emulator will go.

    +


    +

    Selection Window checkbox: this is used to determine whether or not the selection window should be updated. If you're not going to be needing the Text Hooker for a while, you should probably uncheck this box while you play.

    +


    +

    Word Substitution checkbox: this is used to determine whether or not word substitution will be used.

    +


    +

    (han)dakuten mark position checkbox: this is used to tell the text hooker where the dakuten and handakuten marks are located in relation to the kana. Most games will use Above, but some games that try to squeeze in as much text into a small area as possible will use Right.

    +

    Features > Text Hooker > Reference

    +

    Features > Text Hooker > Reference > Text Hooker Table file reference

    +

    I suppose this is the kind of thing that should be documented, so here it is. When I started to make this thing, I was just using Thingy tables. When I started to add other features, I knew I needed to save them somewhere. It seemed kind of dumb to me to store this information in separate files, so I decided I would append the other sections to the end of the table files. In the far off chance that there becomes some kind of archive for Text Hooker table files, I decided to use a different extension.

    +


    +

    A .tht file is comprised of three parts (and possibly more in the future). The first part resembles a Thingy table, since it's more or less that same thing. You have a hex byte value, and equals sign, and the corresponding character after the equals sign. The biggest difference from Thingy tables is that the tenten and maru marks must be defined using the words tenten and maru.

    +


    +

    The next section is the Selections storage. This section begins with a

    +


    +

    [selections]

    +


    +

    declaration. What follows are hashes for saved selections (name of selection, equals sign, hash). The hashes should be safe for viewing and saving in any text editor that is capable of viewing and saving Japanese text. These hashes are, admittedly, under tested. If anyone can find a situation in which the selection hashes are corrupted but the rest of the table file is not, please let me know.

    +


    +

    Up next is the Word Substitution Dictionary. This section begins with a

    +


    +

    [words]

    +


    +

    declaration. These lines are formatted in a Japanese=English manner. You should be able to have Japanese or English on either or both sides. It's nothing more than a list of values used during a search and replace function. 

    +

    +

    Created with the Personal Edition of HelpNDoc: Free EPub and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Timing.html b/web/help/Timing.html index d0b9a2f1..ece71052 100644 --- a/web/help/Timing.html +++ b/web/help/Timing.html @@ -1,93 +1,284 @@ - - + + + + + - Timing - - - - - - - - - - + + + + + + + + Timing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Timing

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Timings

    -


    -

    Settings related to emulation timing.

    -


    -


    -

    Disable Speed Throttling Used When Sound is Disabled

    -


    -

    If checked, speed throttling will not be used while sound is disabled.  (Speed throttling gives a performance boost while sound is off).

    -


    -

    Set High Priority Thread

    -


    -

    Sets processing priority.  Enabling can help slower computers keep a steady 60fps (or 50fps) framerate.

    -


    -

    Overclocking (old PPU only)

    -


    -

    Overclocks the console by adding dummy scanlines to the usual PPU loop, causing CPU to run more cycles per frame. Can be done in two different ways: by adding Post-render scanlines and by adding Vblank scanlines. The method to be used depends on the game. Maximum value is 999.

    -


    -

    Don't overclock 7-bit samples

    -


    -

    Such samples are played by the game at the rate it wants, so by running extra cycles, it will generate extra samples. To prevent those from being sped up, this option allows to cancel all the dummy scanlines once a 7-bit sample starts. This hardly affects gameplay, since such samples cause heavy lag, preventing the game from actually operating, so disabling overclocking during them won't slow the game down.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Timing

    + +
    + +

    +

    Timings

    +


    +

    Settings related to emulation timing.

    +


    +


    +

    Disable Speed Throttling Used When Sound is Disabled

    +


    +

    If checked, speed throttling will not be used while sound is disabled.  (Speed throttling gives a performance boost while sound is off).

    +


    +

    Set High Priority Thread

    +


    +

    Sets processing priority.  Enabling can help slower computers keep a steady 60fps (or 50fps) framerate.

    +


    +

    Overclocking (old PPU only)

    +


    +

    Overclocks the console by adding dummy scanlines to the usual PPU loop, causing CPU to run more cycles per frame. Can be done in two different ways: by adding Post-render scanlines and by adding Vblank scanlines. The method to be used depends on the game. Maximum value is 999.

    +


    +

    Don't overclock 7-bit samples

    +


    +

    Such samples are played by the game at the rate it wants, so by running extra cycles, it will generate extra samples. To prevent those from being sped up, this option allows to cancel all the dummy scanlines once a 7-bit sample starts. This hardly affects gameplay, since such samples cause heavy lag, preventing the game from actually operating, so disabling overclocking during them won't slow the game down.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free EBook and documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/ToggleSwitchesHideMenuetc.html b/web/help/ToggleSwitchesHideMenuetc.html index 1aaa5d23..69ab6dbb 100644 --- a/web/help/ToggleSwitchesHideMenuetc.html +++ b/web/help/ToggleSwitchesHideMenuetc.html @@ -1,205 +1,396 @@ - - + + + + + - Menu Items & Submenus - - - - - - - - - - + + + + + + + + Menu Items & Submenus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Menu Items & Submenus

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Config Toggle Switches

    -


    -

    Explains the various toggle switch commands in the top two groups of commands under the Config Menu.

    -


    -


    -

    Hide Menu

    -


    -

    Hides the Menu commands on the FCEUX main window.  Press ESC to unhide the menu.

    -


    -


    -

    Region

    -


    -

    Allows to choose between NTSC (224p@60fps), PAL and Dendy (240p@50fps) modes. For PAL, FCEUX will detect the proper choice when loading a ROM and set the flag accordingly (based on file name, where (E) is used by GoodTools to mark European ROMs). Dendy mode (sometimes also called Hybrid) is a modification of the NTSC one, it was used in some Famiclones and supports games released for the NTSC region, slowing them down to PAL speed.

    -

    Note: you can't change this setting while a movie is being played or recorded.

    -


    -


    -

    PPU (Sub-menu)

    -


    -

    New PPU / Old PPU

    -

    As of FCEUX 2.1.2, FCEUX has a new PPU core.  The new PPU has improved accuracy and greater game compatibility than the old PPU.  However, some games may not work properly and there will be slight timing differences that would hurt movie compatibility. Also then New PPU is much slower than the Old PPU. Therefore, the old PPU is still the preferred setting.

    -

    Note: you can't change this setting while a movie is being played or recorded.

    -


    -


    -

    Enable (Sub-menu)

    -


    -

    Run in Background

    -


    -

    If enabled, FCEUX will continue to emulate when the window is not in focus.  If disabled, the emulator will pause when out of focus.

    -


    -


    -

    Background Input

    -


    -

    If enabled, FCEUX can continue to receive input while not in focus.  (Useful for playing 2 FCEUX's simultaneously)

    -


    -


    -

    Auto-savestates

    -


    -

    Enables the Auto-save feature.  If enabled, FCEUX will make periodic savestates (once per every 256 frames) as you play or record a movie.  You can right-click and select the "load last auto-save" in the context menu or press "Load Last Auto-save" hotkey to back up to the last auto-save savestate.

    -


    -


    -

    Frame Adv. - Skip Lag

    -


    -

    This feature, if enabled, will cause the frame advance key (see movie recording) to skip over lag frames.  It does this by reading the lag counter and skipping past any frames where input is not polled.  

    -


    -

    For instance, in a 30fps game (such as double dragon), frame advance will advance 2 frames instead of 1.

    -


    -


    -

    Backup Savestates

    -


    -

    Enabled by default.  This option allows for savestate & loadstate Undo (& redo).  (see context menu)

    -


    -


    -

    Compress Savestates

    -


    -

    Enabled by default.  This option compresses non movie savestates.

    -


    -


    -

    Game Genie ROM

    -


    -

    Allows the use of the game genie ROM.  You must have a game genie ROM named gg.rom (it is safe to rename a game genie.nes file to gg.rom) and it must be in the FCEUX base directory (which is the folder fceux.exe is in unless you specified a different folder in the Directory Override Menu).

    -


    -

    If enabled, FCEUX will open gg.rom first when you load a new game.  Any codes applied in the game genie screen will be applied to the game just like on a real NES.  

    -


    -

    (Remember that enabling/disabling Game Genie emulation will not take effect until a new game is loaded)

    -


    -

    Note:  Game genie codes can also be added with the Game Genie Encoder/Decoder via the Cheat Search Menu (and this method does not require a game genie ROM).

    -


    -


    -

    Auto-resume old play session

    -


    -

    If enabled, FCEUX will make a special savestate every time you close ROM, and will automatically load the savestate when you open this ROM next time, so you can continue from where you left the game. In addition, when this option is enabled, FCEUX automatically loads the last used ROM on startup.

    -


    -


    -

    Display (Sub-Menu)

    -


    -

    Input Display

    -


    -

    The input display will display 1-4 pictures of a NES controller at the bottom of the screen.  When playing/recording a movie, these controllers will display the input that is captured in the file.  

    -


    -

    When input comes from a movie file rather than then user, it is displayed in a different color (silver)

    -


    -

    The input display can also be toggled by hotkey.  The default key for toggling the Input display is the "," (comma) key.  (This can be re-mapped in the Map Hotkeys Menu).

    -


    -


    -

    Lag Counter

    -


    -

    The lag counter will increment every time to the game fails to poll for user input.  It will display in red on any frame that is currently lagging and will increment the lag counter by 1.  These situations occur when the game is lagging (too much information to process), or the game is in a screen transition state (so not polling for user input).  In  a 30fps game (such as Double Dragon 2), it will increment every other frame.

    -


    -

    The lag counter value is stored in savestates.    

    -


    -

    Displaying the lag counter can also be toggled by hotkey.  The default key is the "/" (slash) key.  (This can be re-mapped in the Map Hokeys Menu).

    -


    -


    -

    Frame Counter

    -


    -

    Toggles the display of the frame counter.  The frame counter will increment once per frame.

    -


    -

    The frame counter display can also be toggled by hotkey.  The default key is the "." (period) key.  (This can be re-mapped in the Map Hotkeys Menu).

    -


    -


    -

    Rerecord Counter

    -


    -

    Toggles the display of the number of Rerecords done when making a movie.  The Rerecord counter will increment every time you load a savestate in Recording mode.

    -


    -

    The rerecord counter display can also be toggled by hotkey.  The default key is the "M" key.  (This can be re-mapped in the Map Hotkeys Menu).

    -


    -


    -

    Movie status icon

    -


    -

    Toggles the display of "pause", "play" or "record" icons in the lower right corner.

    -


    -


    -

    FPS

    -


    -

    Toggles the display of average FPS counter in the upper right corner.

    -


    -


    -

    Graphics: BG

    -


    -

    Turning this off will turn off the backgrounds in the game.

    -


    -


    -

    Graphics: OBJ

    -


    -

    Turning this off will turn off the objects (sprites) in the game.

    -


    -

    Note: You can set the default color when the Backgrounds are turned off.  To do so, open fceux.cfg and change the value of the entry named: gNoBGFillColor

    -


    -


    -

    Save Config File

    -


    -

    Saves current settings to fceux.cfg.  Normally settings are not saved until FCEUX is closed.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free iPhone documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Menu Items & Submenus

    + +
    + +

    +

    Config Toggle Switches

    +


    +

    Explains the various toggle switch commands in the top two groups of commands under the Config Menu.

    +


    +


    +

    Hide Menu

    +


    +

    Hides the Menu commands on the FCEUX main window.  Press ESC to unhide the menu.

    +


    +


    +

    Region

    +


    +

    Allows to choose between NTSC (224p@60fps), PAL and Dendy (240p@50fps) modes. For PAL, FCEUX will detect the proper choice when loading a ROM and set the flag accordingly (based on file name, where (E) is used by GoodTools to mark European ROMs). Dendy mode (sometimes also called Hybrid) is a modification of the NTSC one, it was used in some Famiclones and supports games released for the NTSC region, slowing them down to PAL speed.

    +

    Note: you can't change this setting while a movie is being played or recorded.

    +


    +


    +

    PPU (Sub-menu)

    +


    +

    New PPU / Old PPU

    +

    As of FCEUX 2.1.2, FCEUX has a new PPU core.  The new PPU has improved accuracy and greater game compatibility than the old PPU.  However, some games may not work properly and there will be slight timing differences that would hurt movie compatibility. Also then New PPU is much slower than the Old PPU. Therefore, the old PPU is still the preferred setting.

    +

    Note: you can't change this setting while a movie is being played or recorded.

    +


    +


    +

    Enable (Sub-menu)

    +


    +

    Run in Background

    +


    +

    If enabled, FCEUX will continue to emulate when the window is not in focus.  If disabled, the emulator will pause when out of focus.

    +


    +


    +

    Background Input

    +


    +

    If enabled, FCEUX can continue to receive input while not in focus.  (Useful for playing 2 FCEUX's simultaneously)

    +


    +


    +

    Auto-savestates

    +


    +

    Enables the Auto-save feature.  If enabled, FCEUX will make periodic savestates (once per every 256 frames) as you play or record a movie.  You can right-click and select the "load last auto-save" in the context menu or press "Load Last Auto-save" hotkey to back up to the last auto-save savestate.

    +


    +


    +

    Frame Adv. - Skip Lag

    +


    +

    This feature, if enabled, will cause the frame advance key (see movie recording) to skip over lag frames.  It does this by reading the lag counter and skipping past any frames where input is not polled.  

    +


    +

    For instance, in a 30fps game (such as double dragon), frame advance will advance 2 frames instead of 1.

    +


    +


    +

    Backup Savestates

    +


    +

    Enabled by default.  This option allows for savestate & loadstate Undo (& redo).  (see context menu)

    +


    +


    +

    Compress Savestates

    +


    +

    Enabled by default.  This option compresses non movie savestates.

    +


    +


    +

    Game Genie ROM

    +


    +

    Allows the use of the game genie ROM.  You must have a game genie ROM named gg.rom (it is safe to rename a game genie.nes file to gg.rom) and it must be in the FCEUX base directory (which is the folder fceux.exe is in unless you specified a different folder in the Directory Override Menu).

    +


    +

    If enabled, FCEUX will open gg.rom first when you load a new game.  Any codes applied in the game genie screen will be applied to the game just like on a real NES.  

    +


    +

    (Remember that enabling/disabling Game Genie emulation will not take effect until a new game is loaded)

    +


    +

    Note:  Game genie codes can also be added with the Game Genie Encoder/Decoder via the Cheat Search Menu (and this method does not require a game genie ROM).

    +


    +


    +

    Auto-resume old play session

    +


    +

    If enabled, FCEUX will make a special savestate every time you close ROM, and will automatically load the savestate when you open this ROM next time, so you can continue from where you left the game. In addition, when this option is enabled, FCEUX automatically loads the last used ROM on startup.

    +


    +


    +

    Display (Sub-Menu)

    +


    +

    Input Display

    +


    +

    The input display will display 1-4 pictures of a NES controller at the bottom of the screen.  When playing/recording a movie, these controllers will display the input that is captured in the file.  

    +


    +

    When input comes from a movie file rather than then user, it is displayed in a different color (silver)

    +


    +

    The input display can also be toggled by hotkey.  The default key for toggling the Input display is the "," (comma) key.  (This can be re-mapped in the Map Hotkeys Menu).

    +


    +


    +

    Lag Counter

    +


    +

    The lag counter will increment every time to the game fails to poll for user input.  It will display in red on any frame that is currently lagging and will increment the lag counter by 1.  These situations occur when the game is lagging (too much information to process), or the game is in a screen transition state (so not polling for user input).  In  a 30fps game (such as Double Dragon 2), it will increment every other frame.

    +


    +

    The lag counter value is stored in savestates.    

    +


    +

    Displaying the lag counter can also be toggled by hotkey.  The default key is the "/" (slash) key.  (This can be re-mapped in the Map Hokeys Menu).

    +


    +


    +

    Frame Counter

    +


    +

    Toggles the display of the frame counter.  The frame counter will increment once per frame.

    +


    +

    The frame counter display can also be toggled by hotkey.  The default key is the "." (period) key.  (This can be re-mapped in the Map Hotkeys Menu).

    +


    +


    +

    Rerecord Counter

    +


    +

    Toggles the display of the number of Rerecords done when making a movie.  The Rerecord counter will increment every time you load a savestate in Recording mode.

    +


    +

    The rerecord counter display can also be toggled by hotkey.  The default key is the "M" key.  (This can be re-mapped in the Map Hotkeys Menu).

    +


    +


    +

    Movie status icon

    +


    +

    Toggles the display of "pause", "play" or "record" icons in the lower right corner.

    +


    +


    +

    FPS

    +


    +

    Toggles the display of average FPS counter in the upper right corner.

    +


    +


    +

    Graphics: BG

    +


    +

    Turning this off will turn off the backgrounds in the game.

    +


    +


    +

    Graphics: OBJ

    +


    +

    Turning this off will turn off the objects (sprites) in the game.

    +


    +

    Note: You can set the default color when the Backgrounds are turned off.  To do so, open fceux.cfg and change the value of the entry named: gNoBGFillColor 

    +


    +


    +

    Save Config File

    +


    +

    Saves current settings to fceux.cfg.  Normally settings are not saved until FCEUX is closed.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured Help generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/ToolAssistedSpeedruns.html b/web/help/ToolAssistedSpeedruns.html index 20e50935..a3099cbb 100644 --- a/web/help/ToolAssistedSpeedruns.html +++ b/web/help/ToolAssistedSpeedruns.html @@ -1,127 +1,318 @@ - - + + + + + - Tool Assisted Speedruns - - - - - - - - - - + + + + + + + + Tool Assisted Speedruns + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Tool Assisted Speedruns

    - -
    - FAQ / Guides ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Tool Assisted Speedruns

    -


    -

    What is Tool Assisted Speedrunning?

    -


    -

    A tool-assisted speedrun (commonly abbreviated TAS) is a speedrun movie or performance produced with the use of tools such as slow motion and re-recording. The basic premise of these runs is that a "tool" (such as an emulator that provides the author with features that are unavailable in regular playing) is used in order to overcome human limitations such as skill and reflex.

    -


    -

    Creating a tool-assisted speed run is the process of finding the ideal set of inputs to complete a given criterion - usually completing a game as fast as possible. No limits are imposed on the tools used for this search, but the result has to be a set of timed key-presses that, when played back on the actual console, achieves the target criterion. Traditionally, the only available tool for this was an emulator with re-recording - the ability to use savestate while recording key-presses. However, due to advances in the field, it is now often expected that frame-advance, stepping through emulation one frame at a time, is used. A tool-assisted speed run done without this technique may be criticised as "sloppy play". Before Frame Advance became common, playing in slow motion was a common technique, but Frame Advance has displaced this.

    -


    -

    In essence, Tool Assistance allows one to overcome human limitations of skill and reflex in order to push a game to its limits.  One important thing to remember is that TAS movies are not competing in terms of playing skill, nor do they claim to.

    -


    -

    For more info on Tool Assisted Speedruns:

    -

    http://tasvideos.org/

    -

    http://tasvideos.org/WhyAndHow.html

    -

    http://en.wikipedia.org/wiki/Tool-assisted_speedrun

    -


    -

    FCEUX TAS features

    -


    -

    FCEUX provides a wealth of tools and resources for creating TAS Movies for NES & FDS games.  It features the most current and cutting edge tools for optimizing movies and making the process of movie making quicker an easier.

    -


    -

    Basic Recording features:

    -

    Frame advance, Slow-downs, "bullet-proof" rerecording, TAS Editor

    -


    -

    Advanced Recording features

    -

    Input presets, Auto Hold & Auto-Fire

    -


    -

    Automated Movie Making Processes

    -

    Macros &  Multi-tracking, Lua scripting, Basic Bot,

    -


    -

    Finding RAM values:

    -

    Cheat Search, RAM Filter, Hex Editor, Debugger, NES RAM Guide

    -


    -

    RAM Monitoring:

    -

    Memory Watch, Hex Editor

    -


    -

    Movie Splicing Editing

    -

    Text based file format

    -


    -

    Integrated development system

    -

    TAS Editor

    -


    -


    -

    Movie making

    -


    -

    To get started making a Tool Assisted Movie, simply begin recording a movie (see Movie Recording).  The basic premise of TASing, however, is to use re-records to optimize the execution of a decided upon goal (usually to complete the game as fast as possible).  Re-recording is the act of replacing an already recorded part (of a movie) with something else; also called undo.

    -


    -

    In the making of emulator movies, re-recording is done by loading a savestate of earlier event in the movie and continuing playing from that point.  The emulator will update the movie file to undo everything that was cancelled by the savestate loading, and continue recording from that point.  The makers of tool-assisted speedruns use re-recording very extensively to reach perfection and to avoid mistakes.

    -

           * In single-segment non-assisted speedruns, re-recording is starting over from beginning. The recording of the failed playing is usually not preserved.    

    -

           * In multi-segment non-assisted speedruns, re-recording is starting over from the beginning of current segment. The recording of the failed segment is not preserved.    

    -

           * In tool-assisted speedruns, re-recording only undoes a small part of playing. The undone part will not be seen in the resulting movie.  A tool-assisted movie may have been re-recorded anything between 50 and 200000 times, depending on the precision of the movie and the difficulty of the game.  Often, the same small passage of the game (could be as small as fractions of second long) is attempted tens of times before continuing.

    -


    -

    For more info on making TAS movies:

    -

    http://tasvideos.org/CommonTricks.html

    -

    http://tasvideos.org/GenericTips.html

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free HTML Help documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Tool Assisted Speedruns

    + +
    + +

    +

    Tool Assisted Speedruns

    +


    +

    What is Tool Assisted Speedrunning?

    +


    +

    A tool-assisted speedrun (commonly abbreviated TAS) is a speedrun movie or performance produced with the use of tools such as slow motion and re-recording. The basic premise of these runs is that a "tool" (such as an emulator that provides the author with features that are unavailable in regular playing) is used in order to overcome human limitations such as skill and reflex.

    +


    +

    Creating a tool-assisted speed run is the process of finding the ideal set of inputs to complete a given criterion - usually completing a game as fast as possible. No limits are imposed on the tools used for this search, but the result has to be a set of timed key-presses that, when played back on the actual console, achieves the target criterion. Traditionally, the only available tool for this was an emulator with re-recording - the ability to use savestate while recording key-presses. However, due to advances in the field, it is now often expected that frame-advance, stepping through emulation one frame at a time, is used. A tool-assisted speed run done without this technique may be criticised as "sloppy play". Before Frame Advance became common, playing in slow motion was a common technique, but Frame Advance has displaced this.

    +


    +

    In essence, Tool Assistance allows one to overcome human limitations of skill and reflex in order to push a game to its limits.  One important thing to remember is that TAS movies are not competing in terms of playing skill, nor do they claim to. 

    +


    +

    For more info on Tool Assisted Speedruns:

    +

    http://tasvideos.org/

    +

    http://tasvideos.org/WhyAndHow.html

    +

    http://en.wikipedia.org/wiki/Tool-assisted_speedrun

    +


    +

    FCEUX TAS features

    +


    +

    FCEUX provides a wealth of tools and resources for creating TAS Movies for NES & FDS games.  It features the most current and cutting edge tools for optimizing movies and making the process of movie making quicker an easier.

    +


    +

    Basic Recording features:

    +

    Frame advance, Slow-downs, "bullet-proof" rerecording, TAS Editor

    +


    +

    Advanced Recording features 

    +

    Input presets, Auto Hold & Auto-Fire

    +


    +

    Automated Movie Making Processes

    +

    Macros &  Multi-tracking, Lua scripting, Basic Bot

    +


    +

    Finding RAM values:

    +

    Cheat Search, RAM Filter, Hex Editor, Debugger, NES RAM Guide

    +


    +

    RAM Monitoring:

    +

    Memory Watch, Hex Editor

    +


    +

    Movie Splicing Editing

    +

    Text based file format

    +


    +

    Integrated development system

    +

    TAS Editor

    +


    +


    +

    Movie making

    +


    +

    To get started making a Tool Assisted Movie, simply begin recording a movie (see Movie Recording).  The basic premise of TASing, however, is to use re-records to optimize the execution of a decided upon goal (usually to complete the game as fast as possible).  Re-recording is the act of replacing an already recorded part (of a movie) with something else; also called undo.

    +


    +

    In the making of emulator movies, re-recording is done by loading a savestate of earlier event in the movie and continuing playing from that point.  The emulator will update the movie file to undo everything that was cancelled by the savestate loading, and continue recording from that point.  The makers of tool-assisted speedruns use re-recording very extensively to reach perfection and to avoid mistakes.

    +

           * In single-segment non-assisted speedruns, re-recording is starting over from beginning. The recording of the failed playing is usually not preserved.    

    +

           * In multi-segment non-assisted speedruns, re-recording is starting over from the beginning of current segment. The recording of the failed segment is not preserved.    

    +

           * In tool-assisted speedruns, re-recording only undoes a small part of playing. The undone part will not be seen in the resulting movie.  A tool-assisted movie may have been re-recorded anything between 50 and 200000 times, depending on the precision of the movie and the difficulty of the game.  Often, the same small passage of the game (could be as small as fractions of second long) is attempted tens of times before continuing. 

    +


    +

    For more info on making TAS movies:

    +

    http://tasvideos.org/CommonTricks.html

    +

    http://tasvideos.org/GenericTips.html

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free PDF documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Tools2.html b/web/help/Tools2.html index b454c213..f9bff30c 100644 --- a/web/help/Tools2.html +++ b/web/help/Tools2.html @@ -1,108 +1,303 @@ - - + + + + + - Tools - - - - - - - - - - + + + + + + + + Tools + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Tools

    - -
    -
    - Previous - - Next - -
    -
    -
    -
    - -

    -

    Tools

    -


    -


    -

    Guides for the specific tools and settings under FCEUX's Tools menu.

    -


    -


    -

    Cheat Search

    -


    -

    A guide to using the cheat search tool.

    -


    -


    -

    Memory Watch

    -


    -

    A guide to using the Memory Watch tool.

    -


    -


    -

    RAM Filter

    -


    -

    A guide to using the RAM filter tool.

    -


    -


    -

    TAS Editor

    -


    -

    A new tool for making TAS movies.

    -


    -


    -

    Convert fcm

    -


    -

    A tool that will convert .fcm movie files to the .fm2 file format.

    -


    -


    -

    Auto Fire settings

    -


    -

    A guide for setting auto-fire, auto-fire offset, and alternate A and B options.

    -


    -


    -

    Text Hooker

    -


    -

    A guide for using the text hooking tool.

    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free Kindle producer

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Tools

    + +
    + +

    +

    Tools

    +


    +


    +

    Guides for the specific tools and settings under FCEUX's Tools menu.

    +


    +


    +

    Cheat Search

    +


    +

    A guide to using the cheat search tool.

    +


    +


    +

    Memory Watch

    +


    +

    A guide to using the Memory Watch tool.

    +


    +


    +

    RAM Filter

    +


    +

    A guide to using the RAM filter tool.

    +


    +


    +

    TAS Editor

    +


    +

    A new tool for making TAS movies.

    +


    +


    +

    Convert fcm

    +


    +

    A tool that will convert .fcm movie files to the .fm2 file format.

    +


    +


    +

    Auto Fire settings

    +


    +

    A guide for setting auto-fire, auto-fire offset, and alternate A and B options.

    +


    +


    +

    Text Hooker

    +


    +

    A guide for using the text hooking tool.

    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring tool

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/TraceLogger.html b/web/help/TraceLogger.html index dad1b9fa..ca3eaf27 100644 --- a/web/help/TraceLogger.html +++ b/web/help/TraceLogger.html @@ -1,104 +1,295 @@ - - + + + + + - Trace Logger - - - - - - - - - - + + + + + + + + Trace Logger + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Trace Logger

    - -
    - Debug ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Trace Logger

    + +
    +

    -

    Trace Logger

    -


    -

    Introduction

    -


    -

    The Trace Logger logs every executed instruction and every byte of ROM accessed to the window, or a file if you prefer.  Logging to a file is useful if you just want to dump everything that was executed and then search through it later. Logging to the window is useful when you wish to see the instructions that were executed prior to a breakpoint being hit. Both options produce the same data, but the desire to keep that data for a short amount of time or a long amount of time will determine which is best for you.

    -


    -


    -

    Using the Trace Logger

    -


    -

    The Trace Logger is a very nice feature which logs each instruction as it is being executed. If you choose to log to the window, you can set how many lines it will retain before discarding old lines. The higher this setting, the more RAM it will consume, but the more lines you'll have available to work with.

    -


    -

    Normally, when logging to window, the Tracer only shows the log if you pause emulator by Pause or Frame Advance hotkey, or by snapping the Debugger. But there is the option to automatically update the log window while the game runs - this is normally useless, unless it is working with the Code/Data Logger to only show newly-executed instructions.

    -


    -

    When the code is logged to window, you can browse it using mouse wheel or vertical scrollbar. Double-clicking any address in this window will bring the Debugger window at this address. Right-clicking any address allows you to label the address (see Symbolic Debug).

    -


    -

    You can customize the format of text output in the log:

    -
      -
    • whether to log registers state for every instruction, and where to put the data in every text line (to the left or to the right from the code disassembly)
    • -
    • whether to log current frame number, cycles counter, instructions counter
    • -
    • whether to log emulator messages (such as "State 1 loaded")
    • -
    • whether to log Breakpoint Hits (when you use debugger while tracing)
    • -
    • whether to apply Symbolic Debug names when logging. See Debugger section for details
    • +

      Trace Logger

      +


      +

      Introduction

      +


      +

      The Trace Logger logs every executed instruction and every byte of ROM accessed to the window, or a file if you prefer.  Logging to a file is useful if you just want to dump everything that was executed and then search through it later. Logging to the window is useful when you wish to see the instructions that were executed prior to a breakpoint being hit. Both options produce the same data, but the desire to keep that data for a short amount of time or a long amount of time will determine which is best for you.

      +


      +


      +

      Using the Trace Logger

      +


      +

      The Trace Logger is a very nice feature which logs each instruction as it is being executed. If you choose to log to the window, you can set how many lines it will retain before discarding old lines. The higher this setting, the more RAM it will consume, but the more lines you'll have available to work with.

      +


      +

      Normally, when logging to window, the Tracer only shows the log if you pause emulator by Pause or Frame Advance hotkey, or by snapping the Debugger. But there is the option to automatically update the log window while the game runs - this is normally useless, unless it is working with the Code/Data Logger to only show newly-executed instructions.

      +


      +

      When the code is logged to window, you can browse it using mouse wheel or vertical scrollbar. Double-clicking any address in this window will bring the Debugger window at this address. Right-clicking any address allows you to label the address (see Symbolic Debug).

      +


      +

      You can customize the format of text output in the log:

      +
        +
      • whether to log registers state for every instruction, and where to put the data in every text line (to the left or to the right from the code disassembly)
      • +
      • whether to log current frame number, cycles counter, instructions counter
      • +
      • whether to log emulator messages (such as "State 1 loaded")
      • +
      • whether to log Breakpoint Hits (when you use debugger while tracing)
      • +
      • whether to apply Symbolic Debug names when logging. See Debugger section for details
      -


      -

      For nice visualization of JSRs nesting you can use Stack Pointer for lines tabbing. Since NES games mostly use stack for subroutine calls (and rarely store variables in the stack), this option will likely produce a more readable disassembly. With this option you may also want to put registers data to the left from disassembly text, so they won't be tabbed.

      -


      -

      The Trace Logger has extra options which work with the Code/Data Logger so that Tracer only shows instructions executed for the first time, or those which access data for the first time. This can be quite useful for finding certain key routines or finding otherwise impossible-to-find data in almost any game.  The best way to use this feature is in conjunction with the option to automatically update the window while logging. Then, as you play the game, you can watch new results appear at once. If you're searching for something specific, first try to get everything (EXCEPT what you're looking for) to execute, then watch closely as what you're looking for executes for the first time.

      -


      -

      There are two ways to filter what the Code/Data Logger shows. The first filter lets you log only newly-executed code (so that an instruction is not logged again if it has already been logged). The second logs only instructions when they access data which hadn't been accessed before. Note that both filters can be used at once (which shows bytes that pass either filter).

      -


      -


      -


      -


      +


      +

      For nice visualization of JSRs nesting you can use Stack Pointer for lines tabbing. Since NES games mostly use stack for subroutine calls (and rarely store variables in the stack), this option will likely produce a more readable disassembly. With this option you may also want to put registers data to the left from disassembly text, so they won't be tabbed.

      +


      +

      The Trace Logger has extra options which work with the Code/Data Logger so that Tracer only shows instructions executed for the first time, or those which access data for the first time. This can be quite useful for finding certain key routines or finding otherwise impossible-to-find data in almost any game.  The best way to use this feature is in conjunction with the option to automatically update the window while logging. Then, as you play the game, you can watch new results appear at once. If you're searching for something specific, first try to get everything (EXCEPT what you're looking for) to execute, then watch closely as what you're looking for executes for the first time.

      +


      +

      There are two ways to filter what the Code/Data Logger shows. The first filter lets you log only newly-executed code (so that an instruction is not logged again if it has already been logged). The second logs only instructions when they access data which hadn't been accessed before. Note that both filters can be used at once (which shows bytes that pass either filter).

      +


      +


      +


      +


      -

      Created with the Personal Edition of HelpNDoc: Write eBooks for the Kindle

      -
    - - + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + - -
    - - diff --git a/web/help/Troubleshooting.html b/web/help/Troubleshooting.html index a1fd89f3..7b64fecb 100644 --- a/web/help/Troubleshooting.html +++ b/web/help/Troubleshooting.html @@ -1,128 +1,319 @@ - - + + + + + - Troubleshooting - - - - - - - - - - + + + + + + + + Troubleshooting + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Troubleshooting

    - -
    - FAQ / Guides ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Troubleshooting

    -


    -


    -

    This section describes potential problems/question that could arise when using FCEUX.

    -


    -

    Slow emulation / Sound crackle

    -


    -

    FCEUX may not run well on slow CPUs.

    -

    Ensure that you're using the Old PPU, because the New PPU engine is very slow. Check Config -> PPU -> Old PPU.

    -


    -


    -

    Sound crackle

    -


    -

    If you enable hardware acceleration and Vsync (Wait for VBlank), and your monitor has a framerate different from 60FPS, you may experience minor sound cracle. This is a known issue and will probably be resolved in a future release.

    -


    -


    -

    Emulated picture is blurred (similar to the bilinear filter)

    -


    -

    Try choosing different options in the "DirectDraw" list in the Video config dialog.

    -


    -


    -

    Slow savestates when recording movies

    -


    -

    On slower computers, savestates can be slow with long movies.  A small speedup can be done by disabling Config -> Enable -> Backup savestates.

    -


    -


    -

    The colors in game X do not look right!

    -


    -

    There's no such thing as a universally right palette for NES games.

    -

    FCEUX uses the color palette of the old FCEU / FCEUXD branches. Also FCEUX comes pre-packaged with several additional color palettes. For more information see Palette config and Palette options.

    -


    -


    -

    I converted a .fcm file to .fm2, but the .fm2 desyncs

    -


    -

    Depending on what version of FCEU / Game your .fcm was made, there maybe a number of sync issues. In addition, the .fm2 conversion tool has had some issues on certain operating systems including Vista and Mac. you can try using an external program for movie conversion.

    -


    -


    -

    Can't find FDS Bios image when I attempt to load a .fds game!

    -


    -

    FCEUX requires the FDS Bios to be named disksys.rom. It must be located in the root directory (where fceux.exe is stored) or in the folder of the FDS Directory override (see Directory overrides).

    -


    -

    In addition, there are some bad versions of disksys.rom. The one FDS requires is 8192 bytes in size.

    -


    -


    -

    How can I use Netplay / Where can I get FCEU Server?

    -


    -

    Currently, the Windows version of FCEUX is barely compatible with the FCEU-server code. This is a known issue and will probably be resolved in a future release.

    -


    -


    -

    I have a Game Genie rom, how can I use it with FCEUX?

    -


    -

    While FCEUX has a Game Genie code converter, you can also use game genie codes with an old-school Game Genie ROM.  It must be named gg.rom and must be placed in the root directory (where fceux.exe is stored). You must also check Config->Enable->Game Genie ROM in the main menu. Then the Game Genie ROM will activate every time you open a ROM, so you can enter GG codes letter-by-letter like they did in the past.

    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Produce electronic books easily

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Troubleshooting

    + +
    + +

    +

    Troubleshooting

    +


    +


    +

    This section describes potential problems/question that could arise when using FCEUX.

    +


    +

    Slow emulation / Sound crackle

    +


    +

    FCEUX may not run well on slow CPUs.

    +

    Ensure that you're using the Old PPU, because the New PPU engine is very slow. Check Config -> PPU -> Old PPU.

    +


    +


    +

    Sound crackle

    +


    +

    If you enable hardware acceleration and Vsync (Wait for VBlank), and your monitor has a framerate different from 60FPS, you may experience minor sound cracle. This is a known issue and will probably be resolved in a future release.

    +


    +


    +

    Emulated picture is blurred (similar to the bilinear filter)

    +


    +

    Try choosing different options in the "DirectDraw" list in the Video config dialog.

    +


    +


    +

    Slow savestates when recording movies

    +


    +

    On slower computers, savestates can be slow with long movies.  A small speedup can be done by disabling Config -> Enable -> Backup savestates.

    +


    +


    +

    The colors in game X do not look right!

    +


    +

    There's no such thing as a universally right palette for NES games.

    +

    FCEUX uses the color palette of the old FCEU / FCEUXD branches. Also FCEUX comes pre-packaged with several additional color palettes. For more information see Palette config and Palette options.

    +


    +


    +

    I converted a .fcm file to .fm2, but the .fm2 desyncs

    +


    +

    Depending on what version of FCEU / Game your .fcm was made, there maybe a number of sync issues. In addition, the .fm2 conversion tool has had some issues on certain operating systems including Vista and Mac. you can try using an external program for movie conversion.

    +


    +


    +

    Can't find FDS Bios image when I attempt to load a .fds game!

    +


    +

    FCEUX requires the FDS Bios to be named disksys.rom. It must be located in the root directory (where fceux.exe is stored) or in the folder of the FDS Directory override (see Directory overrides).

    +


    +

    In addition, there are some bad versions of disksys.rom. The one FDS requires is 8192 bytes in size.

    +


    +


    +

    How can I use Netplay / Where can I get FCEU Server?

    +


    +

    Currently, the Windows version of FCEUX is barely compatible with the FCEU-server code. This is a known issue and will probably be resolved in a future release.

    +


    +


    +

    I have a Game Genie rom, how can I use it with FCEUX?

    +


    +

    While FCEUX has a Game Genie code converter, you can also use game genie codes with an old-school Game Genie ROM.  It must be named gg.rom and must be placed in the root directory (where fceux.exe is stored). You must also check Config->Enable->Game Genie ROM in the main menu. Then the Game Genie ROM will activate every time you open a ROM, so you can enter GG codes letter-by-letter like they did in the past.

    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create Web Help sites

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/Video.html b/web/help/Video.html index 79eaa41e..864ede69 100644 --- a/web/help/Video.html +++ b/web/help/Video.html @@ -1,168 +1,359 @@ - - + + + + + - Video - - - - - - - - - - + + + + + + + + Video + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Video

    - -
    - Config ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    Video Configuration

    -


    -

    This window sets various graphics emulation options.

    -


    -


    -

    Full Screen Settings

    -


    -

    Full Screen

    -

    Check this checkbox to enter full screen mode.

    -

    Alternatively, you can use a hotkey (Alt+Enter by default) or a double-click (if the "Switch fullscreen by double-click" option is enabled in GUI options).

    -


    -

    Enter full screen mode after game is loaded

    -

    If checked, FCEUX will enter full screen mode when a game is loaded.

    -


    -

    Hide mouse cursor

    -

    If checked, FCEUX will hide mouse cursor when in full screen mode.

    -


    -

    Mode

    -

    Sets the image size during full screen mode. By default this is automatically set to match current display resolution. You can change the resolution by entering different values.

    -


    -

    Special Scaler

    -

    Within this box is eight options: hq2x, Scale2x, NTSC 2x, hq3x, Scale3x, Prescale2x, Prescale3x, and Prescale4x.

    -

    - Scale2x/3x just attempts to render out the corners of the pixels to make them look a bit rounder. "2x" means two times bigger than 1x1 and "3x" means three times bigger than 1x1.

    -

    - Hq2x/3x does a much better job than scale2x/3x by smearing the pixels together with a slight blur. However, Hq2x/3x requires a faster computer for decent speed (at least 1 GHz and above). "2x" means two times bigger than 1x1 and "3x" means three times bigger than 1x1.

    -

    - NTSC 2x simulates visual artifacts that are produced by analog (composite) video sygnal that the real console generates.

    -

    - Prescale2x/3x/4x upscales the source picture using a pixel based (nearest neighbor) algorithm, that allows to change the level of interpolation, applied when using hardware acceleration.

    -


    -

    Sync Method

    -

    If the emulator is running poorly, trying out these sync options can help make it run smoother (fix image tearing).

    -


    -

    DirectDraw

    -

    If the image is blurry, here you can disable hardware acceleration.

    -


    -


    -

    Windowed Settings

    -


    -

    Size Multiplier

    -

    Takes the image size and multiples the X and Y by a specific amount. You can also change these by clicking and dragging the border of the FCEUX window.

    -


    -

    Force Integral Scaling Factors

    -

    If checked, FCEUX window can only be stretched by even amounts (1x, 2x, 3x, etc.).  If unchecked, it can be stretched by any amount.

    -

    When you are resizing FCEUX window by dragging its borders, you can hold Shift to temporarily invert this option.

    -


    -

    Force Aspect Ratio Correction

    -

    Checking this will only allow the correct aspect ratio while resizing the window.

    -


    -

    Special Scaler

    -

    Within this box is eight options: hq2x, Scale2x, NTSC 2x, hq3x, Scale3x, Prescale2x, Prescale3x, and Prescale4x.

    -


    -

    Sync Method

    -

    If the emulator is running poorly, trying out these sync options can help make it run smoother (fix image tearing).

    -


    -

    DirectDraw

    -

    If Vsync doesn't work, here you can enable hardware acceleration.

    -

           

    -


    -
    -


    -

    The following options affect both Fullscreen and windowed mode.

    -


    -


    -

    Aspect ratio

    -


    -

    Best Fit

    -

    This is checked by default, so FCEUX will automatically maintain correct aspect ratio for any size of the window. If you uncheck this, the image will be stretched to fill the whole window area.

    -


    -

    BG color

    -

    When window size is wider or taller than image size, empty areas of the window are colored black by default. Checking this option will color these areas according to current "background" color of NES palette.

    -


    -

    Square pixels

    -

    This is checked by default, so FCEUX will limit the max size of the image to make all pixels share the same width/height. If you uncheck this, the image will be stretched to fill the whole width or height of the window area.

    -


    -

    TV Aspect

    -

    Check this if you want to change the image aspect ratio (e.g. to 4:3). You can enter different values in adjacent text fields.

    -


    -


    -

    Drawing Area

    -


    -

    First Line

    -

    Sets the first scan line for NTSC and PAL Modes. This should be left on the default of 8 for NTSC and 0 for PAL.

    -


    -

    Last Line

    -

    Sets the last scan line for NTSC and PAL Modes. This should be left on the default of 231 for NTSC and 239 for PAL.

    -


    -

    Clip left and right sides (8 px on each)

    -

    If enabled, 8 pixels from each side of the windows will be removed. Some NES games show grapical artifacts on the sides of screen when scrolling (on real hardware too!), so you may hide those artifacts by checking the option.

    -


    -


    -

    Emulation

    -


    -

    Allow more than 8 sprites per scanline

    -

    On real NES hardware, more than 8 sprites on the screen causes flickering. Enabling this option can reduce flickering by allowing more sprites to be visible at once. But if you prefer to stay "true" to NES hardware, this should not be checked, because some games rely on the limitation.

    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Create iPhone web-based documentation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Video

    + +
    + +

    +

    Video Configuration

    +


    +

    This window sets various graphics emulation options.

    +


    +


    +

    Full Screen Settings

    +


    +

    Full Screen

    +

    Check this checkbox to enter full screen mode.

    +

    Alternatively, you can use a hotkey (Alt+Enter by default) or a double-click (if the "Switch fullscreen by double-click" option is enabled in GUI options).

    +


    +

    Enter full screen mode after game is loaded

    +

    If checked, FCEUX will enter full screen mode when a game is loaded.

    +


    +

    Hide mouse cursor

    +

    If checked, FCEUX will hide mouse cursor when in full screen mode.

    +


    +

    Mode

    +

    Sets the image size during full screen mode. By default this is automatically set to match current display resolution. You can change the resolution by entering different values.

    +


    +

    Special Scaler

    +

    Within this box is eight options: hq2x, Scale2x, NTSC 2x, hq3x, Scale3x, Prescale2x, Prescale3x, and Prescale4x.

    +

    - Scale2x/3x just attempts to render out the corners of the pixels to make them look a bit rounder. "2x" means two times bigger than 1x1 and "3x" means three times bigger than 1x1.

    +

    - Hq2x/3x does a much better job than scale2x/3x by smearing the pixels together with a slight blur. However, Hq2x/3x requires a faster computer for decent speed (at least 1 GHz and above). "2x" means two times bigger than 1x1 and "3x" means three times bigger than 1x1.

    +

    - NTSC 2x simulates visual artifacts that are produced by analog (composite) video sygnal that the real console generates.

    +

    - Prescale2x/3x/4x upscales the source picture using a pixel based (nearest neighbor) algorithm, that allows to change the level of interpolation, applied when using hardware acceleration.

    +


    +

    Sync Method

    +

    If the emulator is running poorly, trying out these sync options can help make it run smoother (fix image tearing).

    +


    +

    DirectDraw

    +

    If the image is blurry, here you can disable hardware acceleration.

    +


    +


    +

    Windowed Settings

    +


    +

    Size Multiplier

    +

    Takes the image size and multiples the X and Y by a specific amount. You can also change these by clicking and dragging the border of the FCEUX window.

    +


    +

    Force Integral Scaling Factors

    +

    If checked, FCEUX window can only be stretched by even amounts (1x, 2x, 3x, etc.).  If unchecked, it can be stretched by any amount.

    +

    When you are resizing FCEUX window by dragging its borders, you can hold Shift to temporarily invert this option.

    +


    +

    Force Aspect Ratio Correction

    +

    Checking this will only allow the correct aspect ratio while resizing the window.

    +


    +

    Special Scaler

    +

    Within this box is eight options: hq2x, Scale2x, NTSC 2x, hq3x, Scale3x, Prescale2x, Prescale3x, and Prescale4x.

    +


    +

    Sync Method

    +

    If the emulator is running poorly, trying out these sync options can help make it run smoother (fix image tearing).

    +


    +

    DirectDraw

    +

    If Vsync doesn't work, here you can enable hardware acceleration.

    +

             

    +


    +
    +


    +

    The following options affect both Fullscreen and windowed mode.

    +


    +


    +

    Aspect ratio

    +


    +

    Best Fit

    +

    This is checked by default, so FCEUX will automatically maintain correct aspect ratio for any size of the window. If you uncheck this, the image will be stretched to fill the whole window area.

    +


    +

    BG color

    +

    When window size is wider or taller than image size, empty areas of the window are colored black by default. Checking this option will color these areas according to current "background" color of NES palette.

    +


    +

    Square pixels

    +

    This is checked by default, so FCEUX will limit the max size of the image to make all pixels share the same width/height. If you uncheck this, the image will be stretched to fill the whole width or height of the window area.

    +


    +

    TV Aspect

    +

    Check this if you want to change the image aspect ratio (e.g. to 4:3). You can enter different values in adjacent text fields.

    +


    +


    +

    Drawing Area

    +


    +

    First Line

    +

    Sets the first scan line for NTSC and PAL Modes. This should be left on the default of 8 for NTSC and 0 for PAL.

    +


    +

    Last Line

    +

    Sets the last scan line for NTSC and PAL Modes. This should be left on the default of 231 for NTSC and 239 for PAL.

    +


    +

    Clip left and right sides (8 px on each)

    +

    If enabled, 8 pixels from each side of the windows will be removed. Some NES games show grapical artifacts on the sides of screen when scrolling (on real hardware too!), so you may hide those artifacts by checking the option.

    +


    +


    +

    Emulation

    +


    +

    Allow more than 8 sprites per scanline

    +

    On real NES hardware, more than 8 sprites on the screen causes flickering. Enabling this option can reduce flickering by allowing more sprites to be visible at once. But if you prefer to stay "true" to NES hardware, this should not be checked, because some games rely on the limitation.

    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Write eBooks for the Kindle

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew200.html b/web/help/WhatsNew200.html index dbb322bf..5e944292 100644 --- a/web/help/WhatsNew200.html +++ b/web/help/WhatsNew200.html @@ -1,178 +1,369 @@ - - + + + + + - What's New? 2.0.0 - - - - - - - - - - + + + + + + + + What's New? 2.0.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.0.0

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.0.0

    -

    Released August 02, 2008

    -


    -

    FCEUX has all the latest tools, enhancements, and features from FCEU 0.28 rerecording and FCEUXDSP 1.07  In addition, it has many new tools, bug fixes, and enhancements not seen in previous branches.

    -


    -


    -

    General

    -


    -

    -A detailed Help Menu!  No longer are you aimlessly searching the internet for long lost info on FCEU's options!

    -

    -Numerous Dialog box reformats.

    -

    -FCEU remembers its last screen (x,y) position.

    -

    -Increased command line options

    -

    -More options under the Directory Override Menu

    -

    -A Turbo Toggle option (turbo now can be toggled on rather than having to hold the key down)

    -

    -More hotkey assignable options in the Map Hotkeys Menu.

    -

    -A lag counter

    -

    -Autofire uses the lag counter (so it will skip over lag frames)

    -


    -


    -

    Movie support

    -


    -

    Overhauls in both the movie and savestate file formats.

    -


    -

    .fm2 File format

    -


    -

    The .fcm file format has been overhauled into a new .fm2 format.  Changes include:

    -


    -

    -Uncompressed and text based format.  Movie editing can be done simply in a text editor.

    -

    -Recording from soft reset option removed.

    -

    -Recording from start (hard reset) no longer has an empty savestate at the beginning.

    -

    -GUID inserted into movies for better savestate/loadstate error handling.

    -

    -Rather than an Author field, it has a full metadata menu where an author can put any info needed.

    -

    -A tool to convert .fcm files to .fm2 files.

    -

    -More specific info on .fm2 files in the .fm2 documentation.

    -


    -

    Savestate/Loadstate

    -


    -

    -New savestate file format.  NOTE:  Savestates from previous FCEU versions CAN NOT be used in FCEUX.

    -

    -Fully functional error handling (savestates from other movies cannot be loaded).

    -

    -Read-only toggling related bugs fixed.

    -

    -Savestate filenames include the name of the movie (if a movie was playing when made).  This prevents loading wrong savestates. (This also means that savestate 0 is different when a movie is playing and when it is not).

    -


    -

    7z Archive Support

    -


    -

    -ROMs in any 7z compatible compressed format can be opened directly.

    -

    -If more than one valid ROM exists in an archive file, then a dialog box will open with a list of available ROM choices.

    -


    -

    TAS Edit

    -


    -

    -A brand new powerful movie making tool that revolutionizes the way TAS movies are made.  See TAS edit.

    -


    -


    -

    New Tools

    -


    -

    TAS Edit - a revolutionary new way of making TAS movies.

    -


    -

    Input Presets - a system for quickly toggling different input configurations.

    -


    -


    -

    Tool Upgrades

    -


    -

    Numerous enhancements have been made to various Tools/Options.

    -


    -

    Memory Watch

    -


    -

    -Resource management optimized so that memory watch now uses a minimal amount of CPU

    -

    -FCEUX remembers memory watch's last screen position (x,y)

    -

    -Tab-able Edit boxes

    -

    -Edit boxes now can hold 64 characters

    -

    -A Menu bar for all Memory watch functions

    -

    -Both "Save as" and "Save" options

    -

    -Hotkeys for New, Open, Save, Save As and Close

    -

    -A recent files Menu

    -

    -A "load on startup" option. If checked, memory watch will open automatically when FCEUX is opened

    -

    -A "load last file" option.  If checked, memory watch will load the last file used

    -


    -

    Cheat Search

    -


    -

    -Now has a minimize button

    -

    -Cheat Search Menu from FCEUXDSP (a major overhaul compared to other FCEU branches)

    -

    -Possibilities update while playing/frame advancing a game

    -

    -Double clicking a value in the possibilities window sends the value directly to Memory Watch

    -


    -

    RAM Filter

    -


    -

    -Double clicking a value in the possibilities window sends the value directly to Memory Watch

    -


    -


    -

    Lua Scripting

    -


    -

    -Uses the latest features of Lua Scripting from FCEU 0.28

    -

    -Many enhancements and new commands including dialog creation commands!  Now scripts can create their own dialog's and GUI features.

    -


    -

    Lua Basic Bot

    -


    -

    -Basicbot removed (from the rerecording version of FCE Ultra).  In its place is lua bot.

    -


    -


    -

    AVI Recording

    -


    -

    -"Movie playback stopped" message recorded in AVI by default

    -

    -Turbo Toggle Hotkey.  (Allows turbo to be left on for a faster AVI capture).

    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Help generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.0.0

    + +
    + +

    +

    What's New? 2.0.0

    +

    Released August 02, 2008

    +


    +

    FCEUX has all the latest tools, enhancements, and features from FCEU 0.28 rerecording and FCEUXDSP 1.07  In addition, it has many new tools, bug fixes, and enhancements not seen in previous branches.

    +


    +


    +

    General

    +


    +

    -A detailed Help Menu!  No longer are you aimlessly searching the internet for long lost info on FCEU's options!

    +

    -Numerous Dialog box reformats.

    +

    -FCEU remembers its last screen (x,y) position.

    +

    -Increased command line options

    +

    -More options under the Directory Override Menu

    +

    -A Turbo Toggle option (turbo now can be toggled on rather than having to hold the key down)

    +

    -More hotkey assignable options in the Map Hotkeys Menu.

    +

    -A lag counter

    +

    -Autofire uses the lag counter (so it will skip over lag frames)

    +


    +


    +

    Movie support

    +


    +

    Overhauls in both the movie and savestate file formats.

    +


    +

    .fm2 File format

    +


    +

    The .fcm file format has been overhauled into a new .fm2 format.  Changes include:

    +


    +

    -Uncompressed and text based format.  Movie editing can be done simply in a text editor.

    +

    -Recording from soft reset option removed.

    +

    -Recording from start (hard reset) no longer has an empty savestate at the beginning.

    +

    -GUID inserted into movies for better savestate/loadstate error handling.

    +

    -Rather than an Author field, it has a full metadata menu where an author can put any info needed.

    +

    -A tool to convert .fcm files to .fm2 files.

    +

    -More specific info on .fm2 files in the .fm2 documentation

    +


    +

    Savestate/Loadstate

    +


    +

    -New savestate file format.  NOTE:  Savestates from previous FCEU versions CAN NOT be used in FCEUX.

    +

    -Fully functional error handling (savestates from other movies cannot be loaded).

    +

    -Read-only toggling related bugs fixed.

    +

    -Savestate filenames include the name of the movie (if a movie was playing when made).  This prevents loading wrong savestates. (This also means that savestate 0 is different when a movie is playing and when it is not).

    +


    +

    7z Archive Support

    +


    +

    -ROMs in any 7z compatible compressed format can be opened directly.

    +

    -If more than one valid ROM exists in an archive file, then a dialog box will open with a list of available ROM choices.

    +


    +

    TAS Edit

    +


    +

    -A brand new powerful movie making tool that revolutionizes the way TAS movies are made.  See TAS edit.

    +


    +


    +

    New Tools

    +


    +

    TAS Edit - a revolutionary new way of making TAS movies.

    +


    +

    Input Presets - a system for quickly toggling different input configurations.

    +


    +


    +

    Tool Upgrades

    +


    +

    Numerous enhancements have been made to various Tools/Options.

    +


    +

    Memory Watch

    +


    +

    -Resource management optimized so that memory watch now uses a minimal amount of CPU

    +

    -FCEUX remembers memory watch's last screen position (x,y)

    +

    -Tab-able Edit boxes

    +

    -Edit boxes now can hold 64 characters

    +

    -A Menu bar for all Memory watch functions

    +

    -Both "Save as" and "Save" options

    +

    -Hotkeys for New, Open, Save, Save As and Close

    +

    -A recent files Menu

    +

    -A "load on startup" option. If checked, memory watch will open automatically when FCEUX is opened

    +

    -A "load last file" option.  If checked, memory watch will load the last file used

    +


    +

    Cheat Search

    +


    +

    -Now has a minimize button

    +

    -Cheat Search Menu from FCEUXDSP (a major overhaul compared to other FCEU branches)

    +

    -Possibilities update while playing/frame advancing a game

    +

    -Double clicking a value in the possibilities window sends the value directly to Memory Watch

    +


    +

    RAM Filter

    +


    +

    -Double clicking a value in the possibilities window sends the value directly to Memory Watch

    +


    +


    +

    Lua Scripting

    +


    +

    -Uses the latest features of Lua Scripting from FCEU 0.28

    +

    -Many enhancements and new commands including dialog creation commands!  Now scripts can create their own dialog's and GUI features.

    +


    +

    Lua Basic Bot

    +


    +

    -Basicbot removed (from the rerecording version of FCE Ultra).  In its place is lua bot.

    +


    +


    +

    AVI Recording

    +


    +

    -"Movie playback stopped" message recorded in AVI by default

    +

    -Turbo Toggle Hotkey.  (Allows turbo to be left on for a faster AVI capture).

    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew201.html b/web/help/WhatsNew201.html index 76c46871..13b1c696 100644 --- a/web/help/WhatsNew201.html +++ b/web/help/WhatsNew201.html @@ -1,86 +1,277 @@ - - + + + + + - What's New? 2.0.1 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.0.1 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.0.1 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.0.1

    -

    Released August 04, 2008

    -


    -

    This was a maintenance release that fixes a few oversights in the 2.0.0 release.

    -


    -

    * reorganize display toggle options in the menu

    -

    * autofire fix (wasn't initializing to any autofire pattern from a fresh .cfg)

    -

    * homebrew mmc5 games now have 64KB of exwram instead of only 8KB

    -

    * fix crash related to player2 in lua scripts

    -

    * fixed player2 in lua scripts

    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured Kindle eBooks generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.0.1 (changelog)

    + +
    + +

    +

    What's New? 2.0.1

    +

    Released August 04, 2008

    +


    +

    This was a maintenance release that fixes a few oversights in the 2.0.0 release.

    +


    +

    * reorganize display toggle options in the menu

    +

    * autofire fix (wasn't initializing to any autofire pattern from a fresh .cfg)

    +

    * homebrew mmc5 games now have 64KB of exwram instead of only 8KB

    +

    * fix crash related to player2 in lua scripts

    +

    * fixed player2 in lua scripts

    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free Kindle producer

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew202.html b/web/help/WhatsNew202.html index db73a65d..9912c93a 100644 --- a/web/help/WhatsNew202.html +++ b/web/help/WhatsNew202.html @@ -1,166 +1,357 @@ - - + + + + + - What's New? 2.0.2 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.0.2 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.0.2 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.0.2

    -

    Released August 14, 2008

    -


    -

    This release includes a large number of bug fixes, feature enhancements, and new features.

    -


    -


    -

    Fixed Crashing Bugs

    -


    -

    * restore savestate error recovery functionality.  Will prevent crashes after savestate error messages

    -

    * Fixed - Low speeds (1%) crash FCEUX

    -

    * fixes bug where palflag 1 in .fm2 files crashes fceux

    -

    * FCEUX no longer crashes when attempting to open a non movie file

    -

    * Buffer overflow (change vsprintf to vsnprintf)

    -


    -

    Minor Bug fixes

    -


    -

    * SRAM not wiped on power cycle (during movies)

    -

    * Moviefilenames without extension now automatically get fm2

    -

    * auto-fill .fcs extension in save state as dialog

    -

    * FCM>FM2 converter releases file handle

    -

    * fix a new bug in windows build which caused fourscore emulation to fail in some cases

    -

    * Player 3 no longer inputs when not used

    -

    * prints a special message when trying to open an FCM reminding user to convert.

    -

    * fixes bug where Avi recording with no sound messes up the format

    -

    * Fixed bug where Convert .fcm didn't do special characters

    -

    * fixed the (null) in the default lua directory listing

    -

    * Ctrl+X now works in the memory watch dialog

    -

    * Dialog window positions won't "disappear" (-32000 protection on all dialogs that remember x,y)

    -

    * fixed View Slots bug - will now always show the used slots

    -


    -

    * added shift+L as default hotkey for reload lua script

    -

    * added input display to the FCEUX main menu

    -

    * change config filename from fceu98.cfg to fceux.cfg

    -


    -

    New Features

    -


    -

    * restore IPS patching capability which was lost when archive support was added

    -

    * restore ungzipping (and unzipping in sdl) capability which was lost when archive support was added

    -

    * re-enable an "author" text field in the record movie dialog

    -

    * re-enable support for old-format savestates. (Note: can not be loaded into a movie!)

    -


    -

    * Added new toggle - frame adv. - lag skip (menu item + hotkey mapping + saved in config), will cause frame adv. to skip frames where input is not read

    -

    * Added support for loading movies from archives (just like ROM files).  Note: Movies loaded from an archive file will be read-only.

    -

    * movie replay dialog displays fractions of a second on movie length

    -


    -

    * Savestates now save the Lagcounter information.

    -

    * added a mute turbo option in sound config

    -


    -

    * add an option to pick a constant color to draw in place of BG when BG rendering is disabled (look for gNoBGFillColor in config).

    -


    -

    Mappers

    -


    -

    * remove cnrom chr rom size limit for homebrew roms

    -

    * mmc5 - 64KB WRAM games now work correctly

    -

    * mmc5 - use of chr A regs for BG in sprite 8x8 mode is fixed

    -

    * upgrade to cah4e3's latest mapper 163&164 code to fix a crash in a game

    -


    -


    -

    Debugging Tools

    -


    -

    * Debugger - restore snap functionality

    -

    * Debugger - add FORBID breakpoints - regions which block breakpoints from happening if they contain the PC

    -

    * Debugger - debugger window is now resizeable

    -

    * nametable viewer  will display correct NT,CHR,ATTR data in more cases (specifically, including some exotic mmc5 cases).

    -


    -

    Lua

    -


    -

    * Savestates remember Lua painting

    -

    * add memory.readbyterange to emulua

    -


    -

    SDL only

    -


    -

    * SDL: fixed --input(1-4) options.  input1 and 2 are regular inputs, input3 and 4 are famicom expansion inputs

    -

    * SDL fix configfile woes. configfile now goes to ~/.fceux/fceux.cfg

    -

    * SDL: fixed segfault when opening .fcm files

    -

    * SDL: Saner sound defaults for less choppy sound

    -

    * SDL: "--special" option fixed for special video scaling filters

    -

    * SDL: cleaned up the SConsruct

    -

    * SDL: fixed issue where fceu would lock up when file dialogs were opened during fullscreen

    -

    * SDL: fixed bug where fceux would close when file dialogs were closed

    -

    * SDL: File open dialog is now used to movie playback

    -

    * SDL: File open wrapper now takes a titlebar argument

    -

    * SDL: Cleanup of usage

    -

    * SDL: rename options --no8lim -> --nospritelim and --color -> --ntsccolor

    -

    * SDL: Screenshots now always prepend the game name.

    -

    * SDL: Changed default A/B from numpad 2 and 3 to j and k.

    -

    * SDL: Enable frameskip by default

    -

    * SDL: Fixed a bug that would crash fceux if the emulation speed was overincreased

    -

    * SDL: New default hotkeys to more closely match win32 defaults

    -

    * SDL: Added lua script loading hotkey (f3).  Non win32 SDL requires zenity for this to function.

    -

    * SDL: Build script cleanup; also added option for DEBUG builds.

    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Produce Kindle eBooks easily

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.0.2 (changelog)

    + +
    + +

    +

    What's New? 2.0.2

    +

    Released August 14, 2008

    +


    +

    This release includes a large number of bug fixes, feature enhancements, and new features.

    +


    +


    +

    Fixed Crashing Bugs

    +


    +

    * restore savestate error recovery functionality.  Will prevent crashes after savestate error messages

    +

    * Fixed - Low speeds (1%) crash FCEUX

    +

    * fixes bug where palflag 1 in .fm2 files crashes fceux

    +

    * FCEUX no longer crashes when attempting to open a non movie file

    +

    * Buffer overflow (change vsprintf to vsnprintf)

    +


    +

    Minor Bug fixes

    +


    +

    * SRAM not wiped on power cycle (during movies)

    +

    * Moviefilenames without extension now automatically get fm2

    +

    * auto-fill .fcs extension in save state as dialog

    +

    * FCM>FM2 converter releases file handle

    +

    * fix a new bug in windows build which caused fourscore emulation to fail in some cases

    +

    * Player 3 no longer inputs when not used

    +

    * prints a special message when trying to open an FCM reminding user to convert.

    +

    * fixes bug where Avi recording with no sound messes up the format

    +

    * Fixed bug where Convert .fcm didn't do special characters

    +

    * fixed the (null) in the default lua directory listing

    +

    * Ctrl+X now works in the memory watch dialog

    +

    * Dialog window positions won't "disappear" (-32000 protection on all dialogs that remember x,y)

    +

    * fixed View Slots bug - will now always show the used slots

    +


    +

    * added shift+L as default hotkey for reload lua script

    +

    * added input display to the FCEUX main menu

    +

    * change config filename from fceu98.cfg to fceux.cfg

    +


    +

    New Features

    +


    +

    * restore IPS patching capability which was lost when archive support was added

    +

    * restore ungzipping (and unzipping in sdl) capability which was lost when archive support was added

    +

    * re-enable an "author" text field in the record movie dialog

    +

    * re-enable support for old-format savestates. (Note: can not be loaded into a movie!)

    +


    +

    * Added new toggle - frame adv. - lag skip (menu item + hotkey mapping + saved in config), will cause frame adv. to skip frames where input is not read

    +

    * Added support for loading movies from archives (just like ROM files).  Note: Movies loaded from an archive file will be read-only.

    +

    * movie replay dialog displays fractions of a second on movie length

    +


    +

    * Savestates now save the Lagcounter information.

    +

    * added a mute turbo option in sound config

    +


    +

    * add an option to pick a constant color to draw in place of BG when BG rendering is disabled (look for gNoBGFillColor in config).

    +


    +

    Mappers

    +


    +

    * remove cnrom chr rom size limit for homebrew roms

    +

    * mmc5 - 64KB WRAM games now work correctly

    +

    * mmc5 - use of chr A regs for BG in sprite 8x8 mode is fixed

    +

    * upgrade to cah4e3's latest mapper 163&164 code to fix a crash in a game

    +


    +


    +

    Debugging Tools

    +


    +

    * Debugger - restore snap functionality

    +

    * Debugger - add FORBID breakpoints - regions which block breakpoints from happening if they contain the PC

    +

    * Debugger - debugger window is now resizeable

    +

    * nametable viewer  will display correct NT,CHR,ATTR data in more cases (specifically, including some exotic mmc5 cases).

    +


    +

    Lua

    +


    +

    * Savestates remember Lua painting

    +

    * add memory.readbyterange to emulua

    +


    +

    SDL only

    +


    +

    * SDL: fixed --input(1-4) options.  input1 and 2 are regular inputs, input3 and 4 are famicom expansion inputs

    +

    * SDL fix configfile woes. configfile now goes to ~/.fceux/fceux.cfg

    +

    * SDL: fixed segfault when opening .fcm files

    +

    * SDL: Saner sound defaults for less choppy sound

    +

    * SDL: "--special" option fixed for special video scaling filters

    +

    * SDL: cleaned up the SConsruct

    +

    * SDL: fixed issue where fceu would lock up when file dialogs were opened during fullscreen

    +

    * SDL: fixed bug where fceux would close when file dialogs were closed

    +

    * SDL: File open dialog is now used to movie playback

    +

    * SDL: File open wrapper now takes a titlebar argument

    +

    * SDL: Cleanup of usage

    +

    * SDL: rename options --no8lim -> --nospritelim and --color -> --ntsccolor

    +

    * SDL: Screenshots now always prepend the game name.

    +

    * SDL: Changed default A/B from numpad 2 and 3 to j and k.

    +

    * SDL: Enable frameskip by default

    +

    * SDL: Fixed a bug that would crash fceux if the emulation speed was overincreased

    +

    * SDL: New default hotkeys to more closely match win32 defaults

    +

    * SDL: Added lua script loading hotkey (f3).  Non win32 SDL requires zenity for this to function.

    +

    * SDL: Build script cleanup; also added option for DEBUG builds.

    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring environment

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew203.html b/web/help/WhatsNew203.html index 20100676..edecadc5 100644 --- a/web/help/WhatsNew203.html +++ b/web/help/WhatsNew203.html @@ -1,126 +1,317 @@ - - + + + + + - What's New? 2.0.3 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.0.3 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.0.3 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.0.2

    -

    Released November 02, 2008

    -


    -

    This release includes some key bug fixes and feature enhancements.

    -


    -


    -

    Major Bug / Crash Bug Fixes

    -


    -

    * Reset/Power-on recording for .fm2 files!

    -

    * fix ..fcm conversion, recording, and playback of reset and power commands

    -

    * Win32 - auto-load the only useful ROM or movie from an archive, in cases where there is only one

    -

    * Win32 - permit user optionally to proceed through the movie savestate mismatch error condition, in case he knows what he is doing.

    -

    * Win32 - fix a bug in the savestate recovery code which prevent aborted savestate loads from recovering emulator state correctly.

    -

    * gracefully handle non-convertible broken UTF-8 text without crashing

    -

    * Win32 - don't read every archive file when scanning for replay dialog. scan them, and only look for *.fm2

    -


    -

    New Features Win32

    -


    -

    * Win32 - added a toggle for binding savestates to movies

    -

    * Win32 - added -cfg (config file) command line argument

    -


    -

    Minor Bug fixes

    -


    -

    * Win32 - Sound config dialog will now look to see if Mute Turbo should be checked

    -

    * Win32 - Debugger - Fix Child windows inside debugging window get invalid sizes

    -

    * Win32 - bind a menu option for display frame counter

    -

    * Win32 - fix problem where replay dialog couldn't work when the process current directory had changed to something other than emulator base directory

    -

    * Lua ignores second joypad.set()

    -

    * Load state as... does not use the savestate override dir (fixed; now, it does)

    -

    *Win32 - debugger - fix issue where keyboard keys get stuck when switching between debugger window and main window

    -


    -


    -

    SDL

    -


    -

    * SDL - added support for AVI creation for SDL, see documentation/Videolog.txt for more

    -

    * SDL - --inputcfg can now be used without a filename

    -

    * SDL - should fix issues with missing author field crashing FCEUX

    -

    * SDL - toggle lag frame counter for SDL, default hotkey F8

    -

    * SDL - toggle skipping of lag frames for SDL, default hotkey F6

    -

    * SDL - user ability to toggle "bind savestates to movie" added for SDL, default hotkey F2

    -

    * SDL - Lua is now optional, thanks Shinydoofy for a patch.  also fixed some build issues.

    -

    * SDL - fixed an issue where flawed movie would crash FCEUX on every startup

    -

    * SDL - fixed issue where windowed mode would always be set to 32 bpp

    -

    * SDL - fixed ppc build errors and added LSB_FIRST option to build scripts

    -

    * SDL - --newppu option added to SDL, disabled by default

    -


    -

    GFCEUX (SDL)

    -


    -

    * GFCEUX - made the input config window more usable

    -

    * GFCEUX - added uninstall script for GFCEUX

    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create PDF Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.0.3 (changelog)

    + +
    + +

    +

    What's New? 2.0.2

    +

    Released November 02, 2008

    +


    +

    This release includes some key bug fixes and feature enhancements.

    +


    +


    +

    Major Bug / Crash Bug Fixes

    +


    +

    * Reset/Power-on recording for .fm2 files!

    +

    * fix ..fcm conversion, recording, and playback of reset and power commands

    +

    * Win32 - auto-load the only useful ROM or movie from an archive, in cases where there is only one

    +

    * Win32 - permit user optionally to proceed through the movie savestate mismatch error condition, in case he knows what he is doing.

    +

    * Win32 - fix a bug in the savestate recovery code which prevent aborted savestate loads from recovering emulator state correctly.

    +

    * gracefully handle non-convertible broken UTF-8 text without crashing

    +

    * Win32 - don't read every archive file when scanning for replay dialog. scan them, and only look for *.fm2

    +


    +

    New Features Win32

    +


    +

    * Win32 - added a toggle for binding savestates to movies

    +

    * Win32 - added -cfg (config file) command line argument

    +


    +

    Minor Bug fixes

    +


    +

    * Win32 - Sound config dialog will now look to see if Mute Turbo should be checked

    +

    * Win32 - Debugger - Fix Child windows inside debugging window get invalid sizes

    +

    * Win32 - bind a menu option for display frame counter

    +

    * Win32 - fix problem where replay dialog couldn't work when the process current directory had changed to something other than emulator base directory

    +

    * Lua ignores second joypad.set()

    +

    * Load state as... does not use the savestate override dir (fixed; now, it does)

    +

    *Win32 - debugger - fix issue where keyboard keys get stuck when switching between debugger window and main window

    +


    +


    +

    SDL 

    +


    +

    * SDL - added support for AVI creation for SDL, see documentation/Videolog.txt for more

    +

    * SDL - --inputcfg can now be used without a filename

    +

    * SDL - should fix issues with missing author field crashing FCEUX

    +

    * SDL - toggle lag frame counter for SDL, default hotkey F8

    +

    * SDL - toggle skipping of lag frames for SDL, default hotkey F6

    +

    * SDL - user ability to toggle "bind savestates to movie" added for SDL, default hotkey F2

    +

    * SDL - Lua is now optional, thanks Shinydoofy for a patch.  also fixed some build issues.

    +

    * SDL - fixed an issue where flawed movie would crash FCEUX on every startup

    +

    * SDL - fixed issue where windowed mode would always be set to 32 bpp

    +

    * SDL - fixed ppc build errors and added LSB_FIRST option to build scripts

    +

    * SDL - --newppu option added to SDL, disabled by default

    +


    +

    GFCEUX (SDL)

    +


    +

    * GFCEUX - made the input config window more usable

    +

    * GFCEUX - added uninstall script for GFCEUX

    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create EBooks

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew210.html b/web/help/WhatsNew210.html index 2e537e11..1660f8a6 100644 --- a/web/help/WhatsNew210.html +++ b/web/help/WhatsNew210.html @@ -1,246 +1,437 @@ - - + + + + + - What's New? 2.1 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.1 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.1 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.1

    -

    Released March 29, 2009

    -


    -

    This release includes a multitude of new features, major fixes, and enhancements.

    -


    -


    -

    New Features Win32

    -


    -

    *The latest mappers and mapper fixes from FCEU-mm.  Adds support for many new games such as Warioland II (Unl), Shu Qi Yu,  and Street Dance

    -

    *Full screen mode fixed!  Also, Alt+Enter properly toggles full screen.

    -

    *Individual control for sound channels! (See sound config for details).

    -

    *Undo/Redo Savestate/Loadstate features installed!  No more loss of data to unintentional presses.  (See getting started for details).

    -

    *Movie subtitles can now be included in .fm2 files.  See .fm2 documentation for details and Movie options for details on customizing.

    -

    *Auto-backup for movie files.  (See movie options for details).

    -

    *A Ram change monitor for the Memory watch dialog. (see memwatch for details).

    -

    *Frame counter works even without a movie loaded.

    -

    *AVI Directory Override option.

    -


    -

    Major Bug / Crash Bug Fixes

    -


    -

    *Fixed throttling problems that resulted on AMD Dualcore processors. (Caused FCEUX to appear to be in turbo mode).

    -

    *Fix major crash issue where NROM game (such as SMB) savestates were writing erroneous information if a non NROM game was loaded prior.

    -

    *Fixed a bug that caused a new sav file to not get created when loading a 2nd battery backed game.

    -

    *Fix Directory Overrides so to allow users to have no override.  Also fixes directory override reset bug.

    -


    -

    Minor Bug fixes

    -


    -

    *Hotkeys - prevent "Hotkey explosion" where some laptop keys set off all unassigned hotkeys

    -

    *Timing - "disable throttling when sound is off" now only affects FCEUX when sound is off

    -

    *Clip Left and Right sides taken into account when drawing on screen (record/play/pause, lag & frame counters, messages, etc)

    -

    *Fixed bug where having sound off and Mute turbo caused chirps when toggling

    -

    *Video settings - fixed bug when both aspect ratio correction and special scaling 3x are set, video was getting resized incorrectly

    -

    *Auto-save cleanup -prevent loading an auto-save from previous session.  Added flags for enabling auto-save menu item.

    -

    *Fixed issues related to big endian compiling.

    -

    *Fix bug so that Escape can now be assigned as a hotkey

    -

    *Fixed bug in screenshot numbering that caused numbering to not reset when changing games.

    -


    -

    GUI / Menu Enhancements

    -


    -

    *A right-click context menu added!  Includes many commonly used items for a variety of situations.

    -

    *Menu items that are hotkey mappable now show their current hotkey mapping

    -

    *Major overhaul to the Menu organization.  

    -

    *All FCEUX features are now accessible in the menu

    -

    *Alt Menu Shortcuts properly configured

    -

    *Menu items are properly grayed when not useable

    -

    *All movie related menu items moved to a Movie options dialog

    -

    *Removed hard-coded Accel keys and replaced with re-mappable hotkeys (Open & Close ROM)

    -

    *Drag & Drop for .fm2 and .lua files

    -

    *Many new functions added to the context menu (See context menu for details)

    -

    *New Mappable Hotkeys: Open Cheats, Open ROM, Close ROM, Undo/Redo savestate, Toggle Movie Subtitles

    -


    -

    Lua

    -


    -

    *Added input.get() !  Returns the mouse info and all keyboard buttons pressed by the user.

    -

    *Fixed joypad.set().  False now sets a button to off.  Nil does not affect the button at all (allowing the user to still control it).

    -

    *gui.text() Increased height (to approx. 7 lines).

    -

    *speedmode("turbo") now turns on turbo (which employs frame-skipping) rather than max speed.

    -

    *memory.readbyte will recognize frozen addresses (cheats).

    -

    *movie.framecount() always return a number, even when no movie is playing (since the frame counter is implemented without a movie loaded).

    -

    *Added FCEU.poweron()

    -

    *Added FCEU.softreset()

    -

    *Added FCEU.lagged()

    -

    *Added FCEU.lagcount()

    -

    *Added FCEU.getreadonly()

    -

    *Added FCEU.setreadonly()

    -

    *Added FCEU.fceu_setrenderplanes(sprites, background)

    -

    *Added movie.active()

    -

    *Added movie.rerecordcount()

    -

    *Added movie.length()

    -

    *Added movie.getname()

    -

    *Added movie.playbeginning()

    -

    *Added -lua command line argment, loads a Lua script on startup

    -

    *Added zapper.read() - returns the zapper (mouse) data.  (Currently does return zapper data in movie playback).

    -

    *Added joypad.write and joypad.get for naming consistency.

    -

    *Added rom.readbyte()

    -

    *Added rom.readbytesigned()

    -


    -

    Sound Config

    -


    -

    *Turning sound off disabled sound config controls

    -

    *Re-enabled sound buffer time slider control

    -


    -

    Hex Editor

    -


    -

    *Freezing ram addresses automatically updates the Cheats dialog if it is open.

    -

    * Added prevention from freezing more than 256 addresses at once (doing so caused crash bugs).

    -

    *Dialog remembers window size.

    -

    *Dump Rom & Dump PPU to file Dialogs use ROM to build default filename

    -

    *Maximize and minimize buttons added.

    -

    *Help menu item added

    -


    -

    Memory Watch

    -


    -

    *Dialog now includes Ram change monitoring. (see memwatch for details).

    -

    *Dialog is now collapsible to 1 column.

    -

    *No longer crashes when attempting to load an invalid file from the recent file menu.

    -

    *Cancel option added to the save changes dialog.

    -

    *Memory address values that are frozen by the debugger or hex editor are displayed in blue.

    -

    *Fixed bug that caused dialog to "disappear" due to saving -32000 as its window position.

    -

    *Save as dialog uses ROM name to build a default memory watch filename if there was no last used memory watch filename

    -

    *Drag and drop for .txt (memory watch) files.

    -

    *Minor menu and hotkey fixes.

    -

    *Watch values now compatible with custom windows dialog colors.

    -


    -

    Debugger

    -


    -

    *Shows scanlines and PPU pixel values

    -

    *Shows scanlines even while in VBlank

    -

    *Added a Run Line button (runs 1 scanline per click)

    -

    *Run 128 Lines button (runs 128 scanlines per click)

    -

    *Number of active cheats listed.

    -

    *Cheats list automatically updated if ram addresses are frozen in the hex editor.

    -

    *Fixed bug that caused dialog to "disappear" due to saving -32000 as its window position.

    -

    *Debugger now has a minimum valid size

    -

    *Added "Restore original window size" button

    -


    -

    PPU Viewer

    -


    -

    *Default refresh value set to 15

    -

    *Refresh value stored in the .cfg file

    -


    -

    Nametable Viewer

    -


    -

    *Default refresh value set to 15

    -

    *Refresh value stored in the .cfg file

    -


    -

    Trace Logger

    -


    -

    *Fixed bug where user can't scroll the log window while it is auto-updating.

    -

    *Changed message about F2 pause (left over from FCEUXDSP) to display the current hotkey mapping.

    -


    -

    Text Hooker

    -


    -

    *Saving a .tht file no longer crashes

    -

    *Dialog updates every frame

    -

    *Initialization error checking reinstalled,

    -

    *Dialog remembers window position

    -

    *Fixed bug where canceling save as produces an error message.

    -

    *Save As produces default filename based on the current ROM

    -


    -

    Message Log

    -


    -

    *Remembers X,Y position

    -

    *Resized width and height

    -

    *Allowed more lines of text to appear on the screen at once.

    -


    -

    Metadata

    -


    -

    *Remembers window position

    -

    *Can be called from the context menu if a movie is loaded (see context menu for details).

    -


    -

    TASEdit

    -


    -

    *added help menu item

    -

    *disabled menu items that are not currently implemented.

    -


    -

    Turbo

    -

    *Turbo now employs frame skip, greatly increasing its speed

    -

    *The mute turbo option completely bypasses sound processing (another big speed boost)

    -

    *Turbo now works with the Lazy wait for VBlank sync setting

    -


    -

    SDL

    -

    *SDL Movie subtitle support and subtitle toggle hotkey added.

    -

    *SDL Added fcm to fm2 converter tool to SDL version.

    -

    *SDL Improved the SDL sound code; drastically improves quality of sound.

    -

    *SDL Savestate slots are now mappable.

    -

    *SDL Major updates to SDL documentation

    -

    *SDL Added Shift+M for toggling automatic movie backups.

    -

    *SDL Added option to mute FCEUX for avi capturing, check the documentation for more details.

    -

    *SDL Added --noconfig command line option

    -

    *SDL Frame Advance Skip Lag frames toggle implemented

    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Write eBooks for the Kindle

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.1 (changelog)

    + +
    + +

    +

    What's New? 2.1

    +

    Released March 29, 2009

    +


    +

    This release includes a multitude of new features, major fixes, and enhancements.

    +


    +


    +

    New Features Win32

    +


    +

    *The latest mappers and mapper fixes from FCEU-mm.  Adds support for many new games such as Warioland II (Unl), Shu Qi Yu,  and Street Dance

    +

    *Full screen mode fixed!  Also, Alt+Enter properly toggles full screen.

    +

    *Individual control for sound channels! (See sound config for details).

    +

    *Undo/Redo Savestate/Loadstate features installed!  No more loss of data to unintentional presses.  (See getting started for details).

    +

    *Movie subtitles can now be included in .fm2 files.  See .fm2 documentation for details and Movie options for details on customizing.

    +

    *Auto-backup for movie files.  (See movie options for details).

    +

    *A Ram change monitor for the Memory watch dialog. (see memwatch for details).

    +

    *Frame counter works even without a movie loaded.

    +

    *AVI Directory Override option.

    +


    +

    Major Bug / Crash Bug Fixes

    +


    +

    *Fixed throttling problems that resulted on AMD Dualcore processors. (Caused FCEUX to appear to be in turbo mode).

    +

    *Fix major crash issue where NROM game (such as SMB) savestates were writing erroneous information if a non NROM game was loaded prior.

    +

    *Fixed a bug that caused a new sav file to not get created when loading a 2nd battery backed game.

    +

    *Fix Directory Overrides so to allow users to have no override.  Also fixes directory override reset bug.

    +


    +

    Minor Bug fixes

    +


    +

    *Hotkeys - prevent "Hotkey explosion" where some laptop keys set off all unassigned hotkeys

    +

    *Timing - "disable throttling when sound is off" now only affects FCEUX when sound is off

    +

    *Clip Left and Right sides taken into account when drawing on screen (record/play/pause, lag & frame counters, messages, etc)

    +

    *Fixed bug where having sound off and Mute turbo caused chirps when toggling

    +

    *Video settings - fixed bug when both aspect ratio correction and special scaling 3x are set, video was getting resized incorrectly

    +

    *Auto-save cleanup -prevent loading an auto-save from previous session.  Added flags for enabling auto-save menu item.

    +

    *Fixed issues related to big endian compiling. 

    +

    *Fix bug so that Escape can now be assigned as a hotkey

    +

    *Fixed bug in screenshot numbering that caused numbering to not reset when changing games.

    +


    +

    GUI / Menu Enhancements

    +


    +

    *A right-click context menu added!  Includes many commonly used items for a variety of situations.

    +

    *Menu items that are hotkey mappable now show their current hotkey mapping

    +

    *Major overhaul to the Menu organization.  

    +

    *All FCEUX features are now accessible in the menu

    +

    *Alt Menu Shortcuts properly configured

    +

    *Menu items are properly grayed when not useable

    +

    *All movie related menu items moved to a Movie options dialog 

    +

    *Removed hard-coded Accel keys and replaced with re-mappable hotkeys (Open & Close ROM)

    +

    *Drag & Drop for .fm2 and .lua files

    +

    *Many new functions added to the context menu (See context menu for details)

    +

    *New Mappable Hotkeys: Open Cheats, Open ROM, Close ROM, Undo/Redo savestate, Toggle Movie Subtitles

    +


    +

    Lua

    +


    +

    *Added input.get() !  Returns the mouse info and all keyboard buttons pressed by the user.

    +

    *Fixed joypad.set().  False now sets a button to off.  Nil does not affect the button at all (allowing the user to still control it).

    +

    *gui.text() Increased height (to approx. 7 lines).

    +

    *speedmode("turbo") now turns on turbo (which employs frame-skipping) rather than max speed.

    +

    *memory.readbyte will recognize frozen addresses (cheats).

    +

    *movie.framecount() always return a number, even when no movie is playing (since the frame counter is implemented without a movie loaded).

    +

    *Added FCEU.poweron()

    +

    *Added FCEU.softreset()

    +

    *Added FCEU.lagged()

    +

    *Added FCEU.lagcount()

    +

    *Added FCEU.getreadonly()

    +

    *Added FCEU.setreadonly()

    +

    *Added FCEU.fceu_setrenderplanes(sprites, background) 

    +

    *Added movie.active()

    +

    *Added movie.rerecordcount()

    +

    *Added movie.length()

    +

    *Added movie.getname()

    +

    *Added movie.playbeginning()

    +

    *Added -lua command line argment, loads a Lua script on startup

    +

    *Added zapper.read() - returns the zapper (mouse) data.  (Currently does return zapper data in movie playback).

    +

    *Added joypad.write and joypad.get for naming consistency. 

    +

    *Added rom.readbyte()

    +

    *Added rom.readbytesigned()

    +


    +

    Sound Config

    +


    +

    *Turning sound off disabled sound config controls

    +

    *Re-enabled sound buffer time slider control

    +


    +

    Hex Editor

    +


    +

    *Freezing ram addresses automatically updates the Cheats dialog if it is open.

    +

    * Added prevention from freezing more than 256 addresses at once (doing so caused crash bugs).

    +

    *Dialog remembers window size.

    +

    *Dump Rom & Dump PPU to file Dialogs use ROM to build default filename

    +

    *Maximize and minimize buttons added.

    +

    *Help menu item added

    +


    +

    Memory Watch

    +


    +

    *Dialog now includes Ram change monitoring. (see memwatch for details).

    +

    *Dialog is now collapsible to 1 column.

    +

    *No longer crashes when attempting to load an invalid file from the recent file menu.

    +

    *Cancel option added to the save changes dialog.

    +

    *Memory address values that are frozen by the debugger or hex editor are displayed in blue.

    +

    *Fixed bug that caused dialog to "disappear" due to saving -32000 as its window position.

    +

    *Save as dialog uses ROM name to build a default memory watch filename if there was no last used memory watch filename

    +

    *Drag and drop for .txt (memory watch) files.

    +

    *Minor menu and hotkey fixes.

    +

    *Watch values now compatible with custom windows dialog colors.

    +


    +

    Debugger

    +


    +

    *Shows scanlines and PPU pixel values

    +

    *Shows scanlines even while in VBlank

    +

    *Added a Run Line button (runs 1 scanline per click)

    +

    *Run 128 Lines button (runs 128 scanlines per click)

    +

    *Number of active cheats listed.

    +

    *Cheats list automatically updated if ram addresses are frozen in the hex editor.

    +

    *Fixed bug that caused dialog to "disappear" due to saving -32000 as its window position.

    +

    *Debugger now has a minimum valid size

    +

    *Added "Restore original window size" button

    +


    +

    PPU Viewer 

    +


    +

    *Default refresh value set to 15

    +

    *Refresh value stored in the .cfg file

    +


    +

    Nametable Viewer

    +


    +

    *Default refresh value set to 15

    +

    *Refresh value stored in the .cfg file

    +


    +

    Trace Logger

    +


    +

    *Fixed bug where user can't scroll the log window while it is auto-updating.

    +

    *Changed message about F2 pause (left over from FCEUXDSP) to display the current hotkey mapping.

    +


    +

    Text Hooker

    +


    +

    *Saving a .tht file no longer crashes

    +

    *Dialog updates every frame

    +

    *Initialization error checking reinstalled,

    +

    *Dialog remembers window position

    +

    *Fixed bug where canceling save as produces an error message.

    +

    *Save As produces default filename based on the current ROM

    +


    +

    Message Log

    +


    +

    *Remembers X,Y position

    +

    *Resized width and height

    +

    *Allowed more lines of text to appear on the screen at once.

    +


    +

    Metadata

    +


    +

    *Remembers window position

    +

    *Can be called from the context menu if a movie is loaded (see context menu for details).

    +


    +

    TASEdit

    +


    +

    *added help menu item

    +

    *disabled menu items that are not currently implemented.

    +


    +

    Turbo

    +

    *Turbo now employs frame skip, greatly increasing its speed

    +

    *The mute turbo option completely bypasses sound processing (another big speed boost)

    +

    *Turbo now works with the Lazy wait for VBlank sync setting

    +


    +

    SDL 

    +

    *SDL Movie subtitle support and subtitle toggle hotkey added.

    +

    *SDL Added fcm to fm2 converter tool to SDL version.

    +

    *SDL Improved the SDL sound code; drastically improves quality of sound.

    +

    *SDL Savestate slots are now mappable.

    +

    *SDL Major updates to SDL documentation

    +

    *SDL Added Shift+M for toggling automatic movie backups.

    +

    *SDL Added option to mute FCEUX for avi capturing, check the documentation for more details.

    +

    *SDL Added --noconfig command line option

    +

    *SDL Frame Advance Skip Lag frames toggle implemented

    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured EPub generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew211.html b/web/help/WhatsNew211.html index 73ada1ce..28918f02 100644 --- a/web/help/WhatsNew211.html +++ b/web/help/WhatsNew211.html @@ -1,156 +1,347 @@ - - + + + + + - What's New? 2.1.1 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.1.1 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.1.1 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.1.1

    -

    Released July 29, 2009

    -


    -

    This release includes a multitude of new features, major fixes, and enhancements.

    -


    -


    -

    The 2.1 new release fixes some bugs of 2.1.0a, improves the accuracy of the sound core, and adds useability enhancements to the windows port.

    -


    -

    Common - Bug fixes

    -
      -
    • Fixed reported issue 2746924 (md5_asciistr() doesn't produce correct string)
    • -
    • Made default save slot 0 instead of 1
    • -
    -


    -

    Improved Sound core/PPU

    -
      -
    • Fixed the noise value, it seems that the noise logic was shifting the values to the left by 1 when reloading, but this doesn't work for PAL since one of the PAL reload value is odd, so fix the logic and used the old tables. Revert a stupid CPU ignore logic in PPU. Sorry about that.
    • -
    • Updated with the correct values for the noise and DMC table,
    • -
    • Fixed the CPU unofficial opcode ATX, ORing with correct constant $FF instead of $EE, as tested by blargg's. These fixes passes the IRQ flags test from blargg, and also one more  opcode test from blargg's cpu.nes test.
    • -
    • Square 1 & square 2 volume controls no longer backwards
    • -
    • Length counters for APU now correct variables
    • -
    -


    -

    NewPPU (still experimental, enabled by setting newppu 1 in the config file)

    -
      -
    • Added experimental $2004 reading support to play micro machines with (little) shakes, and fixed some timing in the new PPU.
    • -
    • Added palette reading cases for the new PPU.
    • -
    -


    -

    Win32

    -


    -

    Minor Bug fixes

    -
      -
    • Replay movie dialog - Stop movie at frame x feature - fixed off by 1 error on the stop frame number
    • -
    • Hex Editor - changed ROM values again dsiplay as red, saved in the config as RomFreezeColor
    • -
    • Fixed bug in memory watch that would make the first watch value drawn in the wrong place if watch file was full
    • -
    • Debugger - Step type functions now update other dialogs such as ppu, nametable, code/data, trace logger, etc.
    • -
    • "Disable screen saver" gui option now also diables the monitor powersave
    • -
    • Recent menus - no longer crash if item no longer exists, instead it ask the user if they want to remove the item from the list
    • -
    • Sound Config Dialog - When sound is off, all controls are grayed out
    • -
    • Memory Watch - fixed a regression made in 2.0.1 that broke the Save As menu item
    • -
    • Memory Watch - save menu item is grayed if file hasn't changed
    • -
    -


    -


    -

    GUI/Enhancements

    -
      -
    • Last save slot used is stored in the config file
    • -
    • Made fullscreen toggle (Alt+Enter) remappable
    • -
    • Hex editor - Reverted fixedFontHeight to 13 instead of 14.  Gave the option of adjusting the height by modifying RowHeightBorder in the .cfg file
    • -
    • Hex Editor - allowed the user to customize the color scheme by use of RGB values stored in the .cfg file
    • -
    • Hex editor - freeze/unfreeze ram addresses now causes the colors to update immediately, but only with groups of addresses highlighted at once (single ones still don't yet update)
    • -
    • Hex Editor - Save Rom As... menu option enabled and implemented
    • -
    • Window caption shows the name of the ROM loaded
    • -
    • Recent Movie Menu added
    • -
    • Load Last Movie context menu item added
    • -
    • Save Movie As... context menu item (for when a movie is loaded in read+write mode)
    • -
    • Drag & Drop support for all files related to FCEUX including:
    • -
    -

       .fcm (autoconverts to .fm2 and begins movie playback)

    -

       Savestates

    -

       Palette files (.pal)

    -
      -
    • Commandline - -palette commandline option
    • -
    • Memory Watch - option to bind to main window, if checked it gives GENS dialog style control, where there is no extra task bar item, and it minimizes when FCEUX is minimized
    • -
    -


    -

    SDL

    -


    -
      -
    • added --subtitles
    • -
    • fixed Four Score movie playback
    • -
    • added --ripsubs for converting fm2 movie subtitles to an srt file
    • -
    • Lua is optional again, fixed the real issue
    • -
    • Lua is NO longer optional, so the SConscripts have been updated to reflect that change.  This fixes the mysterious non-working input issue.
    • -
    • implemented saving/loading a savestate from a specific file on Alt+S/L
    • -
    • implemented starting an FM2 movie on Alt+R
    • -
    • added --pauseframe to pause movie playback on frame x
    • -
    • dropped UTFConverter.c from SDL build
    • -
    • added hotkey Q for toggling read-only/read+write movie playback
    • -
    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free PDF documentation generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.1.1 (changelog)

    + +
    + +

    +

    What's New? 2.1.1

    +

    Released July 29, 2009

    +


    +

    This release includes a multitude of new features, major fixes, and enhancements.

    +


    +


    +

    The 2.1 new release fixes some bugs of 2.1.0a, improves the accuracy of the sound core, and adds useability enhancements to the windows port.

    +


    +

    Common - Bug fixes

    +
      +
    • Fixed reported issue 2746924 (md5_asciistr() doesn't produce correct string)
    • +
    • Made default save slot 0 instead of 1
    • +
    +


    +

    Improved Sound core/PPU

    +
      +
    • Fixed the noise value, it seems that the noise logic was shifting the values to the left by 1 when reloading, but this doesn't work for PAL since one of the PAL reload value is odd, so fix the logic and used the old tables. Revert a stupid CPU ignore logic in PPU. Sorry about that. 
    • +
    • Updated with the correct values for the noise and DMC table, 
    • +
    • Fixed the CPU unofficial opcode ATX, ORing with correct constant $FF instead of $EE, as tested by blargg's. These fixes passes the IRQ flags test from blargg, and also one more  opcode test from blargg's cpu.nes test.
    • +
    • Square 1 & square 2 volume controls no longer backwards
    • +
    • Length counters for APU now correct variables
    • +
    +


    +

    NewPPU (still experimental, enabled by setting newppu 1 in the config file)

    +
      +
    • Added experimental $2004 reading support to play micro machines with (little) shakes, and fixed some timing in the new PPU.
    • +
    • Added palette reading cases for the new PPU.
    • +
    +


    +

    Win32

    +


    +

    Minor Bug fixes

    +
      +
    • Replay movie dialog - Stop movie at frame x feature - fixed off by 1 error on the stop frame number
    • +
    • Hex Editor - changed ROM values again dsiplay as red, saved in the config as RomFreezeColor
    • +
    • Fixed bug in memory watch that would make the first watch value drawn in the wrong place if watch file was full
    • +
    • Debugger - Step type functions now update other dialogs such as ppu, nametable, code/data, trace logger, etc.
    • +
    • "Disable screen saver" gui option now also diables the monitor powersave
    • +
    • Recent menus - no longer crash if item no longer exists, instead it ask the user if they want to remove the item from the list
    • +
    • Sound Config Dialog - When sound is off, all controls are grayed out
    • +
    • Memory Watch - fixed a regression made in 2.0.1 that broke the Save As menu item
    • +
    • Memory Watch - save menu item is grayed if file hasn't changed
    • +
    +


    +


    +

    GUI/Enhancements

    +
      +
    • Last save slot used is stored in the config file
    • +
    • Made fullscreen toggle (Alt+Enter) remappable
    • +
    • Hex editor - Reverted fixedFontHeight to 13 instead of 14.  Gave the option of adjusting the height by modifying RowHeightBorder in the .cfg file
    • +
    • Hex Editor - allowed the user to customize the color scheme by use of RGB values stored in the .cfg file
    • +
    • Hex editor - freeze/unfreeze ram addresses now causes the colors to update immediately, but only with groups of addresses highlighted at once (single ones still don't yet update)
    • +
    • Hex Editor - Save Rom As... menu option enabled and implemented
    • +
    • Window caption shows the name of the ROM loaded
    • +
    • Recent Movie Menu added
    • +
    • Load Last Movie context menu item added
    • +
    • Save Movie As... context menu item (for when a movie is loaded in read+write mode)
    • +
    • Drag & Drop support for all files related to FCEUX including:
    • +
    +

        .fcm (autoconverts to .fm2 and begins movie playback)

    +

        Savestates

    +

        Palette files (.pal)

    +
      +
    • Commandline - -palette commandline option
    • +
    • Memory Watch - option to bind to main window, if checked it gives GENS dialog style control, where there is no extra task bar item, and it minimizes when FCEUX is minimized
    • +
    +


    +

    SDL

    +


    +
      +
    • added --subtitles
    • +
    • fixed Four Score movie playback
    • +
    • added --ripsubs for converting fm2 movie subtitles to an srt file
    • +
    • Lua is optional again, fixed the real issue
    • +
    • Lua is NO longer optional, so the SConscripts have been updated to reflect that change.  This fixes the mysterious non-working input issue.
    • +
    • implemented saving/loading a savestate from a specific file on Alt+S/L
    • +
    • implemented starting an FM2 movie on Alt+R
    • +
    • added --pauseframe to pause movie playback on frame x
    • +
    • dropped UTFConverter.c from SDL build
    • +
    • added hotkey Q for toggling read-only/read+write movie playback
    • +
    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Create help files for the Qt Help Framework

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew212.html b/web/help/WhatsNew212.html index e84e2ec0..70c8a22d 100644 --- a/web/help/WhatsNew212.html +++ b/web/help/WhatsNew212.html @@ -1,136 +1,327 @@ - - + + + + + - What's New? 2.1.2 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.1.2 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.1.2 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.1.2

    -

    Released November 3, 2009

    -


    -


    -

    The 2.1.2 release fixes some bugs of 2.1.0a, increases game compatibility, launches a new PPU core, and adds usability enhancements to the windows port.

    -


    -

    Common

    -
      -
    • New PPU is now functional!  You can access it by changing the newPPU flag in the config file.  Windows users can access it from Config > PPU > New PPU
    • -
    • Dragon Ball Z 3 now playable again
    • -
    • Fixed action 52 game that was broken in post-FCEUX 2.0.3 versions
    • -
    • Mapper 253 mostly implemented
    • -
    • Mapper 43 fixed bug
    • -
    -


    -

    Win32

    -


    -
      -
    • Imported NSF features from FCEUXDSP-NSF.  Debugging tools are now compatible with NSF files.
    • -
    • Movies now record FDS disk swapping commands
    • -
    • Movie play dialog displays movie time based on ~60.1 (~50.1 PAL) instead of 60 & 50
    • -
    • Ram Watch and Ram Search dialogs imported from GENS rerecording
    • -
    • Ram Filter dialog removed (now redundant compared to both cheat search and ram search)
    • -
    • Lua script window ported from GENS
    • -
    • Fix for the directory overrides bug that caused overrides to reset
    • -
    • Debugger:  .deb file saving/loading restored
    • -
    • "Save config file" menu item
    • -
    • "New PPU" menu item
    • -
    -


    -

    Minor Bug fixes

    -


    -
      -
    • Minor fixes to recent menus
    • -
    • Fixed a bug that prevented the Map Hotkeys dialog's X button from closing the dialog
    • -
    • Restored DPCM Logging when Code/Data Logger is active
    • -
    • Memory watch - Save Changes Prompt - clicking save will default to quicksave first and save as 2nd (instead of always defaulting to save as)
    • -
    • Made Trace Logger refresh adequately when using stepping options in the debugger.
    • -
    -


    -

    Lua

    -
      -
    • joypad.set() fixed.  True,False, and Nil now work properly for all buttons.  In addition there is a new "invert" option.
    • -
    • Lua5.1.dll no longer required to use lua.
    • -
    • fceu.unpause()
    • -
    • Added savestate.registerload(), savestate.registersave(), savestate.loadscriptdata()
    • -
    • emu. library, has all the same functions as fceu. library for better compatibility between lua emulators
    • -
    • Many additional function names to increase consistency with other lua emulators
    • -
    • Added movie.recording() and movie.playing()
    • -
    • Added memory.getregister() and memory.setregister()
    • -
    • Added gui.popup and input.popup
    • -
    • Added savestate.registerload(), savestate.registersave(), and savestate.loadscriptdata()
    • -
    -


    -


    -

    New Lua Scripts

    -
      -
    • A multi-track movie recording tools written by FatRatKnight.  Allows input for different players to be recorded separately.
    • -
    • A rewinding tool by Antony Lavelle
    • -
    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Help documents

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.1.2 (changelog)

    + +
    + +

    +

    What's New? 2.1.2

    +

    Released November 3, 2009

    +


    +


    +

    The 2.1.2 release fixes some bugs of 2.1.0a, increases game compatibility, launches a new PPU core, and adds usability enhancements to the windows port.

    +


    +

    Common 

    +
      +
    • New PPU is now functional!  You can access it by changing the newPPU flag in the config file.  Windows users can access it from Config > PPU > New PPU
    • +
    • Dragon Ball Z 3 now playable again
    • +
    • Fixed action 52 game that was broken in post-FCEUX 2.0.3 versions
    • +
    • Mapper 253 mostly implemented
    • +
    • Mapper 43 fixed bug
    • +
    +


    +

    Win32

    +


    +
      +
    • Imported NSF features from FCEUXDSP-NSF.  Debugging tools are now compatible with NSF files.
    • +
    • Movies now record FDS disk swapping commands
    • +
    • Movie play dialog displays movie time based on ~60.1 (~50.1 PAL) instead of 60 & 50
    • +
    • Ram Watch and Ram Search dialogs imported from GENS rerecording
    • +
    • Ram Filter dialog removed (now redundant compared to both cheat search and ram search)
    • +
    • Lua script window ported from GENS
    • +
    • Fix for the directory overrides bug that caused overrides to reset
    • +
    • Debugger:  .deb file saving/loading restored
    • +
    • "Save config file" menu item
    • +
    • "New PPU" menu item
    • +
    +


    +

    Minor Bug fixes

    +


    +
      +
    • Minor fixes to recent menus
    • +
    • Fixed a bug that prevented the Map Hotkeys dialog's X button from closing the dialog
    • +
    • Restored DPCM Logging when Code/Data Logger is active
    • +
    • Memory watch - Save Changes Prompt - clicking save will default to quicksave first and save as 2nd (instead of always defaulting to save as)
    • +
    • Made Trace Logger refresh adequately when using stepping options in the debugger.
    • +
    +


    +

    Lua

    +
      +
    • joypad.set() fixed.  True,False, and Nil now work properly for all buttons.  In addition there is a new "invert" option.
    • +
    • Lua5.1.dll no longer required to use lua.
    • +
    • fceu.unpause()
    • +
    • Added savestate.registerload(), savestate.registersave(), savestate.loadscriptdata()
    • +
    • emu. library, has all the same functions as fceu. library for better compatibility between lua emulators
    • +
    • Many additional function names to increase consistency with other lua emulators
    • +
    • Added movie.recording() and movie.playing()
    • +
    • Added memory.getregister() and memory.setregister()
    • +
    • Added gui.popup and input.popup
    • +
    • Added savestate.registerload(), savestate.registersave(), and savestate.loadscriptdata()
    • +
    +


    +


    +

    New Lua Scripts

    +
      +
    • A multi-track movie recording tools written by FatRatKnight.  Allows input for different players to be recorded separately.
    • +
    • A rewinding tool by Antony Lavelle
    • +
    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free help authoring environment

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew213.html b/web/help/WhatsNew213.html index 60800a26..4e834e19 100644 --- a/web/help/WhatsNew213.html +++ b/web/help/WhatsNew213.html @@ -1,132 +1,323 @@ - - + + + + + - What's New? 2.1.3 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.1.3 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.1.3 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.1.3

    -

    Released April 8, 2010

    -


    -


    -

    The 2.1.3 release fixes some bugs of 2.1.2, increases game compatibility, and adds usability enhancements to the windows port and adds a GUI to the SDL port.

    -


    -

    Common

    -
      -
    • Fixed mappers 82, 25, 21, and 18.  Games such as SD Kiji Blader, Ganbare Goemon Gaiden, and Ganbare Goemon Gaiden 2, Jajamaru Gekimadden are now playable
    • -
    • Fixes for mappers 253 & 226 - fixes games such as Fire Emblem (J) and Fire Emblem Gaiden (J)
    • -
    • Fix crashing on game loading for any battery backed ROMs with mappers from MapInitTab (fixes Esper Dream 2 - Aratanaru Tatakai (J)
    • -
    • FDS - show name of missing bios file in error message
    • -
    • NewPPU - fixed sprite hit before 255 and for non transparent hits only, thanks to dwedit for providing the fix
    • -
    • .fm2 file format header now has an FDS flag
    • -
    -


    -

    SDL

    -


    -
      -
    • A GUI!  A graphic user interface (using GTK) with many basic menu options
    • -
    • ported to SDL 1.3; compatibility maintained with 1.2
    • -
    • unix netplay is now functional; gtk network gui created
    • -
    • now prints the name of the mapper on ROM load
    • -
    • fixed dpad/joyhat support
    • -
    • VS unisystem keys now configable
    • -
    • changed default hotkeys and keys to match Win32
    • -
    • disallow --inputcfg gamepad0 and gamepad5
    • -
    -


    -

    Win32

    -


    -
      -
    • Made savestate backups optional (config - enable - backup savestates)
    • -
    • Made savestate compression togglable (config - enable - compress savestates)
    • -
    • Cheats dialog - Pause while active checkbox
    • -
    • Cheats dialog - Toggling a cheat in the cheats list now updates the active cheats count
    • -
    • Debugger - added an auto-load feature
    • -
    • Debugger - Fix so it doesn't crash if unminimized with no game loaded
    • -
    • Closing minimized windows no longer moves them the next time they get opened
    • -
    • Lua console - added a menu
    • -
    • Lua console - filename updates when lua scripts are dragged to emulator or recent filenames invoked
    • -
    • Name Table Viewer - Fix for use with New PPU
    • -
    • Trace Logger - Trace logger now logs the values of the stack pointer register
    • -
    • If a .fm2 file is drag and dropped with no ROM load, the open ROM dialog will appear
    • -
    • disable movie messages menu item
    • -
    • Added more window positions bounds checks. Accounts for -32000 positions and less out-of-range too
    • -
    • TASEdit - Added interface functionality (save/load, running TASEdit mid-movie, etc.)
    • -
    -


    -

    Lua

    -
      -
    • New lua functions: gui.parsecolor(), joypad.getup(), joypad.getdown(), emu.emulating()
    • -
    • Change gui.line, gui.box, joypad.get to function consistently with other lua emulators such as GENS rerecording
    • -
    • fixed zapper.read() to read movie data if a movie is playing.  Also changed the struct values to x,y,fire. This breaks lua scripts that used it previous, sorry
    • -
    • gui.text() now has out of bounds checking
    • -
    • Lua no longer unpauses the emulator when a script is loaded
    • -
    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.1.3 (changelog)

    + +
    + +

    +

    What's New? 2.1.3

    +

    Released April 8, 2010

    +


    +


    +

    The 2.1.3 release fixes some bugs of 2.1.2, increases game compatibility, and adds usability enhancements to the windows port and adds a GUI to the SDL port.

    +


    +

    Common 

    +
      +
    • Fixed mappers 82, 25, 21, and 18.  Games such as SD Kiji Blader, Ganbare Goemon Gaiden, and Ganbare Goemon Gaiden 2, Jajamaru Gekimadden are now playable
    • +
    • Fixes for mappers 253 & 226 - fixes games such as Fire Emblem (J) and Fire Emblem Gaiden (J)
    • +
    • Fix crashing on game loading for any battery backed ROMs with mappers from MapInitTab (fixes Esper Dream 2 - Aratanaru Tatakai (J)
    • +
    • FDS - show name of missing bios file in error message
    • +
    • NewPPU - fixed sprite hit before 255 and for non transparent hits only, thanks to dwedit for providing the fix
    • +
    • .fm2 file format header now has an FDS flag
    • +
    +


    +

    SDL

    +


    +
      +
    • A GUI!  A graphic user interface (using GTK) with many basic menu options
    • +
    • ported to SDL 1.3; compatibility maintained with 1.2
    • +
    • unix netplay is now functional; gtk network gui created
    • +
    • now prints the name of the mapper on ROM load
    • +
    • fixed dpad/joyhat support
    • +
    • VS unisystem keys now configable
    • +
    • changed default hotkeys and keys to match Win32
    • +
    • disallow --inputcfg gamepad0 and gamepad5
    • +
    +


    +

    Win32

    +


    +
      +
    • Made savestate backups optional (config - enable - backup savestates)
    • +
    • Made savestate compression togglable (config - enable - compress savestates)
    • +
    • Cheats dialog - Pause while active checkbox
    • +
    • Cheats dialog - Toggling a cheat in the cheats list now updates the active cheats count
    • +
    • Debugger - added an auto-load feature
    • +
    • Debugger - Fix so it doesn't crash if unminimized with no game loaded 
    • +
    • Closing minimized windows no longer moves them the next time they get opened
    • +
    • Lua console - added a menu
    • +
    • Lua console - filename updates when lua scripts are dragged to emulator or recent filenames invoked
    • +
    • Name Table Viewer - Fix for use with New PPU
    • +
    • Trace Logger - Trace logger now logs the values of the stack pointer register
    • +
    • If a .fm2 file is drag and dropped with no ROM load, the open ROM dialog will appear
    • +
    • disable movie messages menu item
    • +
    • Added more window positions bounds checks. Accounts for -32000 positions and less out-of-range too
    • +
    • TASEdit - Added interface functionality (save/load, running TASEdit mid-movie, etc.)
    • +
    +


    +

    Lua

    +
      +
    • New lua functions: gui.parsecolor(), joypad.getup(), joypad.getdown(), emu.emulating()
    • +
    • Change gui.line, gui.box, joypad.get to function consistently with other lua emulators such as GENS rerecording
    • +
    • fixed zapper.read() to read movie data if a movie is playing.  Also changed the struct values to x,y,fire. This breaks lua scripts that used it previous, sorry
    • +
    • gui.text() now has out of bounds checking
    • +
    • Lua no longer unpauses the emulator when a script is loaded
    • +
    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured multi-format Help generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew214.html b/web/help/WhatsNew214.html index a499029a..ed515957 100644 --- a/web/help/WhatsNew214.html +++ b/web/help/WhatsNew214.html @@ -1,179 +1,370 @@ - - + + + + + - What's New? 2.1.4 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.1.4 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.1.4 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.1.4a

    -

    Released 01 June 2010

    -

    2.1.4 is a maintenance release that fixes these bugs in 2.1.4:

    -

    fix crash bug on .fcm convert

    -

    fix erroneous reporting of savestate past the end of movie error during read-only loadstates

    -


    -

    Released 31 May 2010

    -


    -


    -

    The 2.1.4 release fixes many bugs and adds new features compared to 2.1.3. In addition it also fixes up the movie code significantly; fixing implementation problems, loading speed, adding new features, and fixing bugs.

    -


    -

    Common

    -
      -
    • Added microphone support option. When enabled, Port 2 Start activates the Microphone
    • -
    • Prevent .zip files containing no recognized files from causing crash
    • -
    • Autohold - Added player 3 and 4 to autohold notification window, labeled controller input
    • -
    • mapper 19 savestate fix mirroring for "Dream Master (J)" corrected to "four-screen" by CRC check
    • -
    • Disable auto-savestates during turbo
    • -
    • Fixed so Gotcha! auto-enables the zapper
    • -
    • Autohold - Added player 3 and 4 to autohold notification window, labeled controller input
    • -
    -


    -

    Movies

    -


    -
      -
    • Fully implemented "bulletproof" read-only
    • -
    • Movie code now fully conforms to the Savestate section of the Laws of TAS
    • -
    • Fixed a potential desync that plays out an extra frame without an update to the frame count involving heavy lua use, joypad.get, and a loadstate
    • -
    • Movie support for microphone
    • -
    • Movies now have a "finished" mode.  If a playback stops the movie isn't cleared from memory, and can be replayed or a state loaded Similar functionality as DeSmuME and GENS rerecording
    • -
    • New PPU flag in movie headers (doesn't change an emulators PPU state when loading a movie)
    • -
    • Much faster movie loading and movie-savestate loading
    • -
    • Made gamepad 2 off by default (so less movies should have unused player 2 data)
    • -
    • Implemented a "full savestate-movie load" mode similar to the implementation in VBA-rr and SNES9x-rr.  In this mode loading a savestate in read+write doesn't truncate the movie to its frame count immediately.  Instead it waits until input is recording into the movie (next frame).  For win32 this feature is togglable in movie options and the context menu.  For SDL this is off by default and a toggle will need to be added
    • -
    • Movie + loadstate errors are handled more gracefully now, with more informative error messages and the movie doesn't have to stop if backups are enabled
    • -
    • Fix PlayMovieFromBeginning when using a movie that starts from savestate
    • -
    -


    -

    Lua

    -
      -
    • fix bug that caused zapper.read() to crash when movie playback ends
    • -
    • Win32 - Added option for palette selection as color for LUA colors. Included is a LUA script to display all choices with the value used to pick displayed color
    • -
    -


    -

    New Lua functions

    -
      -
    • movie.ispoweron()
    • -
    • movie.isfromsavestate()
    • -
    • emu.addgamegenie()
    • -
    • emu.delgamegenie()
    • -
    • savestate.object() which is savestate.create() with intuitive numbering under windows
    • -
    • gui.getpixel() which gets any gui.pixel() set pixel colors, and possibly other functions
    • -
    • emu.getscreenpixel() which gets the RGB and Palette of any pixel on the screen
    • -
    • lua function movie.getfilename() which returns the current movie filename without the path included
    • -
    -


    -

    Input Display

    -
      -
    • Input display updates on loadstate
    • -
    • Input display overhaul that uses different colors for different input contexts
    • -
    • Input display now shows both currently pressed buttons and buttons held the previous frame
    • -
    -


    -

    Win32

    -
      -
    • Added NTSC 2x scalar option with some CFG config options of it's own Added Ram Search hotkeys for the first 6 search types in the list
    • -
    • Add Cheat buttons for Ram Search and Ram Watch
    • -
    • With special scaler in window mode, it's possible to resize to anything above the minimum.
    • -
    • Recording a new movie adds it to recent movies list
    • -
    • Replay dialog, when selecting a movie in a relative path (.\movies for example), the recent movies list stores an absolute path instead
    • -
    • Replay dialog shows PAL flag and New PPU flags
    • -
    • CDLogger - fixed bug preventing correct interrupt vectors from logging
    • -
    • Memwatch - ignore spaces at the beginnign of an address in the address boxes
    • -
    • Replay dialog - fix bug that was causing it to always report savestate movies as soft-reset
    • -
    -


    -

    Debugger

    -


    -
      -
    • Added conditional debugging option 'K', for bank PC is on
    • -
    • Fixed bug involving pausing emulation outside of the debugger, then trying to use the debugger commands, and having the CPU registers become corrupted
    • -
    • Made debugger able to break on and distinguish Stack reads/writes
    • -
    -


    -

    Hex Editor

    -


    -
      -
    • Added "Goto" command
    • -
    • Made the Hex Editor display the Frozen, Bookmarked, etc. status of the selected address, and made the Frozen color override the Bookmarked color.
    • -
    -


    -

    Cheat Search

    -


    -
      -
    • Made enabling/disabling cheats no longer deselect the selected cheat
    • -
    • Added context menu to Cheat Dialog Cheat Listbox, populated list with Toggle Cheat, Poke Cheat Value, and Goto In Hex Editor
    • -
    • Enabled multi-select for Cheat menu to allow multiple toggles and deletes
    • -
    • Made cheat menu's Pause When Active effect immediate
    • -
    -


    -

    GUI

    -


    -
      -
    • Added Tools - GUI option to partially disable visual themes, so the emulator can be made to look like it did in 2.1.1 and earlier releases. Drag & Drop - if dropping a .fcm with no ROM loaded, prompt for one (same functionality that was added to .fm2 files)
    • -
    • Added single-instance mode, which makes starting a second copy of FCEUX load the file into the first, then exit.Mode off by default, togglable under Config - GUI
    • -
    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.1.4 (changelog)

    + +
    + +

    +

    What's New? 2.1.4a

    +

    Released 01 June 2010

    +

    2.1.4 is a maintenance release that fixes these bugs in 2.1.4:

    +

    fix crash bug on .fcm convert

    +

    fix erroneous reporting of savestate past the end of movie error during read-only loadstates

    +


    +

    Released 31 May 2010

    +


    +


    +

    The 2.1.4 release fixes many bugs and adds new features compared to 2.1.3. In addition it also fixes up the movie code significantly; fixing implementation problems, loading speed, adding new features, and fixing bugs. 

    +


    +

    Common 

    +
      +
    • Added microphone support option. When enabled, Port 2 Start activates the Microphone
    • +
    • Prevent .zip files containing no recognized files from causing crash
    • +
    • Autohold - Added player 3 and 4 to autohold notification window, labeled controller input
    • +
    • mapper 19 savestate fix mirroring for "Dream Master (J)" corrected to "four-screen" by CRC check
    • +
    • Disable auto-savestates during turbo 
    • +
    • Fixed so Gotcha! auto-enables the zapper
    • +
    • Autohold - Added player 3 and 4 to autohold notification window, labeled controller input
    • +
    +


    +

    Movies

    +


    +
      +
    • Fully implemented "bulletproof" read-only
    • +
    • Movie code now fully conforms to the Savestate section of the Laws of TAS
    • +
    • Fixed a potential desync that plays out an extra frame without an update to the frame count involving heavy lua use, joypad.get, and a loadstate
    • +
    • Movie support for microphone
    • +
    • Movies now have a "finished" mode.  If a playback stops the movie isn't cleared from memory, and can be replayed or a state loaded Similar functionality as DeSmuME and GENS rerecording
    • +
    • New PPU flag in movie headers (doesn't change an emulators PPU state when loading a movie)
    • +
    • Much faster movie loading and movie-savestate loading
    • +
    • Made gamepad 2 off by default (so less movies should have unused player 2 data)
    • +
    • Implemented a "full savestate-movie load" mode similar to the implementation in VBA-rr and SNES9x-rr.  In this mode loading a savestate in read+write doesn't truncate the movie to its frame count immediately.  Instead it waits until input is recording into the movie (next frame).  For win32 this feature is togglable in movie options and the context menu.  For SDL this is off by default and a toggle will need to be added
    • +
    • Movie + loadstate errors are handled more gracefully now, with more informative error messages and the movie doesn't have to stop if backups are enabled
    • +
    • Fix PlayMovieFromBeginning when using a movie that starts from savestate
    • +
    +


    +

    Lua

    +
      +
    • fix bug that caused zapper.read() to crash when movie playback ends
    • +
    • Win32 - Added option for palette selection as color for LUA colors. Included is a LUA script to display all choices with the value used to pick displayed color
    • +
    +


    +

    New Lua functions

    +
      +
    • movie.ispoweron()
    • +
    • movie.isfromsavestate()
    • +
    • emu.addgamegenie()
    • +
    • emu.delgamegenie()
    • +
    • savestate.object() which is savestate.create() with intuitive numbering under windows
    • +
    • gui.getpixel() which gets any gui.pixel() set pixel colors, and possibly other functions
    • +
    • emu.getscreenpixel() which gets the RGB and Palette of any pixel on the screen
    • +
    • lua function movie.getfilename() which returns the current movie filename without the path included
    • +
    +


    +

    Input Display

    +
      +
    • Input display updates on loadstate
    • +
    • Input display overhaul that uses different colors for different input contexts
    • +
    • Input display now shows both currently pressed buttons and buttons held the previous frame
    • +
    +


    +

    Win32

    +
      +
    • Added NTSC 2x scalar option with some CFG config options of it's own Added Ram Search hotkeys for the first 6 search types in the list
    • +
    • Add Cheat buttons for Ram Search and Ram Watch
    • +
    • With special scaler in window mode, it's possible to resize to anything above the minimum.
    • +
    • Recording a new movie adds it to recent movies list
    • +
    • Replay dialog, when selecting a movie in a relative path (.\movies for example), the recent movies list stores an absolute path instead
    • +
    • Replay dialog shows PAL flag and New PPU flags
    • +
    • CDLogger - fixed bug preventing correct interrupt vectors from logging
    • +
    • Memwatch - ignore spaces at the beginnign of an address in the address boxes
    • +
    • Replay dialog - fix bug that was causing it to always report savestate movies as soft-reset
    • +
    +


    +

    Debugger

    +


    +
      +
    • Added conditional debugging option 'K', for bank PC is on
    • +
    • Fixed bug involving pausing emulation outside of the debugger, then trying to use the debugger commands, and having the CPU registers become corrupted
    • +
    • Made debugger able to break on and distinguish Stack reads/writes
    • +
    +


    +

    Hex Editor

    +


    +
      +
    • Added "Goto" command
    • +
    • Made the Hex Editor display the Frozen, Bookmarked, etc. status of the selected address, and made the Frozen color override the Bookmarked color.
    • +
    +


    +

    Cheat Search

    +


    +
      +
    • Made enabling/disabling cheats no longer deselect the selected cheat
    • +
    • Added context menu to Cheat Dialog Cheat Listbox, populated list with Toggle Cheat, Poke Cheat Value, and Goto In Hex Editor
    • +
    • Enabled multi-select for Cheat menu to allow multiple toggles and deletes
    • +
    • Made cheat menu's Pause When Active effect immediate
    • +
    +


    +

    GUI

    +


    +
      +
    • Added Tools - GUI option to partially disable visual themes, so the emulator can be made to look like it did in 2.1.1 and earlier releases. Drag & Drop - if dropping a .fcm with no ROM loaded, prompt for one (same functionality that was added to .fm2 files)
    • +
    • Added single-instance mode, which makes starting a second copy of FCEUX load the file into the first, then exit.Mode off by default, togglable under Config - GUI
    • +
    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Produce electronic books easily

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew215.html b/web/help/WhatsNew215.html index 49a05aae..199240c1 100644 --- a/web/help/WhatsNew215.html +++ b/web/help/WhatsNew215.html @@ -1,148 +1,339 @@ - - + + + + + - What's New? 2.1.5 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.1.5 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.1.5 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.1.5

    -

    Released 04 June 2011

    -


    -


    -

    The 2.1.5 release fixes a lot of bugs and brings various improvements to the prior 2.1.4a release. In addition, the SDL port has improved signficantly; completely overhauling the GTK2 GUI, fixing many sound issues, and fixing a variety of bugs.

    -


    -

    Common

    -
      -
    • Fixed compatibility issue with Young Indiana Jones Chronicles
    • -
    • Fixed bug in new PPU that made some intensify bits not get applied to output (fixed flashing siren screen in Werefolf)
    • -
    • Fix many segmentation faults related to file handling
    • -
    -


    -

    Movies

    -


    -
      -
    • Slight performance increase when loading movies
    • -
    • Fixed read-only loadstate error messages and logic
    • -
    -


    -

    Lua

    -
      -
    • Lua socket added to built-in lua library
    • -
    • Fixed speed.mode() function so that normal turns off turbo
    • -
    -


    -

    New Lua functions

    -
      -
    • gui.savescreenshotas()
    • -
    • sound.get()
    • -
    -


    -

    Win32

    -
      -
    • Fixed bug where PPU toggling toggled the Game Genie as well
    • -
    • Fixed some minor GUI issues
    • -
    • Added avi capture commandline argument and related parameters
    • -
    • Fix input selection for Famicom Expansion port
    • -
    -


    -

    Debugger

    -


    -
      -
    • Fixed Ram Search to only display valid RAM addresses (0000-07FF and 6000-7FFF)
    • -
    • Fixed crash when re-opening debugging window
    • -
    -


    -

    Hex Editor

    -


    -
      -
    • Added a confirmation prompt before removing all bookmarks
    • -
    -


    -

    Ram Watch / Ram Search

    -


    -
      -
    • Fixed the multiple selection of watches
    • -
    • Added support for Multiple selection of addresses in RamWatch Fixed issue with restoration of the selection range in RamWatch
    • -
    -


    -

    TasEdit

    -


    -
      -
    • General cleanup
    • -
    • Fixed crash when truncating while turbo was enabled
    • -
    • Invalidate greenzone when re-recording earlier portions of a movie
    • -
    -


    -

    GUI

    -


    -
      -
    • Added "SaveStateAs" menu item
    • -
    • Display movie name at the top of the main window
    • -
    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free help authoring tool

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.1.5 (changelog)

    + +
    + +

    +

    What's New? 2.1.5

    +

    Released 04 June 2011

    +


    +


    +

    The 2.1.5 release fixes a lot of bugs and brings various improvements to the prior 2.1.4a release. In addition, the SDL port has improved signficantly; completely overhauling the GTK2 GUI, fixing many sound issues, and fixing a variety of bugs.

    +


    +

    Common 

    +
      +
    • Fixed compatibility issue with Young Indiana Jones Chronicles
    • +
    • Fixed bug in new PPU that made some intensify bits not get applied to output (fixed flashing siren screen in Werefolf)
    • +
    • Fix many segmentation faults related to file handling
    • +
    +


    +

    Movies

    +


    +
      +
    • Slight performance increase when loading movies
    • +
    • Fixed read-only loadstate error messages and logic
    • +
    +


    +

    Lua

    +
      +
    • Lua socket added to built-in lua library
    • +
    • Fixed speed.mode() function so that normal turns off turbo
    • +
    +


    +

    New Lua functions

    +
      +
    • gui.savescreenshotas()
    • +
    • sound.get()
    • +
    +


    +

    Win32

    +
      +
    • Fixed bug where PPU toggling toggled the Game Genie as well
    • +
    • Fixed some minor GUI issues
    • +
    • Added avi capture commandline argument and related parameters
    • +
    • Fix input selection for Famicom Expansion port
    • +
    +


    +

    Debugger

    +


    +
      +
    • Fixed Ram Search to only display valid RAM addresses (0000-07FF and 6000-7FFF)
    • +
    • Fixed crash when re-opening debugging window
    • +
    +


    +

    Hex Editor

    +


    +
      +
    • Added a confirmation prompt before removing all bookmarks
    • +
    +


    +

    Ram Watch / Ram Search

    +


    +
      +
    • Fixed the multiple selection of watches
    • +
    • Added support for Multiple selection of addresses in RamWatch Fixed issue with restoration of the selection range in RamWatch
    • +
    +


    +

    TasEdit

    +


    +
      +
    • General cleanup
    • +
    • Fixed crash when truncating while turbo was enabled
    • +
    • Invalidate greenzone when re-recording earlier portions of a movie
    • +
    +


    +

    GUI

    +


    +
      +
    • Added "SaveStateAs" menu item
    • +
    • Display movie name at the top of the main window
    • +
    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: iPhone web sites made easy

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew220.html b/web/help/WhatsNew220.html index d5d167a6..1a87cbcb 100644 --- a/web/help/WhatsNew220.html +++ b/web/help/WhatsNew220.html @@ -1,252 +1,443 @@ - - + + + + + - What's New? 2.2.0 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.2.0 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.2.0 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.2.0

    -

    Released -- 27 November 2012

    -


    -


    -

    The 2.2.0 release fixes a lot of bugs and adds many new features to prior releases, increasing game compatibility and enhancing usability of both Windows and SDL ports. The Windows version also includes major improvement of debugging tools and introduces the new powerful toolset – TAS Editor v1.0 – created to boost efficiency and ease of Tool-Assisted Speedrunning.

    -


    -

    Common

    -
      -
    • Fixed crash when using machine with no sound card
    • -
    • Fixed long savestate messages containing path
    • -
    • Soft reset and power switch messages
    • -
    • All onscreen messages are now logged to Message Log
    • -
    • Fixed wrong default palette entry
    • -
    • Fixed bug when loading UNIF games
    • -
    • Improved HUD text rendering wrapping
    • -
    • "Display FPS" option
    • -
    -


    -

    Emulation

    -
      -
    • PAL/NTSC noise channel bug fixed
    • -
    • All latest mapper changes from fceu-mm
    • -
    • Also added mappers 176, 116, 156, 252, 28
    • -
    • Fixed mappers 242, 227, 115, 248, 12, 164, 15, 253, 23, 178, 90, 73 and many others
    • -
    • Straighten out bandai m159/m016 handling and add valid null-EEPROM emulation to get those games booting.
    • -
    • Add ability for CNROM games to choose whether they have bus conflicts (fixes Colorful Dragon (Unl) (Sachen), since it flakes out if bus conflicts are emulated)
    • -
    • Fixed bus conflict emulation, no kage no densetsu bug anymore
    • -
    • Fixed newppu bug which prevented metroid from booting, CHR RAM was not getting initialized to anything
    • -
    • Newppu - fix bug in scroll reg logic causing mis-scrolls in p'radikus conflict
    • -
    -


    -

    Movies

    -
      -
    • Fixed old bug in "Play Movie From Beginning"
    • -
    • Fixed replay engine bug that doubles the last input of the movie
    • -
    • Fixed movie savestates logic, loading post-movie savestates from different timeline is not allowed in read-only
    • -
    • Fixed savestates filenaming bug when working with a movie
    • -
    • Added support for HUD recording in AVI dumping
    • -
    • Rerecords counter display
    • -
    • Config->Movie options->Always suggest Read-Only replay (for Replay dialog). No more accidental rewrites!
    • -
    • Removed "Lag Counter Reset" hotkey, as it was obsolete since FCEUX 2.0.2
    • -
    -


    -

    Lua

    -
      -
    • Fixed lua drawing alpha blending
    • -
    • Auto-clearing previous frame drawings (same behaviour as other emulators)
    • -
    • New library: taseditor (Windows-only) - contains 24 functions, see taseditor.chm
    • -
    -


    -

    New Lua functions:

    -
      -
    • emu.paused()
    • -
    • emu.setlagflag()
    • -
    • joypad.getimmediate()
    • -
    -


    -

    New scripts:

    -
      -
    • BoulderDash_AmoebaAI.lua
    • -
    • ButtonCount.lua
    • -
    • CustomLagIndicator_RvT.lua
    • -
    • RBIBaseball.lua
    • -
    • SoundDisplay.lua
    • -
    • SoundDisplay2.lua
    • -
    • taseditor\InputDisplay_for_Selection.lua
    • -
    • taseditor\InvertSelection.lua
    • -
    • taseditor\RecordBackwards.lua
    • -
    • taseditor\ShowNotes.lua
    • -
    • taseditor\Swap1P2P.lua
    • -
    • taseditor\TrackNoise.lua
    • -
    -


    -

    Win32

    -
      -
    • Total revamp of fulscreen support
    • -
    • Fixed graphic tearing with vertical sync enabled
    • -
    • Added "Maintain aspect ratio" option to Video config
    • -
    • Added "Hide mouse cursor" and "Use console BG color for empty areas" options to Video config
    • -
    • Added "Switch fullscreen by double-click" option to GUI config
    • -
    • Added "Force Grayscale" option to Palette config
    • -
    • Fixed crashes and bugs caused by 2.1.5 allowing hotkeys without ROM loaded
    • -
    • Lua console now gets proper file path when selecting a file from the recent menu
    • -
    • Fixed context menus to use rightclicks in context menus correctly
    • -
    • Reload hotkey now also supports removing invalid filenames in Recent ROMs
    • -
    • Replay dialog speedup, it doesn't search for movies in fceux root folder anymore
    • -
    • Support multibyte languages for opening files through drag&drop (except for Lua files)
    • -
    • Loading TAS Editor projects (*.fm3) by drag&drop
    • -
    • Fixed bug with Input Config not displaying some key names
    • -
    • Launch tools hotkeys shown in menu; general cleanup of menu/settings, changed some checkboxes to radiobuttons
    • -
    • Added "Clear" button to Message Log
    • -
    -


    -

    TAS Editor

    -
      -
    • Completely rewritten tool with brand new architecture and design. Too many changes to enlist, see taseditor.chm
    • -
    -


    -

    Debugger

    -
      -
    • General window layout cleanup; different font; ".DEB files" can be switched off; etc
    • -
    • Deleting a breakpoint/bookmark leaves selection in the list
    • -
    • Fixed mysterious out of bounds condition while editing breakpoints
    • -
    • Fixed RAM peek by a rightclick on left pane
    • -
    • Allow Frame Advancing when Debugger is in breakpoint state
    • -
    • Disabled breakpoints now don't impose slowdown
    • -
    • When a breakpoint is hit, it becomes highlighed (selected) in the breakpoints list
    • -
    • Show the number of breakpoints (enabled and total) above the breakpoints list
    • -
    • ">" points at current line in disassembly
    • -
    • Improved stack display
    • -
    • Added "CPU cycles" and "Instructions" counters (cumulative and delta)
    • -
    • Added "Cycles counter exceeds N" and "Instructions counter exceeds N" type of breakpoints
    • -
    • Single click on any address copies this address to the "Seek To" field and "Bookmark Add" field
    • -
    • Double-click on any address prompts "Add Breakpoint here" dialog
    • -
    • "ROM offsets" option displays real ROM addresses in the Disassembly window
    • -
    • Fixed conditional breakpoints bug: the error message didn't appear when editing a breakpoint
    • -
    • Fixed and improved Symbolic debug (Names and Comments display)
    • -
    • Added Bookmarks naming
    • -
    • Cleaned up and vastly improved debugging documentation
    • -
    -


    -

    Trace Logger

    -
      -
    • Added "Symbolic trace" option
    • -
    • "RTS" instructions now output the subroutine address/name
    • -
    • Added "Use Stack Pointer for code tabbing (nesting visualization)" option
    • -
    • Added "To the left from disassembly text" option for log format customization
    • -
    • Added "Log current Frame number" option
    • -
    • Added "Log emulator messages" option
    • -
    • Added "Log breakpoint hits" option
    • -
    • Fixed bug with trying to log to file without choosing a filename
    • -
    • Tracer now also updates its window when user pauses the game, not just when Debugger snaps
    • -
    -


    -

    Code/Data Logger

    -
      -
    • Now can log data access from RAM code
    • -
    • "Save Unused Data" button complements "Save Stripped iNes Rom" feature
    • -
    • Now can log VROM access (CHR banks of the ROM) when NewPPU is enabled
    • -
    -


    -

    Hex Editor

    -
      -
    • Display 0x5000-0x5FFF contents
    • -
    • Ctrl+F opens Find dialog
    • -
    -


    -

    RAM Watch / RAM Search

    -
      -
    • Updating list when emulator is paused (on Power or when resetting search)
    • -
    • Fixed loading Data Size and Data Type from a .wch, now corrupted .wch won't crash
    • -
    -


    -

    Cheats

    -
      -
    • Added Compare box to the Cheats window
    • -
    • Don't lose cheat compare value when toggle cheat enables through UI
    • -
    • Parse cheat files with non-ASCII characters properly
    • -
    -


    -

    SDL

    -
      -
    • gtk 2.24 now recommended
    • -
    • added gtk hotkey configuration dialog
    • -
    • updated/added various gui elements for options
    • -
    • new option: SDL.ShowFPS
    • -
    • new option: SDL.Input..EnableOppositeDirectional - allow/disallow simultaneous right+left/up+down input
    • -
    • fixed various build issues
    • -
    • fixed segfault occuring during particular sequences in the cheat menu
    • -
    • fixed potential segfault with gui
    • -
    • fixed segfault issue on debian/ubuntu with proprietary nvidia drivers
    • -
    • now compatible with llvm/clang++
    • -
    • added build option to dynamically link lua
    • -
    • updated default server configuration file to "fceux-server.conf" (from "fceu-server.conf")
    • -
    • updated manpage and documentation
    • -
    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Free Web Help generator

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.2.0 (changelog)

    + +
    + +

    +

    What's New? 2.2.0

    +

    Released -- 27 November 2012

    +


    +


    +

    The 2.2.0 release fixes a lot of bugs and adds many new features to prior releases, increasing game compatibility and enhancing usability of both Windows and SDL ports. The Windows version also includes major improvement of debugging tools and introduces the new powerful toolset – TAS Editor v1.0 – created to boost efficiency and ease of Tool-Assisted Speedrunning.

    +


    +

    Common 

    +
      +
    • Fixed crash when using machine with no sound card
    • +
    • Fixed long savestate messages containing path
    • +
    • Soft reset and power switch messages
    • +
    • All onscreen messages are now logged to Message Log
    • +
    • Fixed wrong default palette entry
    • +
    • Fixed bug when loading UNIF games
    • +
    • Improved HUD text rendering wrapping
    • +
    • "Display FPS" option
    • +
    +


    +

    Emulation

    +
      +
    • PAL/NTSC noise channel bug fixed
    • +
    • All latest mapper changes from fceu-mm
    • +
    • Also added mappers 176, 116, 156, 252, 28
    • +
    • Fixed mappers 242, 227, 115, 248, 12, 164, 15, 253, 23, 178, 90, 73 and many others
    • +
    • Straighten out bandai m159/m016 handling and add valid null-EEPROM emulation to get those games booting.
    • +
    • Add ability for CNROM games to choose whether they have bus conflicts (fixes Colorful Dragon (Unl) (Sachen), since it flakes out if bus conflicts are emulated)
    • +
    • Fixed bus conflict emulation, no kage no densetsu bug anymore
    • +
    • Fixed newppu bug which prevented metroid from booting, CHR RAM was not getting initialized to anything
    • +
    • Newppu - fix bug in scroll reg logic causing mis-scrolls in p'radikus conflict
    • +
    +


    +

    Movies

    +
      +
    • Fixed old bug in "Play Movie From Beginning"
    • +
    • Fixed replay engine bug that doubles the last input of the movie
    • +
    • Fixed movie savestates logic, loading post-movie savestates from different timeline is not allowed in read-only
    • +
    • Fixed savestates filenaming bug when working with a movie
    • +
    • Added support for HUD recording in AVI dumping
    • +
    • Rerecords counter display
    • +
    • Config->Movie options->Always suggest Read-Only replay (for Replay dialog). No more accidental rewrites!
    • +
    • Removed "Lag Counter Reset" hotkey, as it was obsolete since FCEUX 2.0.2
    • +
    +


    +

    Lua

    +
      +
    • Fixed lua drawing alpha blending
    • +
    • Auto-clearing previous frame drawings (same behaviour as other emulators)
    • +
    • New library: taseditor (Windows-only) - contains 24 functions, see taseditor.chm
    • +
    +


    +

    New Lua functions:

    +
      +
    • emu.paused()
    • +
    • emu.setlagflag()
    • +
    • joypad.getimmediate()
    • +
    +


    +

    New scripts:

    +
      +
    • BoulderDash_AmoebaAI.lua
    • +
    • ButtonCount.lua
    • +
    • CustomLagIndicator_RvT.lua
    • +
    • RBIBaseball.lua
    • +
    • SoundDisplay.lua
    • +
    • SoundDisplay2.lua
    • +
    • taseditor\InputDisplay_for_Selection.lua
    • +
    • taseditor\InvertSelection.lua
    • +
    • taseditor\RecordBackwards.lua
    • +
    • taseditor\ShowNotes.lua
    • +
    • taseditor\Swap1P2P.lua
    • +
    • taseditor\TrackNoise.lua
    • +
    +


    +

    Win32

    +
      +
    • Total revamp of fulscreen support
    • +
    • Fixed graphic tearing with vertical sync enabled
    • +
    • Added "Maintain aspect ratio" option to Video config
    • +
    • Added "Hide mouse cursor" and "Use console BG color for empty areas" options to Video config
    • +
    • Added "Switch fullscreen by double-click" option to GUI config
    • +
    • Added "Force Grayscale" option to Palette config
    • +
    • Fixed crashes and bugs caused by 2.1.5 allowing hotkeys without ROM loaded
    • +
    • Lua console now gets proper file path when selecting a file from the recent menu
    • +
    • Fixed context menus to use rightclicks in context menus correctly
    • +
    • Reload hotkey now also supports removing invalid filenames in Recent ROMs
    • +
    • Replay dialog speedup, it doesn't search for movies in fceux root folder anymore
    • +
    • Support multibyte languages for opening files through drag&drop (except for Lua files)
    • +
    • Loading TAS Editor projects (*.fm3) by drag&drop
    • +
    • Fixed bug with Input Config not displaying some key names
    • +
    • Launch tools hotkeys shown in menu; general cleanup of menu/settings, changed some checkboxes to radiobuttons
    • +
    • Added "Clear" button to Message Log
    • +
    +


    +

    TAS Editor

    +
      +
    • Completely rewritten tool with brand new architecture and design. Too many changes to enlist, see taseditor.chm
    • +
    +


    +

    Debugger

    +
      +
    • General window layout cleanup; different font; ".DEB files" can be switched off; etc
    • +
    • Deleting a breakpoint/bookmark leaves selection in the list
    • +
    • Fixed mysterious out of bounds condition while editing breakpoints
    • +
    • Fixed RAM peek by a rightclick on left pane
    • +
    • Allow Frame Advancing when Debugger is in breakpoint state
    • +
    • Disabled breakpoints now don't impose slowdown
    • +
    • When a breakpoint is hit, it becomes highlighed (selected) in the breakpoints list
    • +
    • Show the number of breakpoints (enabled and total) above the breakpoints list
    • +
    • ">" points at current line in disassembly
    • +
    • Improved stack display
    • +
    • Added "CPU cycles" and "Instructions" counters (cumulative and delta)
    • +
    • Added "Cycles counter exceeds N" and "Instructions counter exceeds N" type of breakpoints
    • +
    • Single click on any address copies this address to the "Seek To" field and "Bookmark Add" field
    • +
    • Double-click on any address prompts "Add Breakpoint here" dialog
    • +
    • "ROM offsets" option displays real ROM addresses in the Disassembly window
    • +
    • Fixed conditional breakpoints bug: the error message didn't appear when editing a breakpoint
    • +
    • Fixed and improved Symbolic debug (Names and Comments display)
    • +
    • Added Bookmarks naming
    • +
    • Cleaned up and vastly improved debugging documentation
    • +
    +


    +

    Trace Logger

    +
      +
    • Added "Symbolic trace" option
    • +
    • "RTS" instructions now output the subroutine address/name
    • +
    • Added "Use Stack Pointer for code tabbing (nesting visualization)" option
    • +
    • Added "To the left from disassembly text" option for log format customization
    • +
    • Added "Log current Frame number" option
    • +
    • Added "Log emulator messages" option
    • +
    • Added "Log breakpoint hits" option
    • +
    • Fixed bug with trying to log to file without choosing a filename
    • +
    • Tracer now also updates its window when user pauses the game, not just when Debugger snaps
    • +
    +


    +

    Code/Data Logger

    +
      +
    • Now can log data access from RAM code
    • +
    • "Save Unused Data" button complements "Save Stripped iNes Rom" feature
    • +
    • Now can log VROM access (CHR banks of the ROM) when NewPPU is enabled
    • +
    +


    +

    Hex Editor

    +
      +
    • Display 0x5000-0x5FFF contents
    • +
    • Ctrl+F opens Find dialog
    • +
    +


    +

    RAM Watch / RAM Search

    +
      +
    • Updating list when emulator is paused (on Power or when resetting search)
    • +
    • Fixed loading Data Size and Data Type from a .wch, now corrupted .wch won't crash
    • +
    +


    +

    Cheats

    +
      +
    • Added Compare box to the Cheats window
    • +
    • Don't lose cheat compare value when toggle cheat enables through UI
    • +
    • Parse cheat files with non-ASCII characters properly
    • +
    +


    +

    SDL

    +
      +
    • gtk 2.24 now recommended
    • +
    • added gtk hotkey configuration dialog
    • +
    • updated/added various gui elements for options
    • +
    • new option: SDL.ShowFPS
    • +
    • new option: SDL.Input..EnableOppositeDirectional - allow/disallow simultaneous right+left/up+down input
    • +
    • fixed various build issues
    • +
    • fixed segfault occuring during particular sequences in the cheat menu
    • +
    • fixed potential segfault with gui
    • +
    • fixed segfault issue on debian/ubuntu with proprietary nvidia drivers
    • +
    • now compatible with llvm/clang++ 
    • +
    • added build option to dynamically link lua
    • +
    • updated default server configuration file to "fceux-server.conf" (from "fceu-server.conf")
    • +
    • updated manpage and documentation
    • +
    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Free HTML Help documentation generator

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew221.html b/web/help/WhatsNew221.html index 34349f41..0ab617c7 100644 --- a/web/help/WhatsNew221.html +++ b/web/help/WhatsNew221.html @@ -1,186 +1,377 @@ - - + + + + + - What's New? 2.2.1 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.2.1 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.2.1 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.2.1

    -

    Released -- 10 March 2013

    -


    -


    -

    The 2.2.1 release fixes many bugs and adds a couple of new features. The most notable feature is "Auto-resume old play session", which is similar to "Suspending Play". Enable this option in the Config menu and now you can close ROMs or emulator anytime, next time the game state will be resumed from the closing point.

    -


    -

    Common

    -
      -
    • Speed up HUD text drawing
    • -
    -


    -

    Emulation

    -
      -
    • Finished mappers to boards conversion
    • -
    • Fixed mappers 99, 228, 18, 198, 24, 26, 69, 19
    • -
    • Mapper 115 - redesign according to the hardware tests
    • -
    • Fixed "you ling xing dong" by assigning to mapper 192
    • -
    • Fixed crash when four-screen bit is set after CRC check
    • -
    • UNIF: verbose/safe chunk loading, fixes some crashes
    • -
    -


    -

    Lua

    -
      -
    • removed "shadow pixels" from gui.text()
    • -
    -


    -

    New Lua functions:

    -
      -
    • gui.parsecolor()
    • -
    -


    -

    New scripts:

    -
      -
    • JumpingFCEUXWindow.lua
    • -
    -


    -

    Win32

    -
      -
    • Fixed "Enter New Input" dialog (Hotkeys mapping)
    • -
    • Fixed zapper and mouse positioning in fullscreen
    • -
    • Remodel "Video config" dialog
    • -
    • Added "TV Aspect (4:3)"
    • -
    • Holding Shift when resizing FCEUX window inverts "Force integral factors" meaning
    • -
    • Fixed window regions redrawing
    • -
    • Added the option to define custom emulation speed (NES->Emulation Speed->Set Custom Speed)
    • -
    • Now Frame Advance timings (initial delay and speed) can be tweaked by user
    • -
    • Added Config->Enable->Auto-resume old play session
    • -
    • Moved "Config->Game Genie" to "Config->Enable->Game Genie ROM"
    • -
    • Play movie dialog shows New PPU in red if the required setting does not match
    • -
    • Fixed NameTable Viewer crash when the corresponding nametable RAM is not available on the cart
    • -
    • The number of active cheats is displayed on screen when a ROM is loaded
    • -
    • PPU/PAL/Input type changing is disabled when a movie is playing
    • -
    -


    -

    TAS Editor

    -
      -
    • Fixed keyboard accelerators when editing Notes
    • -
    • Fixed Greenzone saving while emulator is unpaused
    • -
    • Fixed drawing bugs when the Playback cursor moves more than once within one update
    • -
    • Changed "Compact save" dialog, added 4 options of Greenzone saving
    • -
    • Added "Config->Project file saving options"
    • -
    • Changed "Follow cursor" logic, now the Piano Roll doesn't follow Playback cursor while seeking
    • -
    • No "Autopause at the end of the Movie" when Recording
    • -
    • Fixed bug when adding new item to History Log
    • -
    • Fixed Bookmarks List height on Windows 7
    • -
    -


    -

    Trace Logger

    -
      -
    • Fixed RAM-located code logging when CDLogger options are enabled
    • -
    • Fixed automatic window update when a breakpoint is hit
    • -
    • Fixed RTS padding
    • -
    -


    -

    Code/Data Logger

    -
      -
    • Added current CDL filename field and default CDL naming
    • -
    • Added "Auto-save .CDL when closing ROMs" option
    • -
    • Added "Auto-load .CDL when opening the window" option
    • -
    • Added "Auto-resume logging when loading ROMs" option
    • -
    • Improved CHR logging, now it also logs the data when using Old PPU
    • -
    -


    -

    Hex Editor

    -
      -
    • Show symbolic names in the window caption when "Symbolic debug" is enabled
    • -
    • Fixed crash when trying to save ROM to an invalid path
    • -
    • Fixed ROM coloring when using CDLogger data
    • -
    -


    -

    RAM Search

    -
      -
    • Added "Search ROM" option
    • -
    -


    -

    Cheats

    -
      -
    • Added "Add from CHT file..." button
    • -
    • Update the list of cheats when ROM is changed
    • -
    -


    -

    SDL

    -
      -
    • Use desktop resolution for fullscreen by setting SDL.XResolution and SDL.YResolution to 0 (new default is 0)
    • -
    • Fixed bug where "quit" hotkey would do nothing in '--nogui' mode
    • -
    • Fixed fullscreen zapper issues
    • -
    • Display a message dialog on errors in addition to printing to stderr
    • -
    • Added "Options->Auto-Resume Play"
    • -
    • Fixed build issues on various versions of OS X
    • -
    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easy CHM and documentation editor

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.2.1 (changelog)

    + +
    + +

    +

    What's New? 2.2.1

    +

    Released -- 10 March 2013

    +


    +


    +

    The 2.2.1 release fixes many bugs and adds a couple of new features. The most notable feature is "Auto-resume old play session", which is similar to "Suspending Play". Enable this option in the Config menu and now you can close ROMs or emulator anytime, next time the game state will be resumed from the closing point.

    +


    +

    Common 

    +
      +
    • Speed up HUD text drawing
    • +
    +


    +

    Emulation

    +
      +
    • Finished mappers to boards conversion
    • +
    • Fixed mappers 99, 228, 18, 198, 24, 26, 69, 19
    • +
    • Mapper 115 - redesign according to the hardware tests
    • +
    • Fixed "you ling xing dong" by assigning to mapper 192
    • +
    • Fixed crash when four-screen bit is set after CRC check
    • +
    • UNIF: verbose/safe chunk loading, fixes some crashes
    • +
    +


    +

    Lua

    +
      +
    • removed "shadow pixels" from gui.text()
    • +
    +


    +

    New Lua functions:

    +
      +
    • gui.parsecolor()
    • +
    +


    +

    New scripts:

    +
      +
    • JumpingFCEUXWindow.lua
    • +
    +


    +

    Win32

    +
      +
    • Fixed "Enter New Input" dialog (Hotkeys mapping)
    • +
    • Fixed zapper and mouse positioning in fullscreen
    • +
    • Remodel "Video config" dialog
    • +
    • Added "TV Aspect (4:3)"
    • +
    • Holding Shift when resizing FCEUX window inverts "Force integral factors" meaning
    • +
    • Fixed window regions redrawing
    • +
    • Added the option to define custom emulation speed (NES->Emulation Speed->Set Custom Speed)
    • +
    • Now Frame Advance timings (initial delay and speed) can be tweaked by user
    • +
    • Added Config->Enable->Auto-resume old play session
    • +
    • Moved "Config->Game Genie" to "Config->Enable->Game Genie ROM"
    • +
    • Play movie dialog shows New PPU in red if the required setting does not match
    • +
    • Fixed NameTable Viewer crash when the corresponding nametable RAM is not available on the cart
    • +
    • The number of active cheats is displayed on screen when a ROM is loaded
    • +
    • PPU/PAL/Input type changing is disabled when a movie is playing
    • +
    +


    +

    TAS Editor

    +
      +
    • Fixed keyboard accelerators when editing Notes
    • +
    • Fixed Greenzone saving while emulator is unpaused
    • +
    • Fixed drawing bugs when the Playback cursor moves more than once within one update
    • +
    • Changed "Compact save" dialog, added 4 options of Greenzone saving
    • +
    • Added "Config->Project file saving options"
    • +
    • Changed "Follow cursor" logic, now the Piano Roll doesn't follow Playback cursor while seeking
    • +
    • No "Autopause at the end of the Movie" when Recording
    • +
    • Fixed bug when adding new item to History Log
    • +
    • Fixed Bookmarks List height on Windows 7
    • +
    +


    +

    Trace Logger

    +
      +
    • Fixed RAM-located code logging when CDLogger options are enabled
    • +
    • Fixed automatic window update when a breakpoint is hit
    • +
    • Fixed RTS padding
    • +
    +


    +

    Code/Data Logger

    +
      +
    • Added current CDL filename field and default CDL naming
    • +
    • Added "Auto-save .CDL when closing ROMs" option
    • +
    • Added "Auto-load .CDL when opening the window" option
    • +
    • Added "Auto-resume logging when loading ROMs" option
    • +
    • Improved CHR logging, now it also logs the data when using Old PPU
    • +
    +


    +

    Hex Editor

    +
      +
    • Show symbolic names in the window caption when "Symbolic debug" is enabled
    • +
    • Fixed crash when trying to save ROM to an invalid path
    • +
    • Fixed ROM coloring when using CDLogger data
    • +
    +


    +

    RAM Search

    +
      +
    • Added "Search ROM" option
    • +
    +


    +

    Cheats

    +
      +
    • Added "Add from CHT file..." button
    • +
    • Update the list of cheats when ROM is changed
    • +
    +


    +

    SDL

    +
      +
    • Use desktop resolution for fullscreen by setting SDL.XResolution and SDL.YResolution to 0 (new default is 0)
    • +
    • Fixed bug where "quit" hotkey would do nothing in '--nogui' mode
    • +
    • Fixed fullscreen zapper issues
    • +
    • Display a message dialog on errors in addition to printing to stderr
    • +
    • Added "Options->Auto-Resume Play"
    • +
    • Fixed build issues on various versions of OS X
    • +
    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Full-featured EBook editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew222.html b/web/help/WhatsNew222.html index 34419719..f6689ba3 100644 --- a/web/help/WhatsNew222.html +++ b/web/help/WhatsNew222.html @@ -1,195 +1,386 @@ - - + + + + + - What's New? 2.2.2 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.2.2 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.2.2 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.2.2

    -

    Released -- 23 September 2013

    -


    -


    -

    The 2.2.2 release fixes a number of emulation bugs and adds many new features, most of which are related to debugging and reverse engineering.

    -


    -

    Common

    -
      -
    • Properly savestate NSF files
    • -
    • "Auto-resume old play session" now also works with NSFs
    • -
    -


    -

    Emulation

    -
      -
    • Fixed mappers 178, 28, 53, 154, 43, 253, 19, 2
    • -
    • Mapper 012 - added hardware dip for language select
    • -
    • UNIF PEC-586 - fixed render, added 512K cartridges suppport
    • -
    • Fixed UNIF 8157, UNIF T-262, UNIF DANCE2000
    • -
    • Palette RAM reading fix for Old PPU
    • -
    • Bring some improvements to New PPU from BizHawk, fix vtoggle5/6 back to vtoggle
    • -
    • Fixed mmc5 savestates
    • -
    -


    -

    Lua

    -
      -
    • Fix wrong frequency calculation in sound.get() function
    • -
    -


    -

    New Lua functions:

    -
      -
    • tobitstring()
    • -
    • memory.readword()
    • -
    • memory.readwordsigned()
    • -
    • debugger.hitbreakpoint()
    • -
    • debugger.getcyclescount()
    • -
    • debugger.getinstructionscount()
    • -
    • debugger.resetcyclescount()
    • -
    • debugger.resetinstructionscount()
    • -
    -


    -

    Win32

    -
      -
    • Added "Square pixels" option to Video Config
    • -
    • "TV Aspect" ratio can be customized, by default it's 4:3
    • -
    • Changed "Disable hardware acceleration" checkbox to a drop-down list with 3 options
    • -
    • Movie recording: remember last Author name when creating a new movie
    • -
    • Movie recording: added ability to record "Insert coin" command (for VS games)
    • -
    • When no script is currently running, Shift+L loads the most recent Lua script
    • -
    • Dynamic link to lua51.dll instead of static linking, because some external libraries might crash without lua51.dll
    • -
    • Updated 7z.dll to v9.22
    • -
    • A couple of fixes which deal with "multiple ROMs in a single archive" case
    • -
    • Auto-disable "Game Genie ROM" feature when no "gg.rom" file is found
    • -
    • Fixed "Single Instance Mode"
    • -
    -


    -

    TAS Editor

    -
      -
    • Comply with Lua movie.rerecordcounting() setting
    • -
    • Fixed workflow with "Auto-adjust Input according to Lag" disabled
    • -
    -


    -

    Debugger

    -
      -
    • Smart scrolling up/down by whole instructions - ported from an obscure version of FCEUXD 1.1
    • -
    • Scrolling maintains relative position of the ">" pointer inside the Disassembly window
    • -
    • Highlight PC pointer line when a breakpoint is hit
    • -
    • debuggerFontSize can be specified in fceux.cfg
    • -
    • Fixed storing and loading .deb files when working with archived ROMs
    • -
    • Fixed Cycles counter reset when loading an earlier savestate
    • -
    • Added Symbolic Debug naming by right-clicking any address or name
    • -
    • Symbolic names behave the same way as usual addresses
    • -
    • Newly created Bookmarks inherit existing symbolic name by default
    • -
    • Added CDL data column to the left from Disassembly, to distinguish executed branches of code from not executed
    • -
    • Added 'T' condition for breakpoints (it checks the bank of the accessed data, see docs)
    • -
    -


    -

    Trace Logger

    -
      -
    • The dialog window can be resized
    • -
    • Do not clear window log when stopping the logging
    • -
    • Added "Log Cycles count" and "Log Instructions count" options
    • -
    • Added Symbolic Debug naming by right-clicking any address or name
    • -
    • Clicking any address select the address
    • -
    • Double-clicking any address brings Debugger at the address
    • -
    • Added mouse wheel support
    • -
    • Only output "from $XXXX" when the subroutine was called by JSR
    • -
    -


    -

    PPU Viewer

    -
      -
    • Added "Mask unused graphics" feature (needs Code/Data Logger running)
    • -
    • Fixed window layout when using big fonts
    • -
    -


    -

    Hex Editor

    -
      -
    • Added "Highlighting" submenu and "Highlight Activity" feature
    • -
    • Added Symbolic Debug naming by right-clicking any address
    • -
    • Specify Data bank condition when adding a Breakpoint by context menu
    • -
    • Fixed bugs when saving files while working with ROMs in archives
    • -
    • hexeditorFontSize can be specified in fceux.cfg
    • -
    -


    -

    RAM Search/RAM Watch

    -
      -
    • Added "Hex Editor" button to RAM Search (right-clicking an address works as well)
    • -
    • Fixed RAM Watch bug when contents of old .wch file were mixed with the newly saved data
    • -
    -


    -

    SDL

    -
      -
    • "--periodicsaves" command line option
    • -
    • "--4buttonexit" command line option
    • -
    • "--loadstate X" and "--savestate X" command line options
    • -
    • Added Unity desktop support
    • -
    • Added otion to use system-provided LUA library instead of statically linked LUA
    • -
    • Fix issue where battery backup save was not being saved when using "Quit" hotkey
    • -
    • Fixed bug where FCEUX would take exclusive grab of input in windowed mode when resuming from pause
    • -
    -


    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Generate EPub eBooks with ease

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.2.2 (changelog)

    + +
    + +

    +

    What's New? 2.2.2

    +

    Released -- 23 September 2013

    +


    +


    +

    The 2.2.2 release fixes a number of emulation bugs and adds many new features, most of which are related to debugging and reverse engineering.

    +


    +

    Common 

    +
      +
    • Properly savestate NSF files
    • +
    • "Auto-resume old play session" now also works with NSFs
    • +
    +


    +

    Emulation

    +
      +
    • Fixed mappers 178, 28, 53, 154, 43, 253, 19, 2
    • +
    • Mapper 012 - added hardware dip for language select
    • +
    • UNIF PEC-586 - fixed render, added 512K cartridges suppport
    • +
    • Fixed UNIF 8157, UNIF T-262, UNIF DANCE2000
    • +
    • Palette RAM reading fix for Old PPU
    • +
    • Bring some improvements to New PPU from BizHawk, fix vtoggle5/6 back to vtoggle
    • +
    • Fixed mmc5 savestates
    • +
    +


    +

    Lua

    +
      +
    • Fix wrong frequency calculation in sound.get() function
    • +
    +


    +

    New Lua functions:

    +
      +
    • tobitstring()
    • +
    • memory.readword()
    • +
    • memory.readwordsigned()
    • +
    • debugger.hitbreakpoint()
    • +
    • debugger.getcyclescount()
    • +
    • debugger.getinstructionscount()
    • +
    • debugger.resetcyclescount()
    • +
    • debugger.resetinstructionscount()
    • +
    +


    +

    Win32

    +
      +
    • Added "Square pixels" option to Video Config
    • +
    • "TV Aspect" ratio can be customized, by default it's 4:3
    • +
    • Changed "Disable hardware acceleration" checkbox to a drop-down list with 3 options
    • +
    • Movie recording: remember last Author name when creating a new movie
    • +
    • Movie recording: added ability to record "Insert coin" command (for VS games)
    • +
    • When no script is currently running, Shift+L loads the most recent Lua script
    • +
    • Dynamic link to lua51.dll instead of static linking, because some external libraries might crash without lua51.dll
    • +
    • Updated 7z.dll to v9.22
    • +
    • A couple of fixes which deal with "multiple ROMs in a single archive" case
    • +
    • Auto-disable "Game Genie ROM" feature when no "gg.rom" file is found
    • +
    • Fixed "Single Instance Mode"
    • +
    +


    +

    TAS Editor

    +
      +
    • Comply with Lua movie.rerecordcounting() setting
    • +
    • Fixed workflow with "Auto-adjust Input according to Lag" disabled
    • +
    +


    +

    Debugger

    +
      +
    • Smart scrolling up/down by whole instructions - ported from an obscure version of FCEUXD 1.1
    • +
    • Scrolling maintains relative position of the ">" pointer inside the Disassembly window
    • +
    • Highlight PC pointer line when a breakpoint is hit
    • +
    • debuggerFontSize can be specified in fceux.cfg
    • +
    • Fixed storing and loading .deb files when working with archived ROMs
    • +
    • Fixed Cycles counter reset when loading an earlier savestate
    • +
    • Added Symbolic Debug naming by right-clicking any address or name
    • +
    • Symbolic names behave the same way as usual addresses
    • +
    • Newly created Bookmarks inherit existing symbolic name by default
    • +
    • Added CDL data column to the left from Disassembly, to distinguish executed branches of code from not executed
    • +
    • Added 'T' condition for breakpoints (it checks the bank of the accessed data, see docs)
    • +
    +


    +

    Trace Logger

    +
      +
    • The dialog window can be resized
    • +
    • Do not clear window log when stopping the logging
    • +
    • Added "Log Cycles count" and "Log Instructions count" options
    • +
    • Added Symbolic Debug naming by right-clicking any address or name
    • +
    • Clicking any address select the address
    • +
    • Double-clicking any address brings Debugger at the address
    • +
    • Added mouse wheel support
    • +
    • Only output "from $XXXX" when the subroutine was called by JSR
    • +
    +


    +

    PPU Viewer

    +
      +
    • Added "Mask unused graphics" feature (needs Code/Data Logger running)
    • +
    • Fixed window layout when using big fonts
    • +
    +


    +

    Hex Editor

    +
      +
    • Added "Highlighting" submenu and "Highlight Activity" feature
    • +
    • Added Symbolic Debug naming by right-clicking any address
    • +
    • Specify Data bank condition when adding a Breakpoint by context menu
    • +
    • Fixed bugs when saving files while working with ROMs in archives
    • +
    • hexeditorFontSize can be specified in fceux.cfg
    • +
    +


    +

    RAM Search/RAM Watch

    +
      +
    • Added "Hex Editor" button to RAM Search (right-clicking an address works as well)
    • +
    • Fixed RAM Watch bug when contents of old .wch file were mixed with the newly saved data
    • +
    +


    +

    SDL

    +
      +
    • "--periodicsaves" command line option
    • +
    • "--4buttonexit" command line option
    • +
    • "--loadstate X" and "--savestate X" command line options
    • +
    • Added Unity desktop support
    • +
    • Added otion to use system-provided LUA library instead of statically linked LUA
    • +
    • Fix issue where battery backup save was not being saved when using "Quit" hotkey
    • +
    • Fixed bug where FCEUX would take exclusive grab of input in windowed mode when resuming from pause
    • +
    +


    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easily create EBooks

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/WhatsNew223.html b/web/help/WhatsNew223.html index 860fa1e0..906899ec 100644 --- a/web/help/WhatsNew223.html +++ b/web/help/WhatsNew223.html @@ -1,208 +1,399 @@ - - + + + + + - What's New? 2.2.3 (changelog) - - - - - - - - - - + + + + + + + + What's New? 2.2.3 (changelog) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    What's New? 2.2.3 (changelog)

    - -
    - Introduction ››
    -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    What's New? 2.2.3

    -

    Released -- 28 July 2016

    -


    -


    -

    The 2.2.3 release fixes a number of emulation bugs, features overclocking (for lag reduction) and Dendy mode, and adds support for a bunch of new ROM dumps (mostly unlicensed). Reverse engineering tools and Lua scripting have got some updates, new input devices are supported, new palette files have beed added. The SDL port has been fixed and updated as well.

    -


    -

    Common

    -
      -
    • Customizable overclocking
    • -
    • Dendy mode
    • -
    • Fixed rerecord counting broken outside taseditor
    • -
    -


    -

    Emulation

    -
      -
    • Added mappers: 29, 30,
    • -
    • Fixed mappers: 225, 119, 4, 35, 31, 69, 212, 45,
    • -
    • Fixed mmc5 IRQ handling
    • -
    • Fixed mmc1 reg#3 masking
    • -
    • Fixed vrc7 sound savestates
    • -
    • Added CoolBoy, KS7010, SB200, UNIF 158B, UNIF DRAGONFIGHTER, UNIF BMC-10-24-C-A1, UNIF EH8813A, UNIF HP898F, UNIF F-15, UNIF RT-01, UNIF UNL-KS7017, UNIF BMC-81-01-31-C, UNIF UNL-8-IN-1
    • -
    • NES 2.0 support
    • -
    • Fixed UNIF BMC 12 IN 1, UNIF OneBus
    • -
    -


    -

    Movies

    -
      -
    • Fixed a bug with FDS flag being always set when converting a FCM
    • -
    -


    -

    Video

    -
      -
    • Prescale filter for 2x, 3x and 4x resolutions
    • -
    • Made NTSC filter internal resolution closer to 4:3
    • -
    -


    -

    Palette

    -
      -
    • Support 512 color palettes
    • -
    • Added external palettes: SONY_CXA2025AS_US.pal, RP2C03.pal (and its versions), Unsaturated-V6.pal
    • -
    • Option to swap deemphasis bits
    • -
    -


    -

    Sound

    -
      -
    • Option to swap duty cycles
    • -
    • NSF can be set to Dendy mode
    • -
    -


    -

    Input

    -
      -
    • Fix Mouse input implementation
    • -
    • Support for SNES mouse
    • -
    • PEC-586 russian keyboard support
    • -
    -


    -

    Lua

    -
      -
    • Removed speed notification per script reload, if it remained 100%
    • -
    • Fixed lua drawings in NSF
    • -
    • Proper halo for lua font
    • -
    • Fixes to sound.get() region consistency and frequency/midikey detection for Noise and DPCM channels
    • -
    -


    -

    New Lua functions:

    -
      -
    • emu.getpath()
    • -
    • emu.loadrom()
    • -
    • rom.writebyte()
    • -
    • gethash()
    • -
    -


    -

    Win32

    -
      -
    • Added -dumpinput and -playinput functions
    • -
    • Support for SNES pad
    • -
    • Added onscreen messages when region changes
    • -
    -


    -

    Debugger

    -
      -
    • Added debuggerPageSize config variable which lets you pick whether 8KB physical PRG pages are used, or 16KB (the original). It defaults to 14 (1<<14 == 16KB).
    • -
    • Set symbolic debugger name entry dialog text limits when creating a new label
    • -
    • Fixed new-PPU debug information (address and pixel)
    • -
    • Step Into hotkey
    • -
    • More granular accounting of scanline and dot
    • -
    -


    -

    Trace Logger

    -
      -
    • Fixed incorrect display of resolved address for (FF,x)
    • -
    -


    -

    Symbolic debugging

    -
      -
    • Optionally display register names
    • -
    -


    -

    CDLogger

    -
      -
    • Fix crash when attempting to open file picked as target for Save Stripped ROM operation
    • -
    -


    -

    PPU Viewer

    -
      -
    • 8x16 sprite display mode
    • -
    -


    -

    Hex Editor

    -
      -
    • Added option to dump entire 64k memory space
    • -
    • Don't forget to load the symbols, when hex editor is first launched before debugger
    • -
    • Show values for registers $4000-$4017
    • -
    -


    -

    Cheats

    -
      -
    • mmc5 Akumajou Dracula crash fix
    • -
    • More RAM available in search
    • -
    -


    -

    SDL

    -
      -
    • Added apply button to video config dialog
    • -
    • Added link to libgd project download page in readme
    • -
    • Noted optional libgd dependency in readme
    • -
    • SCons: Fixed logic for LOGO and CREATE_AVI options
    • -
    • Manpage updates
    • -
    • Added hotkeys for volume up/down
    • -
    • Menu toggling with the Alt key
    • -
    • Print error when opengl/scalers are both enabled
    • -
    • Fixed bug where lua open file gui would default to home directory
    • -
    -


    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Easily create Web Help sites

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    What's New? 2.2.3 (changelog)

    + +
    + +

    +

    What's New? 2.2.3

    +

    Released -- 28 July 2016

    +


    +


    +

    The 2.2.3 release fixes a number of emulation bugs, features overclocking (for lag reduction) and Dendy mode, and adds support for a bunch of new ROM dumps (mostly unlicensed). Reverse engineering tools and Lua scripting have got some updates, new input devices are supported, new palette files have beed added. The SDL port has been fixed and updated as well.

    +


    +

    Common

    +
      +
    • Customizable overclocking
    • +
    • Dendy mode
    • +
    • Fixed rerecord counting broken outside taseditor
    • +
    +


    +

    Emulation

    +
      +
    • Added mappers: 29, 30, 
    • +
    • Fixed mappers: 225, 119, 4, 35, 31, 69, 212, 45, 
    • +
    • Fixed mmc5 IRQ handling
    • +
    • Fixed mmc1 reg#3 masking
    • +
    • Fixed vrc7 sound savestates
    • +
    • Added CoolBoy, KS7010, SB200, UNIF 158B, UNIF DRAGONFIGHTER, UNIF BMC-10-24-C-A1, UNIF EH8813A, UNIF HP898F, UNIF F-15, UNIF RT-01, UNIF UNL-KS7017, UNIF BMC-81-01-31-C, UNIF UNL-8-IN-1
    • +
    • NES 2.0 support
    • +
    • Fixed UNIF BMC 12 IN 1, UNIF OneBus
    • +
    +


    +

    Movies

    +
      +
    • Fixed a bug with FDS flag being always set when converting a FCM
    • +
    +


    +

    Video

    +
      +
    • Prescale filter for 2x, 3x and 4x resolutions
    • +
    • Made NTSC filter internal resolution closer to 4:3
    • +
    +


    +

    Palette

    +
      +
    • Support 512 color palettes
    • +
    • Added external palettes: SONY_CXA2025AS_US.pal, RP2C03.pal (and its versions), Unsaturated-V6.pal
    • +
    • Option to swap deemphasis bits
    • +
    +


    +

    Sound

    +
      +
    • Option to swap duty cycles
    • +
    • NSF can be set to Dendy mode
    • +
    +


    +

    Input

    +
      +
    • Fix Mouse input implementation
    • +
    • Support for SNES mouse
    • +
    • PEC-586 russian keyboard support
    • +
    +


    +

    Lua

    +
      +
    • Removed speed notification per script reload, if it remained 100%
    • +
    • Fixed lua drawings in NSF
    • +
    • Proper halo for lua font
    • +
    • Fixes to sound.get() region consistency and frequency/midikey detection for Noise and DPCM channels
    • +
    +


    +

    New Lua functions:

    +
      +
    • emu.getpath()
    • +
    • emu.loadrom()
    • +
    • rom.writebyte()
    • +
    • gethash()
    • +
    +


    +

    Win32

    +
      +
    • Added -dumpinput and -playinput functions
    • +
    • Support for SNES pad
    • +
    • Added onscreen messages when region changes
    • +
    +


    +

    Debugger

    +
      +
    • Added debuggerPageSize config variable which lets you pick whether 8KB physical PRG pages are used, or 16KB (the original). It defaults to 14 (1<<14 == 16KB).
    • +
    • Set symbolic debugger name entry dialog text limits when creating a new label
    • +
    • Fixed new-PPU debug information (address and pixel)
    • +
    • Step Into hotkey
    • +
    • More granular accounting of scanline and dot
    • +
    +


    +

    Trace Logger

    +
      +
    • Fixed incorrect display of resolved address for (FF,x)
    • +
    +


    +

    Symbolic debugging

    +
      +
    • Optionally display register names
    • +
    +


    +

    CDLogger

    +
      +
    • Fix crash when attempting to open file picked as target for Save Stripped ROM operation
    • +
    +


    +

    PPU Viewer

    +
      +
    • 8x16 sprite display mode
    • +
    +


    +

    Hex Editor

    +
      +
    • Added option to dump entire 64k memory space
    • +
    • Don't forget to load the symbols, when hex editor is first launched before debugger
    • +
    • Show values for registers $4000-$4017
    • +
    +


    +

    Cheats

    +
      +
    • mmc5 Akumajou Dracula crash fix
    • +
    • More RAM available in search
    • +
    +


    +

    SDL

    +
      +
    • Added apply button to video config dialog
    • +
    • Added link to libgd project download page in readme
    • +
    • Noted optional libgd dependency in readme
    • +
    • SCons: Fixed logic for LOGO and CREATE_AVI options
    • +
    • Manpage updates
    • +
    • Added hotkeys for volume up/down
    • +
    • Menu toggling with the Alt key
    • +
    • Print error when opengl/scalers are both enabled
    • +
    • Fixed bug where lua open file gui would default to home directory
    • +
    +


    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Benefits of a Help Authoring Tool

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/_keywords.json b/web/help/_keywords.json new file mode 100644 index 00000000..ea749ce8 --- /dev/null +++ b/web/help/_keywords.json @@ -0,0 +1 @@ +[{ "id": "C1B680E8F62941B9A3545C40D55C8D92", "parent" : "#", "text": "\"Can't find FDS Bios image when I attempt to load a .fds game!\"", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "3A9A6DF0D6944C2F863A69AF188FFD9E", "parent" : "#", "text": "\"Directdraw: Error creating secondary surface\"", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "2DC461B98AA940439B3E3BF1AF8A3A17", "parent" : "#", "text": "2C02 PPU memory map", "a_attr": {"href": "NESRAMMappingFindingValues.html", "data-related": "[]"} },{ "id": "9101D638E01D45678C3EC7B34E5A6FC2", "parent" : "#", "text": "Alternate A and B", "a_attr": {"href": "AutoFireConfigurations.html", "data-related": "[]"} },{ "id": "ECFDE454CB5D4FA0B4BD610C7C200E0A", "parent" : "#", "text": "Arkanoid Paddle", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "348CDF1BAD4B427BBEEBBA1F1FCB90A0", "parent" : "#", "text": "Autofire Offset", "a_attr": {"href": "AutoFireConfigurations.html", "data-related": "[]"} },{ "id": "F1C81D7111184882A0A4979B09375D32", "parent" : "#", "text": "Autofire Pattern", "a_attr": {"href": "AutoFireConfigurations.html", "data-related": "[]"} },{ "id": "4683F51E46514ED0902131C1EF8CE048", "parent" : "#", "text": "Auto-Hold", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "81EDD86C638C458CAD8A2BFCB3DA0C35", "parent" : "#", "text": "Basic Bot", "a_attr": {"href": "#", "data-related": "[]"} },{ "id": "ACB5D74040B04AFE99CE2687D3BAA500", "parent" : "#", "text": "Capturing a Movie File", "a_attr": {"href": "AVICapturing.html", "data-related": "[]"} },{ "id": "08E1D7750E3B44DE87E739E6D8D66829", "parent" : "#", "text": "Cheat Guide", "a_attr": {"href": "CheatSearch.html", "data-related": "[]"} },{ "id": "C3BE991088FA44B590B0511384EF6B8C", "parent" : "#", "text": "Code/Data Logger", "a_attr": {"href": "CodeDataLogger.html", "data-related": "[]"} },{ "id": "95B1FE614C174C988D86A0168461B139", "parent" : "#", "text": "Command Line Options", "a_attr": {"href": "CommandLineOptions.html", "data-related": "[]"} },{ "id": "BD1DE09B14A14CB8881BB7B679458F44", "parent" : "#", "text": "context menu", "a_attr": {"href": "GUI.html", "data-related": "[{\"title\":\"GUI\",\"url\":\"GUI.html\"},{\"title\":\"Context Menu Items\",\"url\":\"ContextMenuItems.html\"}]"} },{ "id": "E21C632A3FAF4BC6BDAB4418731A1E9B", "parent" : "#", "text": "Converting .fcm", "a_attr": {"href": "Covertfcm.html", "data-related": "[]"} },{ "id": "A44056E52B9D4F1D92FF0381CEFB143D", "parent" : "#", "text": "crash", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "C3F18B6B73F040EBB0C50076EE4D43E5", "parent" : "#", "text": "Debugger", "a_attr": {"href": "Debugger.html", "data-related": "[]"} },{ "id": "33669B1FBF6A45419E04F0052831FFCC", "parent" : "#", "text": "desyncs", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "585DDCADF94F476E922E903A8B09F5B3", "parent" : "#", "text": "Directdraw", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "6F5AA0ADC7774F0FACEF8D77A7BA8BC7", "parent" : "#", "text": "Directory Overrides", "a_attr": {"href": "Directories.html", "data-related": "[]"} },{ "id": "841A91B28F9F41E897F467C77414C56C", "parent" : "#", "text": "Disable left+right/up+down", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "3B64C02E8DF444B18D4B5182B218041A", "parent" : "#", "text": "disksys.rom", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "68D573EA84A94D3CB2E5B9AF0EA92CCE", "parent" : "#", "text": "Eject/Insert Disk", "a_attr": {"href": "NES.html", "data-related": "[]"} },{ "id": "0305DBA147B744DF8563CE2AC078467D", "parent" : "#", "text": "Enable Background Input", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "97757DCD83594FF5B69EFE5E10DEFCD9", "parent" : "#", "text": "Enable Rewind", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "9CB3B9F922AD4F4DB9B0041C1EAE7668", "parent" : "#", "text": "Enable Run in Background", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "D624F1419D83468480589A273D9CDC8F", "parent" : "#", "text": "error", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "E1510892F05C458191C2DBFB3CD030BC", "parent" : "#", "text": "Famicom Controllers", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "64E177D0E41649229341B00E6400651B", "parent" : "#", "text": "Famicom Disk System", "a_attr": {"href": "FamicomDiskSytem.html", "data-related": "[]"} },{ "id": "43D54C0943AF459588A41B83D140AE90", "parent" : "#", "text": "FCEU-13-default_nitsuja.pal", "a_attr": {"href": "PaletteOptions.html", "data-related": "[]"} },{ "id": "6954B5855555483FB1B1B84EE8C61C8E", "parent" : "#", "text": "FCEU-15-nitsuja-new.pal", "a_attr": {"href": "PaletteOptions.html", "data-related": "[]"} },{ "id": "0E44F31BC17541A1AC1C2C641B87B469", "parent" : "#", "text": "FCEUX Movie File format", "a_attr": {"href": "fm2.html", "data-related": "[]"} },{ "id": "0BE022C96B86459BAB94E5970972E7E6", "parent" : "#", "text": "FCEUX.pal", "a_attr": {"href": "PaletteOptions.html", "data-related": "[]"} },{ "id": "5E3EBE0E1783430799CC79E0261A3170", "parent" : "#", "text": "FCM", "a_attr": {"href": "fcm.html", "data-related": "[]"} },{ "id": "52831D29488045389BA33786C0872BA7", "parent" : "#", "text": "fds", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "8946FAC9B0E44854AC09F438D4AAB8FF", "parent" : "#", "text": "FDS Bios", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "7E4DD855F8EF45FAB21E55EDB0F33F52", "parent" : "#", "text": "fm2", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "6B2683D79F294C9489A83BF57265CFDF", "parent" : "#", "text": "Full screen", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "90BC1FB40EA04694B5E77DBFA1031761", "parent" : "#", "text": "Game Genie", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "788AE7B752494EEC9D01AE6FC89F5F24", "parent" : "#", "text": "Game Genie Decoder/Encoder", "a_attr": {"href": "GameGenieEncoderDecoder.html", "data-related": "[]"} },{ "id": "7967C8614D984A4187724260700A4310", "parent" : "#", "text": "Game RAM Details", "a_attr": {"href": "NESRAMMappingFindingValues.html", "data-related": "[]"} },{ "id": "5DA2822D38F541E3AB5656914CED803D", "parent" : "#", "text": "Getting Started", "a_attr": {"href": "Gettingstarted.html", "data-related": "[]"} },{ "id": "DFC5605C06CF4FB8A18E2B7F9BDDA39E", "parent" : "#", "text": "GUI", "a_attr": {"href": "GUI.html", "data-related": "[]"} },{ "id": "0AC98DB694544F548021D8120ACEB596", "parent" : "#", "text": "Hacked Games", "a_attr": {"href": "Gamefilecompatibility.html", "data-related": "[]"} },{ "id": "BA8DA039CD4D4AEB84CBA7A7080496AD", "parent" : "#", "text": "Hex Editor", "a_attr": {"href": "HexEditor.html", "data-related": "[]"} },{ "id": "0B62849153C548AB8EDCF53B70BD9EEB", "parent" : "#", "text": "Hide Menu", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "81D227C0065B4C08BF3E420EEDF22410", "parent" : "#", "text": "History of FCEUX / FCE Ultra", "a_attr": {"href": "FCEUltraVersionHistory.html", "data-related": "[]"} },{ "id": "5B8EB280D1FA413D874484B4B1F95275", "parent" : "#", "text": "Inline Assembler", "a_attr": {"href": "Debugger.html", "data-related": "[]"} },{ "id": "F41A70678E2A4AA0B6709829BB93923B", "parent" : "#", "text": "Input Configuration", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "7DED0E0F330B4106B4917C777B3F2474", "parent" : "#", "text": "Input Presets", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "CC0F08EDCA64493DAF2E11B24792BE6E", "parent" : "#", "text": "Insert Coin", "a_attr": {"href": "NES.html", "data-related": "[]"} },{ "id": "6B02849550D74BAD9E8BDFA1B401192B", "parent" : "#", "text": "Loadstate", "a_attr": {"href": "Gettingstarted.html", "data-related": "[]"} },{ "id": "108624416B0247A68A0D070BFDB49A03", "parent" : "#", "text": "Lua", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "C82E31A5633E4DE9B09AF62FE3B6F7FD", "parent" : "#", "text": "Lua Functions", "a_attr": {"href": "LuaFunctionsList.html", "data-related": "[]"} },{ "id": "CC77E558CA7D405DBB7C358FEA586712", "parent" : "#", "text": "Lua Scripting", "a_attr": {"href": "#", "data-related": "[]"} },{ "id": "7FF4170AACB64CDF98AC5DEF8ACB237F", "parent" : "#", "text": "Making Game Genie codes", "a_attr": {"href": "GameGenieEncoderDecoder.html", "data-related": "[]"} },{ "id": "A7873179828C43F5B8279B8F9965F142", "parent" : "#", "text": "Map Hotkeys", "a_attr": {"href": "MapHotkeys.html", "data-related": "[]"} },{ "id": "0422396C49DB465A841D55C2FEF5CF40", "parent" : "#", "text": "Memory Map", "a_attr": {"href": "NESRAMMappingFindingValues.html", "data-related": "[]"} },{ "id": "573075F090E24E1AB86B9A84A89C7840", "parent" : "#", "text": "Memory Watch", "a_attr": {"href": "MemoryWatch.html", "data-related": "[]"} },{ "id": "3ACE3ABFF2AA40549169413FF50D8B62", "parent" : "#", "text": "Movie Recording", "a_attr": {"href": "MovieRecording.html", "data-related": "[]"} },{ "id": "E657AC5386D34EA1BB1A0A83F907BA16", "parent" : "#", "text": "Mute frame advance", "a_attr": {"href": "SoundOptions.html", "data-related": "[]"} },{ "id": "576FF21C6F9741C3911BAFFC887E806F", "parent" : "#", "text": "Name Table Viewer", "a_attr": {"href": "NameTableViewer.html", "data-related": "[]"} },{ "id": "411BB82AED86439FB9E39C006C785AAD", "parent" : "#", "text": "NES Mapping", "a_attr": {"href": "NESRAMMappingFindingValues.html", "data-related": "[]"} },{ "id": "1909B83FB9944546AB9D32BAA4DC65CC", "parent" : "#", "text": "Nestopia", "a_attr": {"href": "PaletteOptions.html", "data-related": "[]"} },{ "id": "1B43669183A449EC8652D9388142AD9D", "parent" : "#", "text": "Network Play", "a_attr": {"href": "NetworkPlay.html", "data-related": "[]"} },{ "id": "A452BC25766B45FABB122DEC195E2202", "parent" : "#", "text": "PAL Emulation", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "9519C5ECA1414E5A9FDC66E4B2856339", "parent" : "#", "text": "Palette", "a_attr": {"href": "Palette.html", "data-related": "[{\"title\":\"Palette\",\"url\":\"Palette.html\"},{\"title\":\"Palette Options\",\"url\":\"PaletteOptions.html\"},{\"title\":\"Troubleshooting\",\"url\":\"Troubleshooting.html\"}]"} },{ "id": "4AC4BAD72D8841D4B03B7D3545637538", "parent" : "#", "text": "Pause After Movie Playback", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "EA0820DB2B204DDB955F647F8A4BE64D", "parent" : "#", "text": "Power", "a_attr": {"href": "NES.html", "data-related": "[]"} },{ "id": "19BCC60C7C074FF2A0ED7755E173827B", "parent" : "#", "text": "Power Pad", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "948A816A25E642FF8EFD32F43105CBBF", "parent" : "#", "text": "PPU Viewer", "a_attr": {"href": "PPUViewer.html", "data-related": "[]"} },{ "id": "62BFC5C49AC54231A9F9F758EA010ACE", "parent" : "#", "text": "RAM Filter", "a_attr": {"href": "#", "data-related": "[]"} },{ "id": "994CD3263AEF46E9972882F598068725", "parent" : "#", "text": "Reset", "a_attr": {"href": "NES.html", "data-related": "[]"} },{ "id": "8022DE3BD91B439EAB655220B77FF7B0", "parent" : "#", "text": "right-click", "a_attr": {"href": "GUI.html", "data-related": "[]"} },{ "id": "99DE29C154D844F198742CFD81038DA9", "parent" : "#", "text": "ROM Hacking", "a_attr": {"href": "ROMHacking.html", "data-related": "[]"} },{ "id": "BA5DF8F9F6334FD3AFF388EE7809612C", "parent" : "#", "text": "Savestates", "a_attr": {"href": "Gettingstarted.html", "data-related": "[]"} },{ "id": "DB1F3F2A05084688AF82D792D428A72F", "parent" : "#", "text": "Setting up controllers", "a_attr": {"href": "Input.html", "data-related": "[]"} },{ "id": "C021EA3E1DCB457588DE543C90ECB22B", "parent" : "#", "text": "Show Movie Status Icon", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html", "data-related": "[]"} },{ "id": "C34E8DA010CA4720AD3BE6484716904E", "parent" : "#", "text": "slow emulation", "a_attr": {"href": "Video.html", "data-related": "[{\"title\":\"Video\",\"url\":\"Video.html\"},{\"title\":\"Troubleshooting\",\"url\":\"Troubleshooting.html\"}]"} },{ "id": "1CF1292970A94EA5A2F857CA5120D916", "parent" : "#", "text": "Sound Configuration", "a_attr": {"href": "SoundOptions.html", "data-related": "[]"} },{ "id": "5585E87D2CDC4441A215A196044A5F4D", "parent" : "#", "text": "Sound crackle", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "4DF9986C5D954E3BB5F7B32651F6BD94", "parent" : "#", "text": "Switch Disk Side", "a_attr": {"href": "NES.html", "data-related": "[]"} },{ "id": "7E683FAB32D647AF8DC8ACD5AE10700D", "parent" : "#", "text": "Symbolic Debugging", "a_attr": {"href": "Debugger.html", "data-related": "[]"} },{ "id": "A708BA7E95FF41369B6ACED3218281BD", "parent" : "#", "text": "TAS Edit", "a_attr": {"href": "TASEditor.html", "data-related": "[]"} },{ "id": "98FF63C3A60C4D86BA76F21FDF8BDAA8", "parent" : "#", "text": "Timings", "a_attr": {"href": "Timing.html", "data-related": "[]"} },{ "id": "720899A32F7B4CCE9DA2A7B9B59D33B2", "parent" : "#", "text": "Tool Assisted Speedruns", "a_attr": {"href": "ToolAssistedSpeedruns.html", "data-related": "[]"} },{ "id": "33057D7ACE3A41C7939F4484E0374AD2", "parent" : "#", "text": "Trace Logger", "a_attr": {"href": "TraceLogger.html", "data-related": "[]"} },{ "id": "5EDFD6686DA842A7A50E8906DC52B6E9", "parent" : "#", "text": "Troubleshooting", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "A7E64538FFE8462FB48DF722C8036E02", "parent" : "#", "text": "Undo", "a_attr": {"href": "Gettingstarted.html", "data-related": "[]"} },{ "id": "5B5B00294CEA4D209CE2B11E5895EBF9", "parent" : "#", "text": "Use External Input", "a_attr": {"href": ".html", "data-related": "[]"} },{ "id": "C36EFEDDA9CA4ED2BBFA9C1FE7CC8FDD", "parent" : "#", "text": "Valid Game Types", "a_attr": {"href": "Gamefilecompatibility.html", "data-related": "[]"} },{ "id": "F9A50A5EF1E2463287A1692EA437984F", "parent" : "#", "text": "Video Configuration", "a_attr": {"href": "Video.html", "data-related": "[]"} },{ "id": "182D155E0E2F430FAFB5ED77C93BA84C", "parent" : "#", "text": "Vista", "a_attr": {"href": "Troubleshooting.html", "data-related": "[]"} },{ "id": "62CE2C7A9814460FABE2A596F1A9B5BE", "parent" : "#", "text": "Volume", "a_attr": {"href": "SoundOptions.html", "data-related": "[]"} },{ "id": "86BF3587D83D4CBAB6DCC1ECBFD0EB8B", "parent" : "#", "text": "What's New?", "a_attr": {"href": "WhatsNew200.html", "data-related": "[]"} },{ "id": "03F514C91F7C4AC0BA0804E4002B0319", "parent" : "#", "text": "Zapper", "a_attr": {"href": "Input.html", "data-related": "[]"} }] \ No newline at end of file diff --git a/web/help/_toc.json b/web/help/_toc.json new file mode 100644 index 00000000..f15bca97 --- /dev/null +++ b/web/help/_toc.json @@ -0,0 +1 @@ +[{ "id": "Intro", "parent" : "#", "text": "Introduction", "a_attr": {"href": "Intro.html"} },{ "id": "Introduction", "parent" : "Intro", "text": "Introduction", "a_attr": {"href": "Introduction.html"} },{ "id": "Overview", "parent" : "Intro", "text": "Overview", "a_attr": {"href": "Overview.html"} },{ "id": "FCEUltraVersionHistory", "parent" : "Intro", "text": "FCE Ultra Version History", "a_attr": {"href": "FCEUltraVersionHistory.html"} },{ "id": "Newtopic", "parent" : "Intro", "text": "What's New? 2.3.0 (changelog)", "a_attr": {"href": "Newtopic.html"} },{ "id": "WhatsNew223", "parent" : "Intro", "text": "What's New? 2.2.3 (changelog)", "a_attr": {"href": "WhatsNew223.html"} },{ "id": "WhatsNew222", "parent" : "Intro", "text": "What's New? 2.2.2 (changelog)", "a_attr": {"href": "WhatsNew222.html"} },{ "id": "WhatsNew221", "parent" : "Intro", "text": "What's New? 2.2.1 (changelog)", "a_attr": {"href": "WhatsNew221.html"} },{ "id": "WhatsNew220", "parent" : "Intro", "text": "What's New? 2.2.0 (changelog)", "a_attr": {"href": "WhatsNew220.html"} },{ "id": "WhatsNew215", "parent" : "Intro", "text": "What's New? 2.1.5 (changelog)", "a_attr": {"href": "WhatsNew215.html"} },{ "id": "WhatsNew214", "parent" : "Intro", "text": "What's New? 2.1.4 (changelog)", "a_attr": {"href": "WhatsNew214.html"} },{ "id": "WhatsNew213", "parent" : "Intro", "text": "What's New? 2.1.3 (changelog)", "a_attr": {"href": "WhatsNew213.html"} },{ "id": "WhatsNew212", "parent" : "Intro", "text": "What's New? 2.1.2 (changelog)", "a_attr": {"href": "WhatsNew212.html"} },{ "id": "WhatsNew211", "parent" : "Intro", "text": "What's New? 2.1.1 (changelog)", "a_attr": {"href": "WhatsNew211.html"} },{ "id": "WhatsNew210", "parent" : "Intro", "text": "What's New? 2.1 (changelog)", "a_attr": {"href": "WhatsNew210.html"} },{ "id": "WhatsNew203", "parent" : "Intro", "text": "What's New? 2.0.3 (changelog)", "a_attr": {"href": "WhatsNew203.html"} },{ "id": "WhatsNew202", "parent" : "Intro", "text": "What's New? 2.0.2 (changelog)", "a_attr": {"href": "WhatsNew202.html"} },{ "id": "WhatsNew201", "parent" : "Intro", "text": "What's New? 2.0.1 (changelog)", "a_attr": {"href": "WhatsNew201.html"} },{ "id": "WhatsNew200", "parent" : "Intro", "text": "What's New? 2.0.0", "a_attr": {"href": "WhatsNew200.html"} },{ "id": "General", "parent" : "#", "text": "General", "a_attr": {"href": "General.html"} },{ "id": "Gettingstarted", "parent" : "General", "text": "Getting Started", "a_attr": {"href": "Gettingstarted.html"} },{ "id": "Gamefilecompatibility", "parent" : "General", "text": "Game file compatibility", "a_attr": {"href": "Gamefilecompatibility.html"} },{ "id": "CommandLineOptions", "parent" : "General", "text": "Command Line Options", "a_attr": {"href": "CommandLineOptions.html"} },{ "id": "CustomizingthroughtheConfigFil", "parent" : "General", "text": "Customizing through the Config File", "a_attr": {"href": "CustomizingthroughtheConfigFil.html"} },{ "id": "FamicomDiskSytem", "parent" : "General", "text": "Famicom Disk Sytem", "a_attr": {"href": "FamicomDiskSytem.html"} },{ "id": "AVICapturing", "parent" : "FamicomDiskSytem", "text": "AVI Capturing", "a_attr": {"href": "AVICapturing.html"} },{ "id": "MovieRecording", "parent" : "General", "text": "Movie Recording", "a_attr": {"href": "MovieRecording.html"} },{ "id": "NES", "parent" : "General", "text": "NES Menu", "a_attr": {"href": "NES.html"} },{ "id": "PaletteOptions", "parent" : "General", "text": "Palette Options", "a_attr": {"href": "PaletteOptions.html"} },{ "id": "Config", "parent" : "#", "text": "Config", "a_attr": {"href": "Config.html"} },{ "id": "ToggleSwitchesHideMenuetc", "parent" : "Config", "text": "Menu Items & Submenus", "a_attr": {"href": "ToggleSwitchesHideMenuetc.html"} },{ "id": "Directories", "parent" : "Config", "text": "Directories", "a_attr": {"href": "Directories.html"} },{ "id": "GUI", "parent" : "Config", "text": "GUI", "a_attr": {"href": "GUI.html"} },{ "id": "Input", "parent" : "Config", "text": "Input", "a_attr": {"href": "Input.html"} },{ "id": "NetworkPlay", "parent" : "Config", "text": "Network Play", "a_attr": {"href": "NetworkPlay.html"} },{ "id": "Palette", "parent" : "Config", "text": "Palette", "a_attr": {"href": "Palette.html"} },{ "id": "SoundOptions", "parent" : "Config", "text": "Sound", "a_attr": {"href": "SoundOptions.html"} },{ "id": "Timing", "parent" : "Config", "text": "Timing", "a_attr": {"href": "Timing.html"} },{ "id": "Video", "parent" : "Config", "text": "Video", "a_attr": {"href": "Video.html"} },{ "id": "MovieOptions", "parent" : "Config", "text": "Movie Options", "a_attr": {"href": "MovieOptions.html"} },{ "id": "MapHotkeys", "parent" : "Config", "text": "Map Hotkeys", "a_attr": {"href": "MapHotkeys.html"} },{ "id": "ContextMenuItems", "parent" : "Config", "text": "Context Menu Items", "a_attr": {"href": "ContextMenuItems.html"} },{ "id": "Tools2", "parent" : "#", "text": "Tools", "a_attr": {"href": "Tools2.html"} },{ "id": "CheatSearch", "parent" : "Tools2", "text": "Cheat Search", "a_attr": {"href": "CheatSearch.html"} },{ "id": "RAMSearch", "parent" : "Tools2", "text": "RAM Search", "a_attr": {"href": "RAMSearch.html"} },{ "id": "RAMWatch", "parent" : "Tools2", "text": "RAM Watch", "a_attr": {"href": "RAMWatch.html"} },{ "id": "MemoryWatch", "parent" : "Tools2", "text": "Memory Watch", "a_attr": {"href": "MemoryWatch.html"} },{ "id": "TASEditor", "parent" : "Tools2", "text": "TAS Editor", "a_attr": {"href": "TASEditor.html"} },{ "id": "Covertfcm", "parent" : "Tools2", "text": "Convert fcm", "a_attr": {"href": "Covertfcm.html"} },{ "id": "AutoFireConfigurations", "parent" : "Tools2", "text": "Auto Fire Settings", "a_attr": {"href": "AutoFireConfigurations.html"} },{ "id": "TextHooker", "parent" : "Tools2", "text": "Text Hooker", "a_attr": {"href": "TextHooker.html"} },{ "id": "Debug", "parent" : "#", "text": "Debug", "a_attr": {"href": "Debug.html"} },{ "id": "Debugger", "parent" : "Debug", "text": "Debugger", "a_attr": {"href": "Debugger.html"} },{ "id": "PPUViewer", "parent" : "Debug", "text": "PPU Viewer", "a_attr": {"href": "PPUViewer.html"} },{ "id": "NameTableViewer", "parent" : "Debug", "text": "Name Table Viewer", "a_attr": {"href": "NameTableViewer.html"} },{ "id": "HexEditor", "parent" : "Debug", "text": "Hex Editor", "a_attr": {"href": "HexEditor.html"} },{ "id": "TraceLogger", "parent" : "Debug", "text": "Trace Logger", "a_attr": {"href": "TraceLogger.html"} },{ "id": "CodeDataLogger", "parent" : "Debug", "text": "Code/Data Logger", "a_attr": {"href": "CodeDataLogger.html"} },{ "id": "GameGenieEncoderDecoder", "parent" : "Debug", "text": "Game Genie Encoder/Decoder", "a_attr": {"href": "GameGenieEncoderDecoder.html"} },{ "id": "LuaScripting", "parent" : "#", "text": "Lua Scripting", "a_attr": {"href": "LuaScripting.html"} },{ "id": "LuaGettingStarted", "parent" : "LuaScripting", "text": "Getting Started", "a_attr": {"href": "LuaGettingStarted.html"} },{ "id": "Commands", "parent" : "LuaScripting", "text": "Using Lua", "a_attr": {"href": "Commands.html"} },{ "id": "LuaFunctionsList", "parent" : "LuaScripting", "text": "Lua Functions List", "a_attr": {"href": "LuaFunctionsList.html"} },{ "id": "LuaPerks", "parent" : "LuaScripting", "text": "LuaPerks", "a_attr": {"href": "LuaPerks.html"} },{ "id": "LuaBot", "parent" : "LuaScripting", "text": "Lua Bot", "a_attr": {"href": "LuaBot.html"} },{ "id": "OverviewofIncludedScripts", "parent" : "LuaScripting", "text": "Overview of Included Scripts", "a_attr": {"href": "OverviewofIncludedScripts.html"} },{ "id": "FAQGuides", "parent" : "#", "text": "FAQ / Guides", "a_attr": {"href": "FAQGuides.html"} },{ "id": "Troubleshooting", "parent" : "FAQGuides", "text": "Troubleshooting", "a_attr": {"href": "Troubleshooting.html"} },{ "id": "ToolAssistedSpeedruns", "parent" : "FAQGuides", "text": "Tool Assisted Speedruns", "a_attr": {"href": "ToolAssistedSpeedruns.html"} },{ "id": "ROMHacking", "parent" : "FAQGuides", "text": "ROM Hacking", "a_attr": {"href": "ROMHacking.html"} },{ "id": "NESRAMMappingFindingValues", "parent" : "FAQGuides", "text": "NES RAM (Mapping/Finding Values)", "a_attr": {"href": "NESRAMMappingFindingValues.html"} },{ "id": "Technicalinformation", "parent" : "#", "text": "Technical Information", "a_attr": {"href": "Technicalinformation.html"} },{ "id": "Movieformats", "parent" : "Technicalinformation", "text": "Movie & Savestate formats", "a_attr": {"href": "Movieformats.html"} },{ "id": "fm2", "parent" : "Movieformats", "text": ".fm2", "a_attr": {"href": "fm2.html"} },{ "id": "fcm", "parent" : "Movieformats", "text": ".fcm", "a_attr": {"href": "fcm.html"} },{ "id": "fcs", "parent" : "Movieformats", "text": "Savestate (.fcs)", "a_attr": {"href": "fcs.html"} },{ "id": "Sound", "parent" : "Technicalinformation", "text": "Sound", "a_attr": {"href": "Sound.html"} },{ "id": "NSFFormat", "parent" : "Sound", "text": "NSF Format", "a_attr": {"href": "NSFFormat.html"} },{ "id": "NESSound", "parent" : "Sound", "text": "NES Sound", "a_attr": {"href": "NESSound.html"} },{ "id": "NESProcessor", "parent" : "Technicalinformation", "text": "NES Processing", "a_attr": {"href": "NESProcessor.html"} },{ "id": "6502CPU", "parent" : "NESProcessor", "text": "CPU - 6502", "a_attr": {"href": "6502CPU.html"} },{ "id": "PPU", "parent" : "NESProcessor", "text": "PPU - 2C02", "a_attr": {"href": "PPU.html"} },{ "id": "NESScrolling1", "parent" : "NESProcessor", "text": "NES Scrolling 1", "a_attr": {"href": "NESScrolling1.html"} },{ "id": "NESScrolling2", "parent" : "NESProcessor", "text": "NES Scrolling 2", "a_attr": {"href": "NESScrolling2.html"} },{ "id": "NLFilesFormat", "parent" : "Technicalinformation", "text": ".nl files format", "a_attr": {"href": "NLFilesFormat.html"} }] \ No newline at end of file diff --git a/web/help/_translations.js b/web/help/_translations.js new file mode 100644 index 00000000..36b7fded --- /dev/null +++ b/web/help/_translations.js @@ -0,0 +1,11 @@ + +function hnd_ut(a){ +a.TRANSLATIONS['Search term too short'] = "Search term too short"; +a.TRANSLATIONS['No results'] = "No results"; +a.TRANSLATIONS['Please enter 3 or more characters'] = "Please enter 3 or more characters"; +a.TRANSLATIONS['Word list not ready yet. Please wait until the word list is fully downloaded'] = "Word list not ready yet. Please wait until the word list is fully downloaded"; +a.TRANSLATIONS['Incorrect or corrupt search data. Please check your HelpNDoc template'] = "Incorrect or corrupt search data. Please check your HelpNDoc template"; +a.TRANSLATIONS['Related topics...'] = "Related topics..."; +a.TRANSLATIONS['Loading...'] = "Loading..."; +a.TRANSLATIONS['Close'] = "Close"; +} diff --git a/web/help/css/effects.min.css b/web/help/css/effects.min.css new file mode 100644 index 00000000..37f33b1a --- /dev/null +++ b/web/help/css/effects.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */header{transition:top 0.3s ease, padding-left 0.3s ease}div#main{transition:margin-left 0.3s ease}nav{transition:left 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease}.mask{transition:visibility 0s, opacity 0.3s ease}.tab-tabs>li::after{transition:transform 250ms ease 0s}#hnd-splitter{transition:background-color 0.15s linear} diff --git a/web/help/css/hnd.content.css b/web/help/css/hnd.content.css new file mode 100644 index 00000000..1f3c88b0 --- /dev/null +++ b/web/help/css/hnd.content.css @@ -0,0 +1,755 @@ +/* ========== Text Styles ========== */ +hr { color: #000000} +.main-content, .main-content table span.rvts0 /* Normal text */ +{ + font-size: 10pt; + font-family: 'Arial', 'Helvetica', sans-serif; + font-style: normal; + font-weight: normal; + color: #000000; + text-decoration: none; +} +span.rvts1 /* Heading */ +{ + font-weight: bold; + color: #0000ff; +} +span.rvts2 /* Subheading */ +{ + font-weight: bold; + color: #000080; +} +span.rvts3 /* Keywords */ +{ + font-style: italic; + color: #800000; +} +a.rvts4, span.rvts4 /* Jump 1 */ +{ + color: #008000; + text-decoration: underline; +} +a.rvts5, span.rvts5 /* Jump 2 */ +{ + color: #008000; + text-decoration: underline; +} +span.rvts6 +{ +} +span.rvts7 +{ + font-weight: bold; + color: #0000ff; +} +span.rvts8 +{ + font-weight: bold; + color: #000080; +} +span.rvts9 +{ + font-style: italic; + color: #800000; +} +a.rvts10, span.rvts10 +{ + color: #008000; + text-decoration: underline; +} +span.rvts11 +{ + color: #a0a0a0; +} +span.rvts12 +{ + font-size: 15pt; + font-family: 'Tahoma', 'Geneva', sans-serif; + font-weight: bold; + color: #696969; +} +span.rvts13 +{ + font-weight: bold; + color: #a0a0a0; +} +span.rvts14 +{ + font-style: italic; + color: #a0a0a0; +} +span.rvts15 +{ + font-size: 12pt; +} +a.rvts16, span.rvts16 +{ + font-size: 12pt; + color: #0000ff; + text-decoration: underline; +} +a.rvts16:hover +{ + color: #0000ff; +} +span.rvts17 +{ + font-size: 18pt; +} +span.rvts18 /* Font Style */ +{ + font-family: 'Tahoma', 'Geneva', sans-serif; + font-style: italic; + color: #c0c0c0; +} +a.rvts19, span.rvts19 /* Font Style */ +{ + font-family: 'Tahoma', 'Geneva', sans-serif; + font-style: italic; + color: #6666ff; + text-decoration: underline; +} +span.rvts20 +{ + text-decoration: underline; +} +span.rvts21 +{ + font-size: 14pt; +} +span.rvts22 +{ + font-size: 24pt; + text-decoration: underline; +} +a.rvts23, span.rvts23 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts23:hover +{ + color: #0000ff; +} +a.rvts24, span.rvts24 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts24:hover +{ + color: #0000ff; +} +span.rvts25 +{ + font-size: 12pt; + text-decoration: underline; +} +span.rvts26 +{ + font-size: 18pt; + text-decoration: underline; +} +span.rvts27 +{ + color: #000000; +} +span.rvts28 +{ + font-size: 16pt; + color: #000000; +} +span.rvts29 +{ + font-size: 14pt; + color: #000000; +} +span.rvts30 +{ + font-size: 12pt; + color: #000000; +} +span.rvts31 +{ + font-size: 12pt; + font-family: 'Times New Roman', 'Times', serif; + color: #000000; +} +span.rvts32 +{ +} +span.rvts33 +{ + font-size: 14pt; +} +span.rvts34 +{ + font-size: 16pt; +} +a.rvts35, span.rvts35 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts35:hover +{ + color: #0000ff; +} +a.rvts36, span.rvts36 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts36:hover +{ + color: #0000ff; +} +span.rvts37 +{ + font-size: 16pt; +} +a.rvts38, span.rvts38 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts38:hover +{ + color: #0000ff; +} +span.rvts39 +{ + font-family: 'Lucida Console', 'Monaco', monospace; +} +span.rvts40 +{ + font-style: italic; +} +a.rvts41, span.rvts41 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts41:hover +{ + color: #0000ff; +} +span.rvts42 +{ + font-family: 'Times New Roman', 'Times', serif; +} +span.rvts43 +{ + font-size: 11pt; + font-family: 'Courier New', 'Courier', monospace; +} +a.rvts44, span.rvts44 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts44:hover +{ + color: #0000ff; +} +span.rvts45 +{ + font-weight: bold; +} +a.rvts46, span.rvts46 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts46:hover +{ + color: #0000ff; +} +a.rvts47, span.rvts47 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts47:hover +{ + color: #0000ff; +} +span.rvts48 +{ + font-size: 16pt; + text-decoration: underline; +} +a.rvts49, span.rvts49 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts49:hover +{ + color: #0000ff; +} +span.rvts50 +{ + font-size: 24pt; +} +a.rvts51, span.rvts51 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts51:hover +{ + color: #0000ff; +} +span.rvts52 +{ + font-size: 14pt; + text-decoration: underline; +} +span.rvts53 +{ + font-family: 'Courier New', 'Courier', monospace; +} +span.rvts54 +{ + font-size: 9pt; +} +a.rvts55, span.rvts55 +{ + font-size: 9pt; + color: #0000ff; + text-decoration: underline; +} +a.rvts55:hover +{ + color: #0000ff; +} +span.rvts56 +{ + font-family: 'Courier New', 'Courier', monospace; +} +a.rvts57, span.rvts57 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts57:hover +{ + color: #0000ff; +} +a.rvts58, span.rvts58 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts58:hover +{ + color: #0000ff; +} +a.rvts59, span.rvts59 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts59:hover +{ + color: #0000ff; +} +span.rvts60 +{ + font-size: 12pt; + font-weight: bold; +} +a.rvts61, span.rvts61 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts61:hover +{ + color: #0000ff; +} +a.rvts62, span.rvts62 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts62:hover +{ + color: #0000ff; +} +a.rvts63, span.rvts63 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts63:hover +{ + color: #0000ff; +} +a.rvts64, span.rvts64 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts64:hover +{ + color: #0000ff; +} +a.rvts65, span.rvts65 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts65:hover +{ + color: #0000ff; +} +a.rvts66, span.rvts66 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts66:hover +{ + color: #0000ff; +} +a.rvts67, span.rvts67 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts67:hover +{ + color: #0000ff; +} +span.rvts68 +{ + font-size: 12pt; + font-weight: bold; + text-decoration: underline; +} +a.rvts69, span.rvts69 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts69:hover +{ + color: #0000ff; +} +a.rvts70, span.rvts70 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts70:hover +{ + color: #0000ff; +} +a.rvts71, span.rvts71 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts71:hover +{ + color: #0000ff; +} +span.rvts72 +{ + font-size: 11pt; + font-weight: bold; +} +span.rvts73 +{ + font-size: 8pt; +} +a.rvts74, span.rvts74 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts74:hover +{ + color: #0000ff; +} +a.rvts75, span.rvts75 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts75:hover +{ + color: #0000ff; +} +span.rvts76 +{ + color: #0000ff; +} +span.rvts77 +{ + color: #00cc00; +} +span.rvts78 +{ + color: #ff0000; +} +span.rvts79 +{ + color: #00be00; +} +span.rvts80 +{ + color: #a08c00; +} +span.rvts81 +{ + color: #0000c3; +} +span.rvts82 +{ + color: #0082a0; +} +span.rvts83 +{ + color: #d2be00; +} +span.rvts84 +{ + color: #0a0aff; +} +span.rvts85 +{ + color: #05ff05; +} +span.rvts86 +{ + font-size: 22pt; + text-decoration: underline; +} +a.rvts87, span.rvts87 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts87:hover +{ + color: #0000ff; +} +a.rvts88, span.rvts88 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts88:hover +{ + color: #0000ff; +} +a.rvts89, span.rvts89 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts89:hover +{ + color: #0000ff; +} +span.rvts90 +{ + font-size: 18pt; + font-weight: bold; +} +a.rvts91, span.rvts91 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts91:hover +{ + color: #0000ff; +} +a.rvts92, span.rvts92 +{ + color: #0000ff; + text-decoration: underline; +} +a.rvts92:hover +{ + color: #0000ff; +} +span.rvts93 +{ + font-size: 12pt; + font-family: 'Courier New', 'Courier', monospace; + font-weight: bold; +} +span.rvts94 +{ + font-size: 14pt; + font-weight: bold; +} +span.rvts95 +{ + font-size: 12pt; + font-family: 'Courier New', 'Courier', monospace; + color: #000080; +} +span.rvts96 +{ + font-size: 12pt; + font-family: 'Courier New', 'Courier', monospace; + color: #333399; +} +span.rvts97 +{ + font-family: 'Courier New', 'Courier', monospace; + color: #000080; +} +span.rvts98 +{ + font-size: 16pt; + font-family: 'Courier New', 'Courier', monospace; + font-weight: bold; +} +span.rvts99 +{ + font-size: 11pt; + font-family: 'Courier New', 'Courier', monospace; + font-weight: bold; +} +span.rvts100 +{ + font-family: 'Courier New', 'Courier', monospace; + font-weight: bold; +} +span.rvts101 +{ + font-size: 12pt; + font-family: 'Courier New', 'Courier', monospace; + color: #000080; +} +a.rvts102, span.rvts102 +{ + font-family: 'Courier New', 'Courier', monospace; + color: #0000ff; + text-decoration: underline; +} +a.rvts102:hover +{ + color: #0000ff; +} +span.rvts103 +{ + font-size: 14pt; + font-weight: bold; +} +span.rvts104 +{ + font-family: 'Courier New', 'Courier', monospace; + font-weight: bold; + text-decoration: underline; +} +span.rvts105 +{ + font-size: 12pt; + font-family: 'Courier New', 'Courier', monospace; + color: #00007f; +} +span.rvts106 +{ + font-size: 14pt; + font-family: 'Courier New', 'Courier', monospace; +} +span.rvts107 +{ + font-size: 12pt; + font-family: 'Courier New', 'Courier', monospace; +} +span.rvts108 +{ + font-size: 12pt; + font-family: 'Courier New', 'Courier', monospace; + color: #00007f; +} +span.rvts109 +{ + font-family: 'Courier New', 'Courier', monospace; + color: ; +} +span.rvts110 +{ + font-family: 'Lucida Console', 'Monaco', monospace; + text-decoration: underline; +} +span.rvts111 +{ + font-weight: bold; + text-decoration: underline; +} +span.rvts112 +{ + font-size: 11pt; + text-decoration: underline; +} +span.rvts113 +{ + font-size: 5pt; +} +span.rvts114 +{ + font-size: 5pt; + font-weight: bold; +} +/* ========== Para Styles ========== */ +p,ul,ol /* Paragraph Style */ +{ + text-align: left; + text-indent: 0px; + padding: 0px 0px 0px 0px; + margin: 0px 0px 0px 0px; +} +.rvps1 /* Centered */ +{ + text-align: center; +} +.rvps2 +{ +} +.rvps3 +{ + text-align: center; +} +.rvps4 /* Paragraph Style */ +{ + text-align: center; + border-color: #c0c0c0; + border-style: solid; + border-width: 1px; + border-right: none; + border-left: none; + padding: 2px 0px 2px 0px; + margin: 7px 0px 7px 0px; +} +.rvps5 +{ + background: #ffffff; +} +.rvps6 +{ + text-indent: 48px; +} +.rvps7 +{ + text-indent: 48px; + margin: 0px 0px 0px 48px; +} +/* ========== Lists ========== */ +.list0 {text-indent: 0px; padding: 0; margin: 0 0 0 24px; list-style-position: outside; list-style-type: disc;} +.list1 {text-indent: 0px; padding: 0; margin: 0 0 0 24px; list-style-position: outside; list-style-type: circle;} +.list2 {text-indent: 0px; padding: 0; margin: 0 0 0 24px; list-style-position: outside; list-style-type: square;} +.list3 {text-indent: 0px; padding: 0; margin: 0 0 0 48px; list-style-position: outside; list-style-type: circle;} +.list4 {text-indent: 0px; padding: 0; margin: 0 0 0 48px; list-style-position: outside; list-style-type: square;} +.list5 {text-indent: 0px; padding: 0; margin: 0 0 0 48px; list-style-position: outside; list-style-type: disc;} +.list6 {text-indent: 0px; padding: 0; margin: 0 0 0 24px; list-style-position: outside;} +.list7 {text-indent: 0px; padding: 0; margin: 0 0 0 36px; list-style-position: outside; list-style-type: circle;} diff --git a/web/help/css/layout.min.css b/web/help/css/layout.min.css new file mode 100644 index 00000000..5efef0ea --- /dev/null +++ b/web/help/css/layout.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */.unselectable{-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.element-invisible{position:absolute !important;clip:rect(1px, 1px, 1px, 1px);overflow:hidden;height:1px}body{background-color:#fff}@media screen and (max-width: 768px){body.sm-nav-expanded{overflow:hidden}}@media screen and (max-width: 768px){body.sm-nav-expanded nav{left:0;opacity:1}}@media screen and (max-width: 768px){body.sm-nav-expanded .mask{visibility:visible;opacity:0.5}}@media screen and (max-width: 768px){body.sm-nav-expanded .header-up nav{margin-top:0}}@media screen and (min-width: 769px){body.md-nav-expanded div#main{margin-left:350px}}@media screen and (min-width: 769px){body.md-nav-expanded header{padding-left:364px}}@media screen and (min-width: 769px){body.md-nav-expanded nav{left:0;opacity:1}}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#285f8f;text-decoration:underline}header{background-color:#fff;border-bottom:1px solid #d9d9d9;box-shadow:0 1px 5px rgba(0,0,0,0.1);padding:10px 14px;position:fixed;top:0;left:0;right:0;height:64px;min-height:64px;z-index:2;display:flex;flex-wrap:nowrap;align-content:flex-start;align-items:center}@media screen and (max-width: 768px){header.slideUp.headroom--not-bottom{box-shadow:none;top:-64px}}header .hnd-toggle{background-color:transparent;border-color:transparent;margin-right:10px;padding:9px}@media screen and (min-width: 769px){header .hnd-toggle{display:none}}header .hnd-toggle .icon-bar{background-color:#666;display:block;width:22px;height:2px;border-radius:1px}header .hnd-toggle .icon-bar+.icon-bar{margin-top:4px}header h1{margin:0;flex-grow:1;font-size:19px;font-weight:500;line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}header .logo{margin-left:10px;max-height:44px}nav{background-color:#f7f7f7;border:0;opacity:0;position:fixed;top:0;left:-350px;bottom:0;width:350px;z-index:3;overflow:hidden;display:flex;flex-direction:column;flex-wrap:nowrap}@media screen and (max-width: 768px){nav{box-shadow:1px 0 5px rgba(0,0,0,0.1);left:-90%;width:90% !important;margin-top:0;z-index:5}}nav .tab-tabs{border-bottom:1px solid #d9d9d9;box-shadow:0 1px 5px rgba(0,0,0,0.1);display:flex;justify-content:space-around;align-items:stretch;height:64px;min-height:64px;margin:0;padding:0}nav .tab-tabs .hnd-toggle{background-color:#eaeaea;margin:0 16px 0 14px;padding:6px 13px}nav .tab-tabs .hnd-toggle:hover{background-color:#f7f7f7}@media screen and (min-width: 769px){nav .tab-tabs .hnd-toggle{display:none}}nav .tab-tabs li{font-size:16px;height:100%;list-style:none;overflow:hidden;position:relative;text-align:center;float:none;margin-bottom:0}nav .tab-tabs li a{min-height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;align-content:stretch;text-overflow:ellipsis;cursor:pointer !important;border:0 !important;border-color:transparent !important;border-radius:0 !important;margin:0 !important;padding:0 !important;line-height:initial !important}nav .tab-tabs li .glyphicon{margin-bottom:5px}nav .tab-tabs li#nav-close{align-self:center;height:auto;min-width:70px}@media screen and (min-width: 769px){nav .tab-tabs li#nav-close{min-width:0}}nav .tab-tabs li+li{flex-grow:1}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#666}nav .tab-tabs>li.active>a{background-color:#ddd;color:#337ab7}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#eaeaea;color:#337ab7}nav .tab-tabs>li.tab::after{content:"";background:#337ab7;height:2px;position:absolute;width:100%;left:0;bottom:0;transform:scale(0)}nav .tab-tabs>li.tab.active::after,nav .tab-tabs>li.tab:hover::after{transform:scale(1)}nav .tab-tabs>li.active>a{background-color:#f2f2f2}nav .tab-content{flex-grow:1;overflow:auto}nav .search-input{margin:7px}@media screen and (max-width: 768px){nav .search-input #input-search{font-size:16px}}nav #search-info{border-left:2px solid #ddd;display:none;margin:7px;padding:5px}@media screen and (max-width: 768px){nav #search-info{font-size:16px}}#hnd-splitter{background-color:transparent;position:fixed;top:0;left:-100px;width:8px;height:100%;touch-action:none;user-select:none;z-index:10}#hnd-splitter:hover{background-color:#ddd}@media screen and (max-width: 768px){#hnd-splitter{display:none}}.mask{background-color:#000;visibility:hidden;opacity:0;position:fixed;top:0;left:0;right:0;bottom:0;z-index:4}div#main{margin:64px 0 0 0;z-index:1}div#main>article{padding:14px}div#main>article mark{background-color:#ffff7b;padding:0}div#main>article .navigation{border-bottom:2px solid #f2f2f2;display:flex;margin-bottom:20px}div#main>article .navigation:empty{border:0}div#main>article .navigation .breadcrumb{background-color:transparent;border-radius:0;flex-grow:1;margin-bottom:0;padding:0 0 5px 0}div#main>article .navigation .breadcrumb>li::after{padding:0 5px;color:#d9d9d9;content:"/"}div#main>article .navigation .breadcrumb>li+li::before{content:none;padding:0}div#main>article .navigation .nav-arrows{flex-shrink:0;margin-bottom:4px}div#main>article .navigation .nav-arrows a{border:0;background-color:transparent;color:#333;padding:1px 6px}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#337ab7}div#main>article #topic_footer{margin-top:14px}#topic-content{padding:0}#topic-content table{border-collapse:separate}#topic-content img{max-width:100%;height:auto;vertical-align:baseline}.jstree .jstree-anchor{text-shadow:inherit}.jstree .jstree-node .jstree-clicked{background:#ddd;border-color:#aaa}.jstree .jstree-node .jstree-hovered{background:#eaeaea;border-color:#b7b7b7}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl{background-color:transparent;background-image:none;background-position:0 0}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{content:"\e250";color:#666;font-family:'Glyphicons Halflings';font-style:normal;font-size:10px}@media screen and (max-width: 768px){.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{font-size:16px}}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#337ab7}.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{content:"\e252"}.jstree .jstree-node.jstree-open>.jstree-anchor>.icon-default{background:transparent url(../vendors/helpndoc-5/icons/1.png) no-repeat center center !important}.jstree .jstree-node.jstree-closed>.jstree-anchor>.icon-default{background:transparent url(../vendors/helpndoc-5/icons/0.png) no-repeat center center !important}.jstree .jstree-node .icon-default{background:transparent url(../vendors/helpndoc-5/icons/8.png) no-repeat center center !important}.jstree .jstree-node .icon-0{background:transparent url(../vendors/helpndoc-5/icons/0.png) no-repeat center center !important}.jstree .jstree-node .icon-1{background:transparent url(../vendors/helpndoc-5/icons/1.png) no-repeat center center !important}.jstree .jstree-node .icon-2{background:transparent url(../vendors/helpndoc-5/icons/2.png) no-repeat center center !important}.jstree .jstree-node .icon-3{background:transparent url(../vendors/helpndoc-5/icons/3.png) no-repeat center center !important}.jstree .jstree-node .icon-4{background:transparent url(../vendors/helpndoc-5/icons/4.png) no-repeat center center !important}.jstree .jstree-node .icon-5{background:transparent url(../vendors/helpndoc-5/icons/5.png) no-repeat center center !important}.jstree .jstree-node .icon-6{background:transparent url(../vendors/helpndoc-5/icons/6.png) no-repeat center center !important}.jstree .jstree-node .icon-7{background:transparent url(../vendors/helpndoc-5/icons/7.png) no-repeat center center !important}.jstree .jstree-node .icon-8{background:transparent url(../vendors/helpndoc-5/icons/8.png) no-repeat center center !important}.jstree .jstree-node .icon-9{background:transparent url(../vendors/helpndoc-5/icons/9.png) no-repeat center center !important}.jstree .jstree-node .icon-10{background:transparent url(../vendors/helpndoc-5/icons/10.png) no-repeat center center !important}.jstree .jstree-node .icon-11{background:transparent url(../vendors/helpndoc-5/icons/11.png) no-repeat center center !important}.jstree .jstree-node .icon-12{background:transparent url(../vendors/helpndoc-5/icons/12.png) no-repeat center center !important}.jstree .jstree-node .icon-13{background:transparent url(../vendors/helpndoc-5/icons/13.png) no-repeat center center !important}.jstree .jstree-node .icon-14{background:transparent url(../vendors/helpndoc-5/icons/14.png) no-repeat center center !important}.jstree .jstree-node .icon-15{background:transparent url(../vendors/helpndoc-5/icons/15.png) no-repeat center center !important}.jstree .jstree-node .icon-16{background:transparent url(../vendors/helpndoc-5/icons/16.png) no-repeat center center !important}.jstree .jstree-node .icon-17{background:transparent url(../vendors/helpndoc-5/icons/17.png) no-repeat center center !important}.jstree .jstree-node .icon-18{background:transparent url(../vendors/helpndoc-5/icons/18.png) no-repeat center center !important}.jstree .jstree-node .icon-19{background:transparent url(../vendors/helpndoc-5/icons/19.png) no-repeat center center !important}.jstree .jstree-node .icon-20{background:transparent url(../vendors/helpndoc-5/icons/20.png) no-repeat center center !important}.jstree .jstree-node .icon-21{background:transparent url(../vendors/helpndoc-5/icons/21.png) no-repeat center center !important}.jstree .jstree-node .icon-22{background:transparent url(../vendors/helpndoc-5/icons/22.png) no-repeat center center !important}.jstree .jstree-node .icon-23{background:transparent url(../vendors/helpndoc-5/icons/23.png) no-repeat center center !important}.jstree .jstree-node .icon-24{background:transparent url(../vendors/helpndoc-5/icons/24.png) no-repeat center center !important}.jstree .jstree-node .icon-25{background:transparent url(../vendors/helpndoc-5/icons/25.png) no-repeat center center !important}.jstree .jstree-node .icon-26{background:transparent url(../vendors/helpndoc-5/icons/26.png) no-repeat center center !important}.jstree .jstree-node .icon-27{background:transparent url(../vendors/helpndoc-5/icons/27.png) no-repeat center center !important}.jstree .jstree-node .icon-28{background:transparent url(../vendors/helpndoc-5/icons/28.png) no-repeat center center !important}.jstree .jstree-node .icon-29{background:transparent url(../vendors/helpndoc-5/icons/29.png) no-repeat center center !important}.jstree .jstree-node .icon-30{background:transparent url(../vendors/helpndoc-5/icons/30.png) no-repeat center center !important}.jstree .jstree-node .icon-31{background:transparent url(../vendors/helpndoc-5/icons/31.png) no-repeat center center !important}.jstree .jstree-node .icon-32{background:transparent url(../vendors/helpndoc-5/icons/32.png) no-repeat center center !important}.jstree .jstree-node .icon-33{background:transparent url(../vendors/helpndoc-5/icons/33.png) no-repeat center center !important}.jstree .jstree-node .icon-34{background:transparent url(../vendors/helpndoc-5/icons/34.png) no-repeat center center !important}.jstree .jstree-node .icon-35{background:transparent url(../vendors/helpndoc-5/icons/35.png) no-repeat center center !important}.jstree .jstree-node .icon-36{background:transparent url(../vendors/helpndoc-5/icons/36.png) no-repeat center center !important}.jstree .jstree-node .icon-37{background:transparent url(../vendors/helpndoc-5/icons/37.png) no-repeat center center !important}.jstree .jstree-node .icon-38{background:transparent url(../vendors/helpndoc-5/icons/38.png) no-repeat center center !important}.jstree .jstree-node .icon-39{background:transparent url(../vendors/helpndoc-5/icons/39.png) no-repeat center center !important}.jstree .jstree-node .icon-40{background:transparent url(../vendors/helpndoc-5/icons/40.png) no-repeat center center !important}.jstree .jstree-node .icon-41{background:transparent url(../vendors/helpndoc-5/icons/41.png) no-repeat center center !important}.modal-body .relative-list{margin:0;padding:5px}.modal-body .relative-list li{list-style:none;margin:0;padding:0}@media screen and (max-width: 768px){.modal-body .relative-list li{font-size:1.1em;font-weight:700}}.modal-body .relative-list li a{color:#333;display:block;padding:5px}@media screen and (max-width: 768px){.modal-body .relative-list li a{padding:10px}}.modal-body .relative-list li a:hover{background-color:#f2f2f2;text-decoration:none} diff --git a/web/help/css/print.min.css b/web/help/css/print.min.css new file mode 100644 index 00000000..630764a7 --- /dev/null +++ b/web/help/css/print.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */header,nav,footer{display:none}div#main{margin:0}div#main>article .navigation{border-bottom:1px solid #aaa}div#main>article .navigation .nav-arrows{display:none} diff --git a/web/help/css/theme-dark-blue.min.css b/web/help/css/theme-dark-blue.min.css new file mode 100644 index 00000000..eb58d757 --- /dev/null +++ b/web/help/css/theme-dark-blue.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#3598dc}a:focus,a:hover{color:#1d6fa7}header{background-color:#333;border-bottom-color:#1a1a1a;color:#eee}header .hnd-toggle .icon-bar{background-color:#fff}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#3598dc}nav{background-color:#333}nav .tab-tabs{border-bottom-color:#1a1a1a}nav .tab-tabs .hnd-toggle{background-color:#2e2e2e;border-color:#1a1a1a;color:#eee}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f;color:#3598dc}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#eee}nav .tab-tabs>li.active>a{background-color:#2e2e2e;color:#3598dc}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#292929;color:#3598dc}nav .tab-tabs>li.tab::after{background:#3598dc}nav #search-info{border-left-color:#eee;color:#eee}.jstree .jstree-anchor{color:#eee}.jstree .jstree-node .jstree-clicked{background-color:#1f1f1f;border-color:#121212}.jstree .jstree-node .jstree-hovered{background-color:#141414;border-color:#080808}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#eee}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#3598dc}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#333}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#3598dc} diff --git a/web/help/css/theme-dark-green.min.css b/web/help/css/theme-dark-green.min.css new file mode 100644 index 00000000..2da23282 --- /dev/null +++ b/web/help/css/theme-dark-green.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#82b440}a:focus,a:hover{color:#597c2c}header{background-color:#333;border-bottom-color:#1a1a1a;color:#eee}header .hnd-toggle .icon-bar{background-color:#fff}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#82b440}nav{background-color:#333}nav .tab-tabs{border-bottom-color:#1a1a1a}nav .tab-tabs .hnd-toggle{background-color:#2e2e2e;border-color:#1a1a1a;color:#eee}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f;color:#82b440}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#eee}nav .tab-tabs>li.active>a{background-color:#2e2e2e;color:#82b440}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#292929;color:#82b440}nav .tab-tabs>li.tab::after{background:#82b440}nav #search-info{border-left-color:#eee;color:#eee}.jstree .jstree-anchor{color:#eee}.jstree .jstree-node .jstree-clicked{background-color:#1f1f1f;border-color:#121212}.jstree .jstree-node .jstree-hovered{background-color:#141414;border-color:#080808}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#eee}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#82b440}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#333}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#82b440} diff --git a/web/help/css/theme-dark-orange.min.css b/web/help/css/theme-dark-orange.min.css new file mode 100644 index 00000000..ce791959 --- /dev/null +++ b/web/help/css/theme-dark-orange.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#f40}a:focus,a:hover{color:#b33000}header{background-color:#333;border-bottom-color:#1a1a1a;color:#eee}header .hnd-toggle .icon-bar{background-color:#fff}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#f40}nav{background-color:#333}nav .tab-tabs{border-bottom-color:#1a1a1a}nav .tab-tabs .hnd-toggle{background-color:#2e2e2e;border-color:#1a1a1a;color:#eee}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f;color:#f40}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#eee}nav .tab-tabs>li.active>a{background-color:#2e2e2e;color:#f40}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#292929;color:#f40}nav .tab-tabs>li.tab::after{background:#f40}nav #search-info{border-left-color:#eee;color:#eee}.jstree .jstree-anchor{color:#eee}.jstree .jstree-node .jstree-clicked{background-color:#1f1f1f;border-color:#121212}.jstree .jstree-node .jstree-hovered{background-color:#141414;border-color:#080808}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#eee}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#f40}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#333}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#f40} diff --git a/web/help/css/theme-dark-purple.min.css b/web/help/css/theme-dark-purple.min.css new file mode 100644 index 00000000..3e3eb127 --- /dev/null +++ b/web/help/css/theme-dark-purple.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#D400FF}a:focus,a:hover{color:#9400b3}header{background-color:#333;border-bottom-color:#1a1a1a;color:#eee}header .hnd-toggle .icon-bar{background-color:#fff}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#D400FF}nav{background-color:#333}nav .tab-tabs{border-bottom-color:#1a1a1a}nav .tab-tabs .hnd-toggle{background-color:#2e2e2e;border-color:#1a1a1a;color:#eee}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#292929;border-color:#0f0f0f;color:#D400FF}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#eee}nav .tab-tabs>li.active>a{background-color:#2e2e2e;color:#D400FF}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#292929;color:#D400FF}nav .tab-tabs>li.tab::after{background:#D400FF}nav #search-info{border-left-color:#eee;color:#eee}.jstree .jstree-anchor{color:#eee}.jstree .jstree-node .jstree-clicked{background-color:#1f1f1f;border-color:#121212}.jstree .jstree-node .jstree-hovered{background-color:#141414;border-color:#080808}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#eee}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#D400FF}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#333}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#D400FF} diff --git a/web/help/css/theme-light-blue.min.css b/web/help/css/theme-light-blue.min.css new file mode 100644 index 00000000..795008c7 --- /dev/null +++ b/web/help/css/theme-light-blue.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#337ab7}a:focus,a:hover{color:#22527b}header{background-color:#fff;border-bottom-color:#e6e6e6;color:#222}header .hnd-toggle .icon-bar{background-color:#6f6f6f}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#f5f5f5;border-color:#dbdbdb}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#337ab7}nav{background-color:#f7f7f7}nav .tab-tabs{border-bottom-color:#dedede}nav .tab-tabs .hnd-toggle{background-color:#f2f2f2;border-color:#dedede;color:#666}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#ededed;border-color:#d3d3d3;color:#337ab7}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#666}nav .tab-tabs>li.active>a{background-color:#f2f2f2;color:#337ab7}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#ededed;color:#337ab7}nav .tab-tabs>li.tab::after{background:#337ab7}nav #search-info{border-left-color:#666;color:#666}.jstree .jstree-anchor{color:#666}.jstree .jstree-node .jstree-clicked{background-color:#e3e3e3;border-color:#d6d6d6}.jstree .jstree-node .jstree-hovered{background-color:#d8d8d8;border-color:#ccc}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#666}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#337ab7}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#222}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#337ab7} diff --git a/web/help/css/theme-light-green.min.css b/web/help/css/theme-light-green.min.css new file mode 100644 index 00000000..7e7bbe97 --- /dev/null +++ b/web/help/css/theme-light-green.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#6f9a37}a:focus,a:hover{color:#466223}header{background-color:#fff;border-bottom-color:#e6e6e6;color:#222}header .hnd-toggle .icon-bar{background-color:#6f6f6f}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#f5f5f5;border-color:#dbdbdb}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#6f9a37}nav{background-color:#f7f7f7}nav .tab-tabs{border-bottom-color:#dedede}nav .tab-tabs .hnd-toggle{background-color:#f2f2f2;border-color:#dedede;color:#666}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#ededed;border-color:#d3d3d3;color:#6f9a37}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#666}nav .tab-tabs>li.active>a{background-color:#f2f2f2;color:#6f9a37}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#ededed;color:#6f9a37}nav .tab-tabs>li.tab::after{background:#6f9a37}nav #search-info{border-left-color:#666;color:#666}.jstree .jstree-anchor{color:#666}.jstree .jstree-node .jstree-clicked{background-color:#e3e3e3;border-color:#d6d6d6}.jstree .jstree-node .jstree-hovered{background-color:#d8d8d8;border-color:#ccc}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#666}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#6f9a37}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#222}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#6f9a37} diff --git a/web/help/css/theme-light-orange.min.css b/web/help/css/theme-light-orange.min.css new file mode 100644 index 00000000..a754af0f --- /dev/null +++ b/web/help/css/theme-light-orange.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#B23000}a:focus,a:hover{color:#661b00}header{background-color:#fff;border-bottom-color:#e6e6e6;color:#222}header .hnd-toggle .icon-bar{background-color:#6f6f6f}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#f5f5f5;border-color:#dbdbdb}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#B23000}nav{background-color:#f7f7f7}nav .tab-tabs{border-bottom-color:#dedede}nav .tab-tabs .hnd-toggle{background-color:#f2f2f2;border-color:#dedede;color:#666}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#ededed;border-color:#d3d3d3;color:#B23000}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#666}nav .tab-tabs>li.active>a{background-color:#f2f2f2;color:#B23000}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#ededed;color:#B23000}nav .tab-tabs>li.tab::after{background:#B23000}nav #search-info{border-left-color:#666;color:#666}.jstree .jstree-anchor{color:#666}.jstree .jstree-node .jstree-clicked{background-color:#e3e3e3;border-color:#d6d6d6}.jstree .jstree-node .jstree-hovered{background-color:#d8d8d8;border-color:#ccc}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#666}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#B23000}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#222}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#B23000} diff --git a/web/help/css/theme-light-purple.min.css b/web/help/css/theme-light-purple.min.css new file mode 100644 index 00000000..f4bb2c60 --- /dev/null +++ b/web/help/css/theme-light-purple.min.css @@ -0,0 +1,5 @@ +/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */a{color:#9400B2}a:focus,a:hover{color:#540066}header{background-color:#fff;border-bottom-color:#e6e6e6;color:#222}header .hnd-toggle .icon-bar{background-color:#6f6f6f}header .hnd-toggle.active,header .hnd-toggle:active,header .hnd-toggle.focus,header .hnd-toggle:focus,header .hnd-toggle:active:focus,header .hnd-toggle:hover{background-color:#f5f5f5;border-color:#dbdbdb}header .hnd-toggle.active .icon-bar,header .hnd-toggle:active .icon-bar,header .hnd-toggle.focus .icon-bar,header .hnd-toggle:focus .icon-bar,header .hnd-toggle:active:focus .icon-bar,header .hnd-toggle:hover .icon-bar{background-color:#9400B2}nav{background-color:#f7f7f7}nav .tab-tabs{border-bottom-color:#dedede}nav .tab-tabs .hnd-toggle{background-color:#f2f2f2;border-color:#dedede;color:#666}nav .tab-tabs .hnd-toggle.active,nav .tab-tabs .hnd-toggle:active,nav .tab-tabs .hnd-toggle.focus,nav .tab-tabs .hnd-toggle:focus,nav .tab-tabs .hnd-toggle:active:focus,nav .tab-tabs .hnd-toggle:hover{background-color:#ededed;border-color:#d3d3d3;color:#9400B2}nav .tab-tabs>li>a,nav .tab-tabs>li.active>a,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{color:#666}nav .tab-tabs>li.active>a{background-color:#f2f2f2;color:#9400B2}nav .tab-tabs>li>a:focus,nav .tab-tabs>li>a:hover,nav .tab-tabs>li.active>a:focus,nav .tab-tabs>li.active>a:hover{background-color:#ededed;color:#9400B2}nav .tab-tabs>li.tab::after{background:#9400B2}nav #search-info{border-left-color:#666;color:#666}.jstree .jstree-anchor{color:#666}.jstree .jstree-node .jstree-clicked{background-color:#e3e3e3;border-color:#d6d6d6}.jstree .jstree-node .jstree-hovered{background-color:#d8d8d8;border-color:#ccc}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:before{color:#666}.jstree .jstree-node.jstree-closed>.jstree-icon.jstree-ocl:hover:before,.jstree .jstree-node.jstree-open>.jstree-icon.jstree-ocl:hover:before{color:#9400B2}div#main>article .navigation{border-bottom-color:#f2f2f2}div#main>article .navigation .breadcrumb>li::after{color:#ccc}div#main>article .navigation .nav-arrows a{color:#222}div#main>article .navigation .nav-arrows a:hover,div#main>article .navigation .nav-arrows a:focus:hover{color:#9400B2} diff --git a/web/help/fceux.html b/web/help/fceux.html index b3cd7afd..ce5150b1 100644 --- a/web/help/fceux.html +++ b/web/help/fceux.html @@ -1,30 +1,304 @@ - - + + + + - - - FCEUX Help - + + + + + + + Introduction + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Introduction

    + +
    + +

    +

    Welcome to the FCEUX Help menu.

    +


    +

    The following information is about how to use FCEUX, its commands, how to use FCEUX to its fullest, and the communities for which FCEUX is designed.

    +


    +


    +

    Introduction

    +


    +

    Basic information about FCEUX and its features.

    +

    Overview

    +

    FCE Ultra Version History

    +

    What's Combined In FCEUX?

    +


    +


    +

    Additional Chapters

    +


    +

    General

    +

    Guides for general uses of FCEUX and the FCEUX NES menu.

    +


    +

    Config

    +

    Commands under FCEUX Config menu.

    +


    +

    Tools

    +

    Commands under FCEUX Tools menu.

    +


    +

    Debug

    +

    Commands under FCEUX Debug menu.

    +


    +

    FAQ / Guides

    +

    Information regarding various concepts such as TAS, ROM Hacking, RAM Mapping.

    +


    +

    Technical Information

    +

    Technical information relating to NES hardware emulation & FCEUX file formats.

    +


    +


    +


    +


    +

    Help menu created by adelikat.

    +

    Updated & maintained by AnS.

    +

    Information collected and/or written/edited by adelikat and AnS.

    +

    Minor edits of lua-related text by FatRatKnight.

    +

    Debugger documentation edits by rainwarrior.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Easy EPub and documentation editor

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/fcm.html b/web/help/fcm.html index b31655a0..42da4b19 100644 --- a/web/help/fcm.html +++ b/web/help/fcm.html @@ -1,101 +1,292 @@ - - + + + + + - .fcm - - - - - - - - - - + + + + + + + + .fcm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    .fcm

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    FCE Ultra Movie File Format

    -

           - Updated March 22, 2004

    -


    -

    The FCM file format is a somewhat "joined" file format.  The first part of a FCM

    -

    file will contain an FCS-format state save.  After this data, the FCM-specific data

    -

    begins, which is being referred to from this point.

    -


    -


    -

    Currently, the only supported input scheme for a FCM is four joysticks.

    -


    -

    The FCM data consists of a stream of joystick commands:

    -


    -

           dLLjjbbb

    -


    -

           d  = Dummy update, if set.  Used to reset frame timestamp.

    -

           LL  = timestamp length, in bytes(maximum of 3 bytes).

    -

           jj  = Which joystick(0-3).

    -

           bbb = Which button(0-7).

    -


    -

           If the dummy update bit is set, a command can also have occurred.  Look at the

    -

           lower 5 bits:

    -

                   0        =        Just a dummy update.

    -

                   1        =        Reset

    -

                   2        =        Power

    -


    -

           The timestamp is stored after the joystick command, in LSB-first format.  It is

    -

           the number of frames since the last event.  A timestamp length of "0" is valid, to

    -

           be used when several different buttons need to change state at the same time(same frame,

    -

           at least).

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Create HTML Help, DOC, PDF and print manuals from 1 single source

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    .fcm

    + +
    + +

    +

    FCE Ultra Movie File Format

    +

           - Updated March 22, 2004

    +


    +

    The FCM file format is a somewhat "joined" file format.  The first part of a FCM

    +

    file will contain an FCS-format state save.  After this data, the FCM-specific data

    +

    begins, which is being referred to from this point.

    +


    +


    +

    Currently, the only supported input scheme for a FCM is four joysticks.

    +


    +

    The FCM data consists of a stream of joystick commands:

    +


    +

           dLLjjbbb

    +


    +

           d  = Dummy update, if set.  Used to reset frame timestamp.

    +

           LL  = timestamp length, in bytes(maximum of 3 bytes).

    +

           jj  = Which joystick(0-3).

    +

           bbb = Which button(0-7).

    +


    +

           If the dummy update bit is set, a command can also have occurred.  Look at the

    +

           lower 5 bits:

    +

                   0        =        Just a dummy update.

    +

                   1        =        Reset

    +

                   2        =        Power

    +


    +

           The timestamp is stored after the joystick command, in LSB-first format.  It is

    +

           the number of frames since the last event.  A timestamp length of "0" is valid, to

    +

           be used when several different buttons need to change state at the same time(same frame,

    +

           at least).

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Create cross-platform Qt Help files

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/fcs.html b/web/help/fcs.html index 428602d2..d9b4c45f 100644 --- a/web/help/fcs.html +++ b/web/help/fcs.html @@ -1,227 +1,418 @@ - - + + + + + - Savestate (.fcs) - - - - - - - - - - + + + + + + + + Savestate (.fcs) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    Savestate (.fcs)

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    FCE Ultra Save State Format

    -

    Updated:  Mar 9, 2003

    -

    ---------------------------------------

    -


    -

    FCE Ultra's save state format is now designed to be as forward and backwards

    -

    compatible as possible.  This is achieved through the (over)use of chunks.

    -

    All multiple-byte variables are stored LSB(least significant byte)-first.

    -

    Data types:

    -


    -

           (u)int8 - (un)signed 8 bit variable(also referred to as "byte")

    -

           (u)int16 - (un)signed 16 bit variable

    -

           (u)int32 - (un)signed 32 bit variable

    -


    -

    -- Main File Header:

    -


    -

    The main file header is 16-bytes in length.  The first three bytes contain

    -

    the string "FCS".  The next byte contains the version of FCE Ultra that saved

    -

    this save state.  This document only applies to version "53"(.53) and higher.

    -

    After the version byte, the size of the entire file in bytes(minus the 16 byte

    -

    main file header) is stored.  If oldversion is set to 255, the 32-bit version

    -

    field will be used.  In this field, a version such as 0.98.10 is stored as "9810"(decimal).

    -

    The rest of the header is currently unused and should be nulled out.  

    -

    Example of relevant parts:

    -


    -

           FCS <uint8 oldversion> <uint32 totalsize> <uint32 version>

    -


    -

    -- Section Chunks:

    -


    -

    Sections chunk headers are 5-bytes in length.  The first byte defines what

    -

    section it  is, the next four bytes define the total size of the section

    -

    (including the section chunk header).

    -


    -

           <uint8 section> <uint32 size>

    -


    -

    Section definitions:

    -


    -

           1        -        "CPU"

    -

           2        -        "CPUC"

    -

           3        -        "PPU"

    -

           4        -        "CTLR"

    -

           5        -        "SND"

    -

           16        -        "EXTRA"

    -


    -

    -- Subsection Chunks

    -


    -

    Subsection chunks are stored within section chunks.  They contain the actual

    -

    state data.  Each subsection chunk is composed of an 8-byte header and the data.

    -

    The header contains a description(a name) and the size of the data contained

    -

    in the chunk:

    -

                   <uint8 description[4]> <uint32 size>

    -


    -

    The name is a four-byte string.  It does not need to be null-terminated.

    -

    If the string is less than four bytes in length, the remaining unused bytes

    -

    must be null.

    -


    -

    -- Subsection Chunk Description Definitions

    -


    -

    Note that not all subsection chunk description definitions listed below

    -

    are guaranteed to be in the section chunk.  It's just a list of what CAN

    -

    be in a section chunk.  This especially applies to the "EXTRA" subsection.

    -


    -

    ---- Section "CPU"

    -


    -

           Name:        Type:                Description:

    -

           

    -

           PC        uint16                Program Counter

    -

           A        uint8                Accumulator

    -

           P        uint8                Processor status register

    -

           X        uint8                X register

    -

           Y        uint8                Y register

    -

           S        uint8                Stack pointer

    -

           RAM        uint8[0x800]        2KB work RAM

    -


    -

    ---- Section "CPUC" (emulator specific)

    -


    -

           Name:        Type:                Description:

    -


    -

           JAMM        uint8                Non-zero value if CPU in a "jammed" state

    -

           IRQL        uint8                Non-zero value if IRQs are to be generated constantly

    -

           ICoa        int32                Temporary cycle counter

    -

           ICou        int32                Cycle counter

    -


    -

    ---- Section "PPU"

    -


    -

           Name:        Type:                Description:

    -


    -

           NTAR        uint8[0x800]        2 KB of name/attribute table RAM

    -

           PRAM        uint8[32]        32 bytes of palette index RAM

    -

           SPRA        uint8[0x100]        256 bytes of sprite RAM

    -

           PPU        uint8[4]        Last values written to $2000 and $2001, the PPU

    -

                                   status register, and the last value written to

    -

                                   $2003.

    -

           XOFF        uint8                Tile X-offset.

    -

           VTOG        uint8                Toggle used by $2005 and $2006.

    -

           RADD        uint16                PPU Address Register(address written to/read from

    -

                                   when $2007 is accessed).

    -

           TADD        uint16                PPU Address Register

    -

           VBUF        uint8                VRAM Read Buffer

    -

           PGEN        uint8                PPU "general" latch.  See Ki's document.

    -


    -

    ---- Section "CTLR" (somewhat emulator specific)

    -


    -

           Name:        Type:                Description:

    -


    -

           J1RB        uint8                Bit to be returned when first joystick is read.

    -

           J2RB        uint8                Bit to be returned when second joystick is read.

    -


    -

    ---- Section "SND" (somewhat emulator specific)

    -


    -

           NREG        uint16                Noise LFSR.

    -

           P17        uint8                Last byte written to $4017.

    -

           PBIN        uint8                DMC bit index.

    -

           PAIN        uint32                DMC address index(from $8000).

    -

           PSIN        uint32                DMC length counter(how many bytes left

    -

                                   to fetch).

    -


    -

           <to be finished>

    -


    -

    ---- Section "EXTRA" (varying emulator specificness)

    -


    -

           For iNES-format games(incomplete, and doesn't apply to every game):

    -


    -

           Name:        Type:                Description:

    -


    -

           WRAM        uint8[0x2000]        8KB of WRAM at $6000-$7fff

    -

           MEXR        uint8[0x8000]        (very emulator specific)

    -

           CHRR        uint8[0x2000]        8KB of CHR RAM at $0000-$1fff(in PPU address space).

    -

           EXNR        uint8[0x800]        Extra 2KB of name/attribute table RAM.

    -

           MPBY        uint8[32]        (very emulator specific)

    -

           MIRR        uint8                Current mirroring:

    -

                                           0 = "Horizontal"

    -

                                           1 = "Vertical"

    -

                                           $10 = Mirror from $2000

    -

                                           $11 = Mirror from $2400

    -

           IRQC        uint32                Generic IRQ counter

    -

           IQL1        uint32                Generic IRQ latch

    -

           IQL2        uint32                Generic IRQ latch

    -

           IRQA        uint8                Generic IRQ on/off register.

    -

           PBL        uint8[4]                List of 4 8KB ROM banks paged in at $8000-$FFFF

    -

           CBL        uint8[8]                List of 8 1KB VROM banks page in at $0000-$1FFF(PPU).

    -


    -

           For FDS games(incomplete):

    -


    -

           Name:        Type:                Description:

    -


    -

           DDT<x>  uint8[65500]    Disk data for side x(0-3).

    -

           FDSR        uint8[0x8000]        32 KB of work RAM

    -

           CHRR        uint8[0x2000]        8 KB of CHR RAM

    -

           IRQC        uint32                IRQ counter

    -

           IQL1        uint32                IRQ latch

    -

           IRQA        uint8                IRQ on/off.

    -


    -

           WAVE        uint8[64]        Carrier waveform data.

    -

           MWAV        uint8[32]        Modulator waveform data.

    -

           AMPL        uint8[2]                Amplitude data.

    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Create HTML Help, DOC, PDF and print manuals from 1 single source

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    Savestate (.fcs)

    + +
    + +

    +

    FCE Ultra Save State Format

    +

     Updated:  Mar 9, 2003

    +

    ---------------------------------------

    +


    +

    FCE Ultra's save state format is now designed to be as forward and backwards

    +

    compatible as possible.  This is achieved through the (over)use of chunks.

    +

    All multiple-byte variables are stored LSB(least significant byte)-first.

    +

    Data types:

    +


    +

           (u)int8 - (un)signed 8 bit variable(also referred to as "byte")

    +

           (u)int16 - (un)signed 16 bit variable

    +

           (u)int32 - (un)signed 32 bit variable

    +


    +

    -- Main File Header:

    +


    +

    The main file header is 16-bytes in length.  The first three bytes contain

    +

    the string "FCS".  The next byte contains the version of FCE Ultra that saved

    +

    this save state.  This document only applies to version "53"(.53) and higher.

    +

    After the version byte, the size of the entire file in bytes(minus the 16 byte

    +

    main file header) is stored.  If oldversion is set to 255, the 32-bit version

    +

    field will be used.  In this field, a version such as 0.98.10 is stored as "9810"(decimal).

    +

    The rest of the header is currently unused and should be nulled out.  

    +

    Example of relevant parts:

    +


    +

           FCS <uint8 oldversion> <uint32 totalsize> <uint32 version>

    +


    +

    -- Section Chunks:

    +


    +

    Sections chunk headers are 5-bytes in length.  The first byte defines what 

    +

    section it  is, the next four bytes define the total size of the section

    +

    (including the section chunk header).

    +


    +

           <uint8 section> <uint32 size>

    +


    +

    Section definitions:

    +


    +

           1        -        "CPU"

    +

           2        -        "CPUC"

    +

           3        -        "PPU"

    +

           4        -        "CTLR"

    +

           5        -        "SND"

    +

           16        -        "EXTRA"

    +


    +

    -- Subsection Chunks

    +


    +

    Subsection chunks are stored within section chunks.  They contain the actual

    +

    state data.  Each subsection chunk is composed of an 8-byte header and the data.

    +

    The header contains a description(a name) and the size of the data contained 

    +

    in the chunk:

    +

                   <uint8 description[4]> <uint32 size>

    +


    +

    The name is a four-byte string.  It does not need to be null-terminated.

    +

    If the string is less than four bytes in length, the remaining unused bytes

    +

    must be null.

    +


    +

    -- Subsection Chunk Description Definitions

    +


    +

    Note that not all subsection chunk description definitions listed below

    +

    are guaranteed to be in the section chunk.  It's just a list of what CAN

    +

    be in a section chunk.  This especially applies to the "EXTRA" subsection.

    +


    +

    ---- Section "CPU"

    +


    +

           Name:        Type:                Description:

    +

           

    +

           PC        uint16                Program Counter

    +

           A        uint8                Accumulator

    +

           P        uint8                Processor status register

    +

           X        uint8                X register

    +

           Y        uint8                Y register

    +

           S        uint8                Stack pointer

    +

           RAM        uint8[0x800]        2KB work RAM

    +


    +

    ---- Section "CPUC" (emulator specific)

    +


    +

           Name:        Type:                Description:

    +


    +

           JAMM        uint8                Non-zero value if CPU in a "jammed" state

    +

           IRQL        uint8                Non-zero value if IRQs are to be generated constantly

    +

           ICoa        int32                Temporary cycle counter

    +

           ICou        int32                Cycle counter

    +


    +

    ---- Section "PPU"

    +


    +

           Name:        Type:                Description:

    +


    +

           NTAR        uint8[0x800]        2 KB of name/attribute table RAM

    +

           PRAM        uint8[32]        32 bytes of palette index RAM

    +

           SPRA        uint8[0x100]        256 bytes of sprite RAM

    +

           PPU        uint8[4]        Last values written to $2000 and $2001, the PPU

    +

                                   status register, and the last value written to

    +

                                   $2003.

    +

           XOFF        uint8                Tile X-offset.

    +

           VTOG        uint8                Toggle used by $2005 and $2006.

    +

           RADD        uint16                PPU Address Register(address written to/read from

    +

                                   when $2007 is accessed).

    +

           TADD        uint16                PPU Address Register

    +

           VBUF        uint8                VRAM Read Buffer

    +

           PGEN        uint8                PPU "general" latch.  See Ki's document.

    +


    +

    ---- Section "CTLR" (somewhat emulator specific)

    +


    +

           Name:        Type:                Description:

    +


    +

           J1RB        uint8                Bit to be returned when first joystick is read.

    +

           J2RB        uint8                Bit to be returned when second joystick is read.

    +


    +

    ---- Section "SND" (somewhat emulator specific)

    +


    +

           NREG        uint16                Noise LFSR.

    +

           P17        uint8                Last byte written to $4017.

    +

           PBIN        uint8                DMC bit index.

    +

           PAIN        uint32                DMC address index(from $8000).

    +

           PSIN        uint32                DMC length counter(how many bytes left 

    +

                                   to fetch).

    +


    +

           <to be finished>

    +


    +

    ---- Section "EXTRA" (varying emulator specificness)

    +


    +

           For iNES-format games(incomplete, and doesn't apply to every game):

    +


    +

           Name:        Type:                Description:

    +


    +

           WRAM        uint8[0x2000]        8KB of WRAM at $6000-$7fff

    +

           MEXR        uint8[0x8000]        (very emulator specific)

    +

           CHRR        uint8[0x2000]        8KB of CHR RAM at $0000-$1fff(in PPU address space).

    +

           EXNR        uint8[0x800]         Extra 2KB of name/attribute table RAM.

    +

           MPBY        uint8[32]        (very emulator specific)

    +

           MIRR        uint8                Current mirroring:

    +

                                           0 = "Horizontal"

    +

                                           1 = "Vertical"

    +

                                           $10 = Mirror from $2000

    +

                                           $11 = Mirror from $2400

    +

           IRQC        uint32                Generic IRQ counter

    +

           IQL1        uint32                Generic IRQ latch

    +

           IQL2        uint32                Generic IRQ latch

    +

           IRQA        uint8                Generic IRQ on/off register.

    +

           PBL        uint8[4]                List of 4 8KB ROM banks paged in at $8000-$FFFF

    +

           CBL        uint8[8]                List of 8 1KB VROM banks page in at $0000-$1FFF(PPU).

    +


    +

           For FDS games(incomplete):

    +


    +

           Name:        Type:                Description:

    +


    +

           DDT<x>  uint8[65500]    Disk data for side x(0-3).

    +

           FDSR        uint8[0x8000]        32 KB of work RAM

    +

           CHRR        uint8[0x2000]        8 KB of CHR RAM

    +

           IRQC        uint32                IRQ counter

    +

           IQL1        uint32                IRQ latch

    +

           IRQA        uint8                IRQ on/off.

    +


    +

           WAVE        uint8[64]        Carrier waveform data.

    +

           MWAV        uint8[32]        Modulator waveform data.

    +

           AMPL        uint8[2]                Amplitude data.

    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Benefits of a Help Authoring Tool

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/fm2.html b/web/help/fm2.html index 508e5fb5..b7ad5e75 100644 --- a/web/help/fm2.html +++ b/web/help/fm2.html @@ -1,273 +1,464 @@ - - + + + + + - .fm2 - - - - - - - - - - + + + + + + + + .fm2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + -
    -
    -

    .fm2

    - - -
    -
    - Parent - - Previous - - Next - -
    -
    -
    -
    - -

    -

    FCEUX Movie File format

    -


    -


    -

    FCEUX uses a new movie file format - .fm2.

    -


    -

    This differs from the previous FCE Ultra movie format (.fcm) in the following ways:

    -
      -
    • It is text based by default; allowing easy movie editing/splicing
    • -
    • An imbedded GUID so FCEUX can tell if a savestate belongs to a movie file
    • -
    • Movies recorded from Start (Power-on) no longer have a redundant savestate
    • -
    • Contains mouse input for recording the Zapper & Arkanoid Paddle
    • -
    -


    -


    -

    Format

    -


    -

    FM2 consists of two parts: Header and Input Log.

    -

    The header is always in ASCII plain text format. It consists of several key-value pairs.

    -

    The input log section can be identified by it starting with a | (pipe).

    -

    The input log section can be either in ASCII plain text format or in binary format.

    -

    The input log section terminates at EOF, unless the length key is specified in header.

    -

    Newlines may be \r\n or \n.

    -


    -


    -

    Header

    -


    -

    Key-value pairs consist of a key identifier, followed by a space separator, followed by the value text.

    -

    Value text is always terminated by a newline, which the value text does not include.

    -

    The value text is parsed differently depending on the type of the key.

    -

    The key-value pairs may be in any order, except that the first key must be version.

    -


    -

    Integer keys (also used for booleans, with a 1 for true and 0 for false) must have a value that can be stored as int32:

    -


    -

    - version (required) - the version of the movie file format; for now it is always 3

    -


    -

    - emuVersion (required) - the version of the emulator used to produce the movie

    -


    -

    - rerecordCount (optional) - the rerecord count

    -


    -

    - palFlag (bool) (optional) - true if the movie uses PAL timing

    -


    -

    - NewPPU (bool) (optional) - true if the movie uses New PPU

    -


    -

    - FDS (bool) (optional) - true if movie was recorded on a Famicom Disk System (FDS) game

    -


    -

    - fourscore (bool) - true if a fourscore was used. If fourscore is not used, then port0 and port1 are required

    -


    -

    - port0 - indicates the type of input device attached to the port 0. Supported values are:

    -

        SI_NONE = 0

    -

        SI_GAMEPAD = 1

    -

        SI_ZAPPER = 2

    -


    -

    - port1 - indicates the type of input device attached to the port 1. Supported values are:

    -

        SI_NONE = 0

    -

        SI_GAMEPAD = 1

    -

        SI_ZAPPER = 2

    -


    -

    - port2 (required) - indicates the type of the FCExp port device which was attached. Supported values are:

    -

        SIFC_NONE = 0

    -


    -

    - binary (bool) (optional) - true if input log is stored in binary format

    -


    -

    - length (optional) - movie size (number of frames in the input log). If this key is specified and the number is >= 0, the input log ends after specified number of records, and any remaining data should not be parsed. This key is used in fm3 format to allow storing extra data after the end of input log

    -


    -


    -

    String keys have values that consist of the remainder of the key-value pair line. As a consequence, string values cannot contain newlines.

    -


    -

    - romFilename (required) - the name of the file used to record the movie

    -


    -

    - comment (optional) - simply a memo

    -
      -
    • by convention, the first token in the comment value is the subject of the comment
    • -
    • by convention, subsequent comments with the same subject should have their ordering preserved and may be used to approximate multi-line comments
    • -
    • by convention, the author of the movie should be stored in comment(s) with a subject of: author
    • -
    -

    Example:

    -
      -
    • comment author adelikat
    • -
    -


    -

    - subtitle (optional) - a message that will be displayed on screen when movie is played back (unless Subtitles are turned off, see Movie options)

    -
      -
    • by convention, subtitles begin with the word "subtitle"
    • -
    • by convention, an integer value following the word "subtitle" indicates the frame that the subtitle will be displayed
    • -
    • by convention, any remaining text after the integer is considered to be the string displayed
    • -
    -

    Example:

    -
      -
    • subtitle 1000 Level Two
    • -
    -

    At frame 1000 the words "Level Two" will be displayed on the screen

    -


    -

    - guid (required) - a unique identifier for a movie, generated when the movie is created, which is used when loading a savestate to make sure it belongs to the current movie

    -

    GUID keys have a value which is in the standard guide format: 452DE2C3-EF43-2FA9-77AC-0677FC51543B

    -


    -

    - romChecksum (required) - the base64 of the hexified MD5 hash of the ROM which was used to record the movie

    -


    -

    - savestate (optional) - a fcs savestate blob, in case a movie was recorded from savestate  

    -

    Hex string keys (used for binary blobs) have a value that is like 0x0123456789ABCDEF...

    -


    -


    -

    Input log

    -


    -

    The input log section consists of movie records either in the form of text lines or in the form of binary data.

    -


    -


    -

    Text format (default format):

    -


    -

    Every frame of the movie is represented by line of text beginning and ending with a | (pipe).

    -

    The fields in the line are as follows, except when fourscore is used.

    -

    |commands|port0|port1|port2|

    -


    -

    Field commands is a variable length decimal integer which is interpreted as a bit field corresponding to miscellaneous input states which are valid at the start of the frame. Current values for this are:

    -
      -
    • 1 = Soft Reset
    • -
    • 2 = Hard Reset (Power)
    • -
    • 4 = FDS Disk Insert
    • -
    • 8 = FDS Disk Select
    • -
    • 16 = VS Insert Coin
    • -
    -


    -

    The format of port0, port1, port2 depends on which types of devices were attached.

    -


    -

    SI_GAMEPAD:

    -
      -
    • the field consists of eight characters which constitute a bit field
    • -
    • any character other than ' ' or '.' means that the button was pressed
    • -
    • by convention, the following mnemonics are used in a column to remind us of which button corresponds to which column: RLDUTSBA (Right, Left, Down, Up, sTart, Select, B, A)
    • -
    -


    -

    SI_ZAPPER:

    -
      -
    • XXX YYY B Q Z
    • -
    -

    XXX: %03d, the x position of the mouse

    -

    YYY: %03d, the y position of the mouse

    -

    B: %1d, 1 if the mouse button is pressed; 0 if not

    -

    Q: %1d, an internal value used by the emulator's zapper code

    -

    Z: %d, a variable-length decimal integer; an internal value used by the emulator's zapper code

    -


    -

    SI_NONE:

    -
      -
    • the field must be empty
    • -
    -


    -

    If a fourscore is used, then port0 and port1 are irrelevant and ignored.

    -

    The input types must all be gamepads, and each input log record must be in the following format:

    -

    |commands|RLDUTSBA|RLDUTSBA|RLDUTSBA|RLDUTSBA|port2|

    -

    {commands, player1, player2, player3, player4, port2}

    -


    -


    -

    Binary format:

    -


    -

    Input log section starts with a | (pipe).

    -

    Every frame of the movie is represented by a record of a fixed length which can be determined by the devices on port0 and port1.

    -


    -

    The first byte of each record stores "commands" bit field.

    -
      -
    • bit 0 = Soft Reset
    • -
    • bit 1 = Hard Reset (Power)
    • -
    • bit 2 = FDS Disk Insert
    • -
    • bit 3 = FDS Disk Select
    • -
    • bit 4 = VS Insert Coin
    • -
    -


    -

    The remaining bytes in the record depend on which types of devices are attached to port0 and port1.

    -


    -

    SI_GAMEPAD:

    -
      -
    • 1 byte added to the size of record
    • -
    • bits of the byte represent the state of buttons (bit0 = A, bit1 = B, bit2 = Select, bit3 = sTart, bit4 = Up, bit5 = Down, bit6 = Left, bit7 = Right). If the bit is set, respective button is considered to be pressed, if the bit is clear, the button is not pressed
    • -
    -


    -

    SI_ZAPPER:

    -
      -
    • 12 bytes added to the size of record
    • -
    • 1st byte - the x position of the mouse
    • -
    • 2nd byte - the y position of the mouse
    • -
    • 3rd byte - 1 if the mouse button is pressed; 0 if not
    • -
    • 4th byte - an internal value used by the emulator's zapper code
    • -
    • bytes 5-12 (uint64) - an internal value used by the emulator's zapper code
    • -
    -


    -

    SI_NONE:

    -
      -
    • 0 bytes added to the size of record
    • -
    -


    -

    If a fourscore is used, then port0 and port1 are irrelevant and ignored. 4 bytes are added to the size of record. The bits of the 1st byte represent the state of buttons of the 1st joypad (bit0 = A, bit1 = B, bit2 = Select, bit3 = sTart, bit4 = Up, bit5 = Down, bit6 = Left, bit7 = Right); bits of the 2nd byte represent the state of buttons of the 2nd joypad, and so on.

    -


    -


    -
    -

    Notes:

    -


    -

    A. All movies start from power-on, unless a savestate key-value is present.

    -


    -

    B. The emulator uses these framerate constants

    -

     - NTSC: 1008307711 /256/65536 = 60.099822938442230224609375

    -

     - PAL : 838977920  /256/65536 = 50.00698089599609375

    -


    -


    -


    -

    -

    Created with the Personal Edition of HelpNDoc: Create iPhone web-based documentation

    -
    - - - - + + + +
    + +

    FCEUX Help

    + +
    + + + +
    + +
    +
    + + + + + + +

    .fm2

    + +
    + +

    +

    FCEUX Movie File format

    +


    +


    +

    FCEUX uses a new movie file format - .fm2.

    +


    +

    This differs from the previous FCE Ultra movie format (.fcm) in the following ways:

    +
      +
    • It is text based by default; allowing easy movie editing/splicing
    • +
    • An imbedded GUID so FCEUX can tell if a savestate belongs to a movie file
    • +
    • Movies recorded from Start (Power-on) no longer have a redundant savestate
    • +
    • Contains mouse input for recording the Zapper & Arkanoid Paddle
    • +
    +


    +


    +

    Format

    +


    +

    FM2 consists of two parts: Header and Input Log.

    +

    The header is always in ASCII plain text format. It consists of several key-value pairs.

    +

    The input log section can be identified by it starting with a | (pipe).

    +

    The input log section can be either in ASCII plain text format or in binary format.

    +

    The input log section terminates at EOF, unless the length key is specified in header.

    +

    Newlines may be \r\n or \n.

    +


    +


    +

    Header

    +


    +

    Key-value pairs consist of a key identifier, followed by a space separator, followed by the value text.

    +

    Value text is always terminated by a newline, which the value text does not include.

    +

    The value text is parsed differently depending on the type of the key.

    +

    The key-value pairs may be in any order, except that the first key must be version.

    +


    +

    Integer keys (also used for booleans, with a 1 for true and 0 for false) must have a value that can be stored as int32:

    +


    +

     - version (required) - the version of the movie file format; for now it is always 3

    +


    +

     - emuVersion (required) - the version of the emulator used to produce the movie

    +


    +

     - rerecordCount (optional) - the rerecord count

    +


    +

     - palFlag (bool) (optional) - true if the movie uses PAL timing

    +


    +

     - NewPPU (bool) (optional) - true if the movie uses New PPU

    +


    +

     - FDS (bool) (optional) - true if movie was recorded on a Famicom Disk System (FDS) game

    +


    +

     - fourscore (bool) - true if a fourscore was used. If fourscore is not used, then port0 and port1 are required

    +


    +

     - port0 - indicates the type of input device attached to the port 0. Supported values are:

    +

         SI_NONE = 0

    +

         SI_GAMEPAD = 1

    +

         SI_ZAPPER = 2

    +


    +

     - port1 - indicates the type of input device attached to the port 1. Supported values are:

    +

         SI_NONE = 0

    +

         SI_GAMEPAD = 1

    +

         SI_ZAPPER = 2

    +


    +

     - port2 (required) - indicates the type of the FCExp port device which was attached. Supported values are:

    +

         SIFC_NONE = 0

    +


    +

     - binary (bool) (optional) - true if input log is stored in binary format

    +


    +

     - length (optional) - movie size (number of frames in the input log). If this key is specified and the number is >= 0, the input log ends after specified number of records, and any remaining data should not be parsed. This key is used in fm3 format to allow storing extra data after the end of input log

    +


    +


    +

    String keys have values that consist of the remainder of the key-value pair line. As a consequence, string values cannot contain newlines.

    +


    +

     - romFilename (required) - the name of the file used to record the movie

    +


    +

     - comment (optional) - simply a memo

    +
      +
    • by convention, the first token in the comment value is the subject of the comment
    • +
    • by convention, subsequent comments with the same subject should have their ordering preserved and may be used to approximate multi-line comments
    • +
    • by convention, the author of the movie should be stored in comment(s) with a subject of: author
    • +
    +

    Example:

    +
      +
    • comment author adelikat
    • +
    +


    +

     - subtitle (optional) - a message that will be displayed on screen when movie is played back (unless Subtitles are turned off, see Movie options)

    +
      +
    • by convention, subtitles begin with the word "subtitle"
    • +
    • by convention, an integer value following the word "subtitle" indicates the frame that the subtitle will be displayed
    • +
    • by convention, any remaining text after the integer is considered to be the string displayed
    • +
    +

    Example:

    +
      +
    • subtitle 1000 Level Two
    • +
    +

    At frame 1000 the words "Level Two" will be displayed on the screen

    +


    +

     - guid (required) - a unique identifier for a movie, generated when the movie is created, which is used when loading a savestate to make sure it belongs to the current movie

    +

    GUID keys have a value which is in the standard guide format: 452DE2C3-EF43-2FA9-77AC-0677FC51543B

    +


    +

     - romChecksum (required) - the base64 of the hexified MD5 hash of the ROM which was used to record the movie

    +


    +

     - savestate (optional) - a fcs savestate blob, in case a movie was recorded from savestate  

    +

    Hex string keys (used for binary blobs) have a value that is like 0x0123456789ABCDEF...

    +


    +


    +

    Input log

    +


    +

    The input log section consists of movie records either in the form of text lines or in the form of binary data.

    +


    +


    +

    Text format (default format):

    +


    +

    Every frame of the movie is represented by line of text beginning and ending with a | (pipe).

    +

    The fields in the line are as follows, except when fourscore is used.

    +

    |commands|port0|port1|port2|

    +


    +

    Field commands is a variable length decimal integer which is interpreted as a bit field corresponding to miscellaneous input states which are valid at the start of the frame. Current values for this are:

    +
      +
    • 1 = Soft Reset
    • +
    • 2 = Hard Reset (Power)
    • +
    • 4 = FDS Disk Insert
    • +
    • 8 = FDS Disk Select
    • +
    • 16 = VS Insert Coin
    • +
    +


    +

    The format of port0, port1, port2 depends on which types of devices were attached.

    +


    +

    SI_GAMEPAD:

    +
      +
    • the field consists of eight characters which constitute a bit field
    • +
    • any character other than ' ' or '.' means that the button was pressed
    • +
    • by convention, the following mnemonics are used in a column to remind us of which button corresponds to which column: RLDUTSBA (Right, Left, Down, Up, sTart, Select, B, A)
    • +
    +


    +

    SI_ZAPPER:

    +
      +
    • XXX YYY B Q Z
    • +
    +

    XXX: %03d, the x position of the mouse

    +

    YYY: %03d, the y position of the mouse

    +

    B: %1d, 1 if the mouse button is pressed; 0 if not

    +

    Q: %1d, an internal value used by the emulator's zapper code

    +

    Z: %d, a variable-length decimal integer; an internal value used by the emulator's zapper code

    +


    +

    SI_NONE:

    +
      +
    • the field must be empty
    • +
    +


    +

    If a fourscore is used, then port0 and port1 are irrelevant and ignored.

    +

    The input types must all be gamepads, and each input log record must be in the following format:

    +

    |commands|RLDUTSBA|RLDUTSBA|RLDUTSBA|RLDUTSBA|port2|

    +

    {commands, player1, player2, player3, player4, port2}

    +


    +


    +

    Binary format:

    +


    +

    Input log section starts with a | (pipe).

    +

    Every frame of the movie is represented by a record of a fixed length which can be determined by the devices on port0 and port1.

    +


    +

    The first byte of each record stores "commands" bit field.

    +
      +
    • bit 0 = Soft Reset
    • +
    • bit 1 = Hard Reset (Power)
    • +
    • bit 2 = FDS Disk Insert
    • +
    • bit 3 = FDS Disk Select
    • +
    • bit 4 = VS Insert Coin
    • +
    +


    +

    The remaining bytes in the record depend on which types of devices are attached to port0 and port1.

    +


    +

    SI_GAMEPAD:

    +
      +
    • 1 byte added to the size of record
    • +
    • bits of the byte represent the state of buttons (bit0 = A, bit1 = B, bit2 = Select, bit3 = sTart, bit4 = Up, bit5 = Down, bit6 = Left, bit7 = Right). If the bit is set, respective button is considered to be pressed, if the bit is clear, the button is not pressed
    • +
    +


    +

    SI_ZAPPER:

    +
      +
    • 12 bytes added to the size of record
    • +
    • 1st byte - the x position of the mouse
    • +
    • 2nd byte - the y position of the mouse
    • +
    • 3rd byte - 1 if the mouse button is pressed; 0 if not
    • +
    • 4th byte - an internal value used by the emulator's zapper code
    • +
    • bytes 5-12 (uint64) - an internal value used by the emulator's zapper code
    • +
    +


    +

    SI_NONE:

    +
      +
    • 0 bytes added to the size of record
    • +
    +


    +

    If a fourscore is used, then port0 and port1 are irrelevant and ignored. 4 bytes are added to the size of record. The bits of the 1st byte represent the state of buttons of the 1st joypad (bit0 = A, bit1 = B, bit2 = Select, bit3 = sTart, bit4 = Up, bit5 = Down, bit6 = Left, bit7 = Right); bits of the 2nd byte represent the state of buttons of the 2nd joypad, and so on.

    +


    +


    +
    +

    Notes:

    +


    +

    A. All movies start from power-on, unless a savestate key-value is present.

    +


    +

    B. The emulator uses these framerate constants

    +

      - NTSC: 1008307711 /256/65536 = 60.099822938442230224609375

    +

      - PAL : 838977920  /256/65536 = 50.00698089599609375

    +


    +


    +


    +

    +

    Created with the Personal Edition of HelpNDoc: Single source CHM, PDF, DOC and HTML Help creation

    + +
    + + +
    +
    + +
    + +
    + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/help/js/app.min.js b/web/help/js/app.min.js new file mode 100644 index 00000000..23236079 --- /dev/null +++ b/web/help/js/app.min.js @@ -0,0 +1,6 @@ +"use strict";/*! + * HelpNDoc HTML template + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */ +var __extends=this&&this.__extends||function(){var e=function(t,o){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])})(t,o)};return function(t,o){function n(){this.constructor=t}e(t,o),t.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),Exception=function(e){function t(t){var o=e.call(this,t)||this;return o.message=t,o.name="Exception",o.message=t,o}return __extends(t,e),t.prototype.toString=function(){return"["+this.name+']: "'+this.message+'"'},t}(Error),EInvalidHtmlElement=function(e){function t(t){var o=e.call(this,t)||this;return o.message=t,o.name="EInvalidHtmlElement",o}return __extends(t,e),t}(Exception),Hnd;!function(e){var t=function(){function e(){}return e}();e.AppOptions=t;var o=function(){function e(){}return e}();e.AppEvents=o;var n=function(){function e(e){this.DEFAULTS={animationDelay:200,elHeadroom:"header",elMask:".mask",elModal:"#hndModal",elSearchForm:"#search-form",elSearchInfo:"#search-info",elSearchInput:"#input-search",elToggler:".hnd-toggle",elTopicContainer:"article",elTopicContent:"#topic-content",elTreeContainers:".tree-container",elTreeSearch:"#search-tree",classNavExpandedSmall:"sm-nav-expanded",classNavExpandedMedium:"md-nav-expanded"},this.EVENTS={onTopicChanged:null},this.TRANSLATIONS={"Search term too short":"Search term too short","No results":"No results","Please enter 3 or more characters":"Please enter 3 or more characters","Word list not ready yet. Please wait until the word list is fully downloaded":"Word list not ready yet. Please wait until the word list is fully downloaded","Incorrect or corrupt search data. Please check your HelpNDoc template":"Incorrect or corrupt search data. Please check your HelpNDoc template","Related topics...":"Related topics...","Loading...":"Loading...",Close:"Close"},this.options=$.extend({},this.DEFAULTS,e),this.Init()}return e.prototype._=function(e){var t=this.TRANSLATIONS[e];return t||e},e.prototype.doOnJsTreeError=function(e,t){console.error("JSTree Error",t);var o=e.find(".jstree-loading");o&&(t.error&&"ajax"==t.error?o.html('Loading Error: Please make sure your web-server is correctly configured to serve JSON files. Learn more...'):o.html("Error: please check your web-developer console for more information."))},e.prototype.doOnTopicChanged=function(e){this.EVENTS.onTopicChanged&&("string"==typeof e&&""!==e||(e=$(this.options.elTopicContent).data("hnd-id")+".html"),this.EVENTS.onTopicChanged(e))},e.prototype.doProcessParameters=function(){var e=URI(location.href),t=e.search(!0);t.tab&&""!=t.tab&&$("#tab-"+t.tab).tab("show"),t.search&&void 0!==t.search&&""!=t.search&&(this.$elSearchInput.val(t.search),this.$elSearchInput.keyup(),this.$elSearchForm.submit())},e.prototype.fixURI=function(e){return e.replace(/\%u00A0/g,"%20")},e.prototype.getAnchor=function(){return window.location.hash.substr(1)},e.prototype.isExternalLink=function(e){var t=function(e){return 0===e.indexOf("//")&&(e=location.protocol+e),e.toLowerCase().replace(/([a-z])?:\/\//,"$1").split("/")[0]};return(e.indexOf(":")>-1||e.indexOf("//")>-1)&&t(location.href)!==t(e)||-1==["htm","html"].indexOf(new URI(e).suffix().toLowerCase())},e.prototype.DoShowExternalUrl=function(e,t,o){window.open(t,o)},e.prototype.DoShowTopic=function(e,t,o){var n=this;this.$elTopicContainer.load(o+" "+this.options.elTopicContent,function(e,r,i){var a=$(n.options.elTopicContent),s=a.data("hnd-id");if(window.history.pushState({id:s,title:t},t,o),"undefined"!=typeof ga&&ga)try{if(void 0!==ga.getAll&&ga.getAll&&ga.getAll()[0]){ga.getAll()[0].send("pageview",location.pathname)}else ga("send","pageview",location.pathname)}catch(e){console.error("[HND-APP] An error occurred while using Google Analytics tracking code =>",e.toString())}n.SelectTopicInToc(s,t,!1),n.DoScrollToAnchorIfNeeded(),n.DoHighlightText(n.searchTerm),imageMapResize(),n.doOnTopicChanged(o)})},e.prototype.DoHandleLink=function(e,t,o,n,r){"_blank"==n||this.isExternalLink(o)||!0===r?this.DoShowExternalUrl(t,o,n):this.DoShowTopic(e,t,o)},e.prototype.DoHighlightText=function(e){try{this.$elTopicContainer.unmark(),e&&""!==e&&this.$elTopicContainer.mark(e,{accuracy:"complementary",diacritics:!1})}catch(e){console.error("[HND-APP] An error occurred while highlighting the search term =>",e.toString())}},e.prototype.DoScrollToAnchorIfNeeded=function(){var e=decodeURIComponent(this.getAnchor());if(""!==e){var t=$("a[name='"+e+"']");if(t&&t.length||(t=$("a[name='"+e.toLowerCase()+"']")),t&&void 0!==t&&t.offset&&t.offset()){var o=this.$elHeadroom.position().top<0?0:this.$elHeadroom.outerHeight(!0)+5;$("html,body").animate({scrollTop:t.offset().top-o},"fast")}else console.error("[HND-APP] Unkonwn or invalid anchor =>",e)}else $("html,body").animate({scrollTop:0},"fast")},e.prototype.InitHeadRoom=function(){if(this.$elHeadroom=$(this.options.elHeadroom),!this.$elHeadroom.length)throw new EInvalidHtmlElement("Invalid headroom element ["+this.options.elHeadroom+"]");new Headroom(this.$elHeadroom.get(0),{offset:100,tolerance:5,classes:{initial:"animated",pinned:"slideDown",unpinned:"slideUp"},onUnpin:function(){$("body").addClass("header-up")},onPin:function(){$("body").removeClass("header-up")}}).init()},e.prototype.InitMask=function(){var e=this;this.$elMask=$(this.options.elMask),this.$elMask.on("click",function(t){var o=e.$elMask.data("toggle");o&&$("body").removeClass(o)})},e.prototype.InitModal=function(){this.$elModal=$(this.options.elModal),this.$elModal.find(".modal-title").html(this._("Related topics...")),this.$elModal.find(".modal-btn-close").html(this._("Close")),this.$elModal.modal({show:!1})},e.prototype.InitResponsiveClasses=function(){function e(){var e="",o=$(window).width();if(o<768?e="mode-xs":o<992?e="mode-sm":o<1200?e="mode-md":o>=1200&&(e="mode-lg"),e!=t){if($("body").removeClass(["mode-xs","mode-sm","mode-md","mode-lg"]).addClass(e),"mode-xs"==e)$("header").css("padding-left",""),$("#main").css("margin-left",""),$("#panel-left").css("width","");else if("mode-xs"==t){var n=$("#hnd-splitter").offset().left;$("header").css("padding-left",n+14),$("#main").css("margin-left",n),$("#panel-left").css("width",n)}t=e}}var t="";e(),$(window).on("resize",function(){e()})},e.prototype.InitSplitter=function(){var e=0,t=parseInt($("nav").css("width"),10),o=$("#hnd-splitter");o&&o.length&&interact("#hnd-splitter").draggable({cursorChecker:function(){return"ew-resize"},startAxis:"xy",lockAxis:"x",listeners:{move:function(t){e+=t.dx,t.target.style.transform="translateX("+e+"px)"},end:function(o){$("header").css("padding-left",t+14+e),$("#main").css("margin-left",t+e),$("#panel-left").css("width",t+e)}}})},e.prototype.InitSearchEngine=function(){this.searchEngine=new HndJsSe},e.prototype.InitSearchForm=function(){var e=this;this.$elTreeSearch=$(this.options.elTreeSearch).first(),this.$elSearchForm=$(this.options.elSearchForm),this.$elSearchInfo=$(this.options.elSearchInfo),this.$elSearchInput=$(this.options.elSearchInput),this.$elSearchInfo.html(this._("Please enter 3 or more characters")+"."),this.$elSearchInfo.show(),this.$elSearchInput.on("keyup",function(t){e.searchTerm=String(e.$elSearchInput.val()),e.DoHighlightText(e.searchTerm)}),this.$elSearchForm.on("submit",function(t){t.preventDefault();var o=e.$elTreeSearch.jstree(!0),n=$(t.target).find('input[type="text"]').first(),r=String(n.val());if(e.$elSearchInfo.hide(),o.delete_node(e.$elTreeSearch.find("li").toArray()),r.length<3)e.$elSearchInfo.html(e._("Search term too short")+". "+e._("Please enter 3 or more characters")+"."),e.$elSearchInfo.show();else if(window.bSearchDataLoaded)if(oWl){e.searchEngine.ParseInput(r);var i=e.searchEngine.PerformSearch(oWl);if(0==i.length)e.$elSearchInfo.html(e._("No results")+". "+e._("Please enter 3 or more characters")+"."),e.$elSearchInfo.show();else for(var a="",s=0;s'+c[d].title+"
  • ";h+="",e.$elModal.find(".modal-body").html(h),e.$elModal.modal("show")}else $("body").removeClass("sm-nav-expanded"),e.DoHandleLink(a,s,i,l,!1)}}).on("ready.jstree",function(t,n){e.SelectTopicInToc("","",!0);var r=parseInt($(o).data("openlvl"),10);r&&e.OpenTreeToLevel($(o),r)}).jstree({core:{animation:e.options.animationDelay,check_callback:$(o).is($(e.options.elTreeSearch)),multiple:!1,strings:{"Loading ...":e._("Loading...")},themes:{dots:!1,responsive:!0},data:r,error:function(t){e.doOnJsTreeError($(o),t)}},types:{default:{icon:"icon-default"}},plugins:["types"]})})},e.prototype.InitHistory=function(){var e=this;window.onpopstate=function(t){e.$elTopicContainer.load(window.location+" "+e.options.elTopicContent,function(t,o,n){e.SelectTopicInToc("","",!1),e.DoScrollToAnchorIfNeeded()})}},e.prototype.InitLinks=function(){var e=this,t=function(t){t.preventDefault();var o=t.currentTarget;e.$elModal&&e.$elModal.modal("hide"),$("body").removeClass("sm-nav-expanded"),e.DoHandleLink("","",o.href,o.target,!0===t.ctrlKey)};this.$elTopicContainer.on("click","a",t),$(".modal-body").on("click","a",t)},e.prototype.Init=function(){if(this.$elTopicContainer=$(this.options.elTopicContainer),!this.$elTopicContainer)throw new EInvalidHtmlElement("Invalid topic container element ["+this.options.elTopicContainer+"]")},e.prototype.Boot=function(){try{this.InitTrees(),this.InitLinks(),this.InitHistory(),this.InitToggler(),this.InitMask(),this.InitModal(),this.InitSearchEngine(),this.InitSearchForm(),this.InitHeadRoom(),this.InitSplitter(),this.InitResponsiveClasses(),this.doOnTopicChanged(),this.doProcessParameters()}catch(e){console.error("[HND-APP] An error occurred while booting the application =>",e.toString())}},e.prototype.OpenTreeToLevel=function(e,t){try{if(t){var o=$(e).jstree(!0);o&&$(o.get_json("#",{no_a_attr:!0,no_children:!1,no_data:!0,no_id:!1,no_li_attr:!0,no_state:!0,flat:!0})).each(function(e,n){var r=o.get_node($(this).attr("id"));r.parents.length<=t&&o.open_node(r)})}}catch(e){console.error("[HND-APP] An error occurred while opening the tree =>",e.toString())}},e.prototype.SelectTopicInToc=function(e,t,o){void 0===o&&(o=!1),"string"==typeof e&&""!==e||(e=$(this.options.elTopicContent).data("hnd-id")),"string"==typeof t&&""!==t||(t=$(this.options.elTopicContent).data("hnd-title")),"string"==typeof e&&""!==e&&(this.$elTreeContainers.jstree("deselect_all",!0),this.$elTreeContainers.jstree("select_node",e,!0,!1),t&&""!==t&&(document.title=t),o&&setTimeout(function(){var t=document.getElementById(e+"_anchor");t&&t.scrollIntoView()},this.options.animationDelay+50))},e}();e.App=n}(Hnd||(Hnd={})); \ No newline at end of file diff --git a/web/help/js/context/0.html b/web/help/js/context/0.html new file mode 100644 index 00000000..1cf3994a --- /dev/null +++ b/web/help/js/context/0.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Introduction" + + + + + + + + diff --git a/web/help/js/context/1.html b/web/help/js/context/1.html new file mode 100644 index 00000000..106e1e13 --- /dev/null +++ b/web/help/js/context/1.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "General" + + + + + + + + diff --git a/web/help/js/context/10.html b/web/help/js/context/10.html new file mode 100644 index 00000000..48e1a3f3 --- /dev/null +++ b/web/help/js/context/10.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Memory Watch" + + + + + + + + diff --git a/web/help/js/context/11.html b/web/help/js/context/11.html new file mode 100644 index 00000000..0bd437cd --- /dev/null +++ b/web/help/js/context/11.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Lua Scripting" + + + + + + + + diff --git a/web/help/js/context/12.html b/web/help/js/context/12.html new file mode 100644 index 00000000..126d706e --- /dev/null +++ b/web/help/js/context/12.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Getting Started" + + + + + + + + diff --git a/web/help/js/context/13.html b/web/help/js/context/13.html new file mode 100644 index 00000000..52c23404 --- /dev/null +++ b/web/help/js/context/13.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Auto Fire Settings" + + + + + + + + diff --git a/web/help/js/context/14.html b/web/help/js/context/14.html new file mode 100644 index 00000000..3df806a1 --- /dev/null +++ b/web/help/js/context/14.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Debugger" + + + + + + + + diff --git a/web/help/js/context/15.html b/web/help/js/context/15.html new file mode 100644 index 00000000..0229fade --- /dev/null +++ b/web/help/js/context/15.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Hex Editor" + + + + + + + + diff --git a/web/help/js/context/16.html b/web/help/js/context/16.html new file mode 100644 index 00000000..559c93d2 --- /dev/null +++ b/web/help/js/context/16.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "PPU Viewer" + + + + + + + + diff --git a/web/help/js/context/17.html b/web/help/js/context/17.html new file mode 100644 index 00000000..4cd92b40 --- /dev/null +++ b/web/help/js/context/17.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Name Table Viewer" + + + + + + + + diff --git a/web/help/js/context/18.html b/web/help/js/context/18.html new file mode 100644 index 00000000..1d9d12ec --- /dev/null +++ b/web/help/js/context/18.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "RAM Search" + + + + + + + + diff --git a/web/help/js/context/19.html b/web/help/js/context/19.html new file mode 100644 index 00000000..3aba801b --- /dev/null +++ b/web/help/js/context/19.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "FAQ / Guides" + + + + + + + + diff --git a/web/help/js/context/2.html b/web/help/js/context/2.html new file mode 100644 index 00000000..0476dba3 --- /dev/null +++ b/web/help/js/context/2.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Overview" + + + + + + + + diff --git a/web/help/js/context/20.html b/web/help/js/context/20.html new file mode 100644 index 00000000..8e6527bf --- /dev/null +++ b/web/help/js/context/20.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Tool Assisted Speedruns" + + + + + + + + diff --git a/web/help/js/context/21.html b/web/help/js/context/21.html new file mode 100644 index 00000000..80f9f390 --- /dev/null +++ b/web/help/js/context/21.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "ROM Hacking" + + + + + + + + diff --git a/web/help/js/context/22.html b/web/help/js/context/22.html new file mode 100644 index 00000000..23dc33d8 --- /dev/null +++ b/web/help/js/context/22.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.0.0" + + + + + + + + diff --git a/web/help/js/context/23.html b/web/help/js/context/23.html new file mode 100644 index 00000000..049fe6db --- /dev/null +++ b/web/help/js/context/23.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Technical Information" + + + + + + + + diff --git a/web/help/js/context/24.html b/web/help/js/context/24.html new file mode 100644 index 00000000..57968b5e --- /dev/null +++ b/web/help/js/context/24.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Movie & Savestate formats" + + + + + + + + diff --git a/web/help/js/context/25.html b/web/help/js/context/25.html new file mode 100644 index 00000000..3bc32fb8 --- /dev/null +++ b/web/help/js/context/25.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to ".fm2" + + + + + + + + diff --git a/web/help/js/context/26.html b/web/help/js/context/26.html new file mode 100644 index 00000000..1264910e --- /dev/null +++ b/web/help/js/context/26.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to ".fcm" + + + + + + + + diff --git a/web/help/js/context/27.html b/web/help/js/context/27.html new file mode 100644 index 00000000..133b973d --- /dev/null +++ b/web/help/js/context/27.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Savestate (.fcs)" + + + + + + + + diff --git a/web/help/js/context/28.html b/web/help/js/context/28.html new file mode 100644 index 00000000..a1b91d7c --- /dev/null +++ b/web/help/js/context/28.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Sound" + + + + + + + + diff --git a/web/help/js/context/29.html b/web/help/js/context/29.html new file mode 100644 index 00000000..d75682b8 --- /dev/null +++ b/web/help/js/context/29.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "NSF Format" + + + + + + + + diff --git a/web/help/js/context/3.html b/web/help/js/context/3.html new file mode 100644 index 00000000..b3a39aa0 --- /dev/null +++ b/web/help/js/context/3.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "FCE Ultra Version History" + + + + + + + + diff --git a/web/help/js/context/30.html b/web/help/js/context/30.html new file mode 100644 index 00000000..df9766cf --- /dev/null +++ b/web/help/js/context/30.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "NES Sound" + + + + + + + + diff --git a/web/help/js/context/31.html b/web/help/js/context/31.html new file mode 100644 index 00000000..645f7457 --- /dev/null +++ b/web/help/js/context/31.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "NES Processing" + + + + + + + + diff --git a/web/help/js/context/32.html b/web/help/js/context/32.html new file mode 100644 index 00000000..1a1d74d8 --- /dev/null +++ b/web/help/js/context/32.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "CPU - 6502" + + + + + + + + diff --git a/web/help/js/context/33.html b/web/help/js/context/33.html new file mode 100644 index 00000000..ae6ca58a --- /dev/null +++ b/web/help/js/context/33.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "PPU - 2C02" + + + + + + + + diff --git a/web/help/js/context/34.html b/web/help/js/context/34.html new file mode 100644 index 00000000..b434083a --- /dev/null +++ b/web/help/js/context/34.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "NES Scrolling 1" + + + + + + + + diff --git a/web/help/js/context/35.html b/web/help/js/context/35.html new file mode 100644 index 00000000..69f17194 --- /dev/null +++ b/web/help/js/context/35.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "NES Scrolling 2" + + + + + + + + diff --git a/web/help/js/context/36.html b/web/help/js/context/36.html new file mode 100644 index 00000000..f1a7ce19 --- /dev/null +++ b/web/help/js/context/36.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "NES RAM (Mapping/Finding Values)" + + + + + + + + diff --git a/web/help/js/context/37.html b/web/help/js/context/37.html new file mode 100644 index 00000000..6e52beb0 --- /dev/null +++ b/web/help/js/context/37.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Debug" + + + + + + + + diff --git a/web/help/js/context/38.html b/web/help/js/context/38.html new file mode 100644 index 00000000..7cfe9b76 --- /dev/null +++ b/web/help/js/context/38.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Trace Logger" + + + + + + + + diff --git a/web/help/js/context/39.html b/web/help/js/context/39.html new file mode 100644 index 00000000..67833dbb --- /dev/null +++ b/web/help/js/context/39.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Code/Data Logger" + + + + + + + + diff --git a/web/help/js/context/4.html b/web/help/js/context/4.html new file mode 100644 index 00000000..35fbfde2 --- /dev/null +++ b/web/help/js/context/4.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Getting Started" + + + + + + + + diff --git a/web/help/js/context/40.html b/web/help/js/context/40.html new file mode 100644 index 00000000..5667ae51 --- /dev/null +++ b/web/help/js/context/40.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Game Genie Encoder/Decoder" + + + + + + + + diff --git a/web/help/js/context/41.html b/web/help/js/context/41.html new file mode 100644 index 00000000..44face0b --- /dev/null +++ b/web/help/js/context/41.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Config" + + + + + + + + diff --git a/web/help/js/context/42.html b/web/help/js/context/42.html new file mode 100644 index 00000000..21df67a0 --- /dev/null +++ b/web/help/js/context/42.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Input" + + + + + + + + diff --git a/web/help/js/context/43.html b/web/help/js/context/43.html new file mode 100644 index 00000000..dec41dfa --- /dev/null +++ b/web/help/js/context/43.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Directories" + + + + + + + + diff --git a/web/help/js/context/44.html b/web/help/js/context/44.html new file mode 100644 index 00000000..6df1f15c --- /dev/null +++ b/web/help/js/context/44.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Sound" + + + + + + + + diff --git a/web/help/js/context/45.html b/web/help/js/context/45.html new file mode 100644 index 00000000..7cc12aa3 --- /dev/null +++ b/web/help/js/context/45.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Video" + + + + + + + + diff --git a/web/help/js/context/46.html b/web/help/js/context/46.html new file mode 100644 index 00000000..baac4b3b --- /dev/null +++ b/web/help/js/context/46.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Map Hotkeys" + + + + + + + + diff --git a/web/help/js/context/47.html b/web/help/js/context/47.html new file mode 100644 index 00000000..ebd4ad7e --- /dev/null +++ b/web/help/js/context/47.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.2.3 (changelog)" + + + + + + + + diff --git a/web/help/js/context/48.html b/web/help/js/context/48.html new file mode 100644 index 00000000..36c99d3f --- /dev/null +++ b/web/help/js/context/48.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.0.1 (changelog)" + + + + + + + + diff --git a/web/help/js/context/49.html b/web/help/js/context/49.html new file mode 100644 index 00000000..af67d469 --- /dev/null +++ b/web/help/js/context/49.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "TAS Editor" + + + + + + + + diff --git a/web/help/js/context/5.html b/web/help/js/context/5.html new file mode 100644 index 00000000..652c6cda --- /dev/null +++ b/web/help/js/context/5.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Movie Recording" + + + + + + + + diff --git a/web/help/js/context/50.html b/web/help/js/context/50.html new file mode 100644 index 00000000..29ea43ab --- /dev/null +++ b/web/help/js/context/50.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Command Line Options" + + + + + + + + diff --git a/web/help/js/context/51.html b/web/help/js/context/51.html new file mode 100644 index 00000000..c89abb09 --- /dev/null +++ b/web/help/js/context/51.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Menu Items & Submenus" + + + + + + + + diff --git a/web/help/js/context/52.html b/web/help/js/context/52.html new file mode 100644 index 00000000..a96e0d9b --- /dev/null +++ b/web/help/js/context/52.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Timing" + + + + + + + + diff --git a/web/help/js/context/53.html b/web/help/js/context/53.html new file mode 100644 index 00000000..39881f50 --- /dev/null +++ b/web/help/js/context/53.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "GUI" + + + + + + + + diff --git a/web/help/js/context/54.html b/web/help/js/context/54.html new file mode 100644 index 00000000..2239f70f --- /dev/null +++ b/web/help/js/context/54.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Palette" + + + + + + + + diff --git a/web/help/js/context/55.html b/web/help/js/context/55.html new file mode 100644 index 00000000..48f78207 --- /dev/null +++ b/web/help/js/context/55.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Network Play" + + + + + + + + diff --git a/web/help/js/context/56.html b/web/help/js/context/56.html new file mode 100644 index 00000000..5beef1a4 --- /dev/null +++ b/web/help/js/context/56.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "NES Menu" + + + + + + + + diff --git a/web/help/js/context/57.html b/web/help/js/context/57.html new file mode 100644 index 00000000..afb031e7 --- /dev/null +++ b/web/help/js/context/57.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Game file compatibility" + + + + + + + + diff --git a/web/help/js/context/58.html b/web/help/js/context/58.html new file mode 100644 index 00000000..879f638c --- /dev/null +++ b/web/help/js/context/58.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Convert fcm" + + + + + + + + diff --git a/web/help/js/context/59.html b/web/help/js/context/59.html new file mode 100644 index 00000000..8a766088 --- /dev/null +++ b/web/help/js/context/59.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Introduction" + + + + + + + + diff --git a/web/help/js/context/6.html b/web/help/js/context/6.html new file mode 100644 index 00000000..5042dfdb --- /dev/null +++ b/web/help/js/context/6.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "AVI Capturing" + + + + + + + + diff --git a/web/help/js/context/60.html b/web/help/js/context/60.html new file mode 100644 index 00000000..70c9acde --- /dev/null +++ b/web/help/js/context/60.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Text Hooker" + + + + + + + + diff --git a/web/help/js/context/61.html b/web/help/js/context/61.html new file mode 100644 index 00000000..7c719d72 --- /dev/null +++ b/web/help/js/context/61.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Using Lua" + + + + + + + + diff --git a/web/help/js/context/62.html b/web/help/js/context/62.html new file mode 100644 index 00000000..86675349 --- /dev/null +++ b/web/help/js/context/62.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.0.2 (changelog)" + + + + + + + + diff --git a/web/help/js/context/63.html b/web/help/js/context/63.html new file mode 100644 index 00000000..4dd937d8 --- /dev/null +++ b/web/help/js/context/63.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Lua Bot" + + + + + + + + diff --git a/web/help/js/context/64.html b/web/help/js/context/64.html new file mode 100644 index 00000000..714adbc9 --- /dev/null +++ b/web/help/js/context/64.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Lua Functions List" + + + + + + + + diff --git a/web/help/js/context/65.html b/web/help/js/context/65.html new file mode 100644 index 00000000..0a79096f --- /dev/null +++ b/web/help/js/context/65.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.0.3 (changelog)" + + + + + + + + diff --git a/web/help/js/context/66.html b/web/help/js/context/66.html new file mode 100644 index 00000000..e599d0f3 --- /dev/null +++ b/web/help/js/context/66.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Movie Options" + + + + + + + + diff --git a/web/help/js/context/67.html b/web/help/js/context/67.html new file mode 100644 index 00000000..6bf94af1 --- /dev/null +++ b/web/help/js/context/67.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.1 (changelog)" + + + + + + + + diff --git a/web/help/js/context/68.html b/web/help/js/context/68.html new file mode 100644 index 00000000..45636678 --- /dev/null +++ b/web/help/js/context/68.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Context Menu Items" + + + + + + + + diff --git a/web/help/js/context/69.html b/web/help/js/context/69.html new file mode 100644 index 00000000..98f80186 --- /dev/null +++ b/web/help/js/context/69.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Palette Options" + + + + + + + + diff --git a/web/help/js/context/7.html b/web/help/js/context/7.html new file mode 100644 index 00000000..da983b3c --- /dev/null +++ b/web/help/js/context/7.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Famicom Disk Sytem" + + + + + + + + diff --git a/web/help/js/context/70.html b/web/help/js/context/70.html new file mode 100644 index 00000000..41659069 --- /dev/null +++ b/web/help/js/context/70.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Troubleshooting" + + + + + + + + diff --git a/web/help/js/context/71.html b/web/help/js/context/71.html new file mode 100644 index 00000000..2d181ff1 --- /dev/null +++ b/web/help/js/context/71.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Customizing through the Config File" + + + + + + + + diff --git a/web/help/js/context/72.html b/web/help/js/context/72.html new file mode 100644 index 00000000..dc09d615 --- /dev/null +++ b/web/help/js/context/72.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.1.1 (changelog)" + + + + + + + + diff --git a/web/help/js/context/73.html b/web/help/js/context/73.html new file mode 100644 index 00000000..ed12bbee --- /dev/null +++ b/web/help/js/context/73.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.1.2 (changelog)" + + + + + + + + diff --git a/web/help/js/context/74.html b/web/help/js/context/74.html new file mode 100644 index 00000000..1fc11711 --- /dev/null +++ b/web/help/js/context/74.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "RAM Watch" + + + + + + + + diff --git a/web/help/js/context/75.html b/web/help/js/context/75.html new file mode 100644 index 00000000..e38276c3 --- /dev/null +++ b/web/help/js/context/75.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.1.3 (changelog)" + + + + + + + + diff --git a/web/help/js/context/76.html b/web/help/js/context/76.html new file mode 100644 index 00000000..b7237cca --- /dev/null +++ b/web/help/js/context/76.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.2.1 (changelog)" + + + + + + + + diff --git a/web/help/js/context/77.html b/web/help/js/context/77.html new file mode 100644 index 00000000..e0613194 --- /dev/null +++ b/web/help/js/context/77.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.1.4 (changelog)" + + + + + + + + diff --git a/web/help/js/context/78.html b/web/help/js/context/78.html new file mode 100644 index 00000000..674eb65e --- /dev/null +++ b/web/help/js/context/78.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.1.5 (changelog)" + + + + + + + + diff --git a/web/help/js/context/79.html b/web/help/js/context/79.html new file mode 100644 index 00000000..165278d5 --- /dev/null +++ b/web/help/js/context/79.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Overview of Included Scripts" + + + + + + + + diff --git a/web/help/js/context/8.html b/web/help/js/context/8.html new file mode 100644 index 00000000..e21a82f0 --- /dev/null +++ b/web/help/js/context/8.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Tools" + + + + + + + + diff --git a/web/help/js/context/80.html b/web/help/js/context/80.html new file mode 100644 index 00000000..0d7a8674 --- /dev/null +++ b/web/help/js/context/80.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.2.0 (changelog)" + + + + + + + + diff --git a/web/help/js/context/81.html b/web/help/js/context/81.html new file mode 100644 index 00000000..0905e6e5 --- /dev/null +++ b/web/help/js/context/81.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "LuaPerks" + + + + + + + + diff --git a/web/help/js/context/82.html b/web/help/js/context/82.html new file mode 100644 index 00000000..4d67f7ba --- /dev/null +++ b/web/help/js/context/82.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.2.2 (changelog)" + + + + + + + + diff --git a/web/help/js/context/83.html b/web/help/js/context/83.html new file mode 100644 index 00000000..7bf5b51c --- /dev/null +++ b/web/help/js/context/83.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to ".nl files format" + + + + + + + + diff --git a/web/help/js/context/84.html b/web/help/js/context/84.html new file mode 100644 index 00000000..dcf75712 --- /dev/null +++ b/web/help/js/context/84.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "What's New? 2.3.0 (changelog)" + + + + + + + + diff --git a/web/help/js/context/9.html b/web/help/js/context/9.html new file mode 100644 index 00000000..bec6086c --- /dev/null +++ b/web/help/js/context/9.html @@ -0,0 +1,14 @@ + + + + + + Redirecting to "Cheat Search" + + + + + + + + diff --git a/web/help/js/hnd.js b/web/help/js/hnd.js deleted file mode 100644 index 7c3b9e4d..00000000 --- a/web/help/js/hnd.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.highlight=function(a){function d(b,a){var e=0;if(b.nodeType==3){var c=b.data.toUpperCase().indexOf(a);if(c>=0){e=document.createElement("span");e.className="highlight";c=b.splitText(c);c.splitText(a.length);var g=c.cloneNode(!0);e.appendChild(g);c.parentNode.replaceChild(e,c);e=1}}else if(b.nodeType==1&&b.childNodes&&!/(script|style)/i.test(b.tagName))for(c=0;c=0;c--)b=$.inArray(a[c][0],this.aResults),b>=0&&this.aResults.splice(b,1)},IntersectResultTopics:function(a){if(a&& a.length)for(var b=!1,c=this.aResults.length-1;c>=0;c--){for(var b=!1,d=0;d-1?o.scores[i][Score.TopicScore]=o.scores[i][Score.TopicScore]+t:o.scores.push([e,t])})},r.prototype.Clear=function(){this.scores=[]},r.prototype.ExcludeTopics=function(r){var o=this;if(!r||!r.forEach)return void console.error("Invalid ExcludeTopics call");r.forEach(function(r){if(!r||!Array.isArray(r)||2!==r.length)return void console.error("Invalid data in ExcludeTopics");var e=r[Score.TopicNumber];if("number"!=typeof e||e<0)return void console.error("Invalid topic data in ExcludeTopics");var t=o.FindTopicIndex(e);t>-1&&o.scores.splice(t,1)})},r.prototype.SortByScore=function(){this.scores.sort(function(r,o){return r[Score.TopicScore]>o[Score.TopicScore]?-1:r[Score.TopicScore]0&&'"'===t[0];)t=t.substr(1);for(;t.length>0&&'"'===t[t.length-1];)t=t.substr(0,t.length-1);switch(i){case"-":this.inputWordsExcluded.AddWord(t);break;case"+":this.inputWordsIncluded.AddWord(t);break;default:this.inputWordsMandatory.AddWord(t)}}}},r.prototype.PerformSearch=function(r){var o=this;if(this.resultScoreIncluded=new HndJsSeResultScore,this.resultScoreMandatory=new HndJsSeResultScore,this.resultScoreExcluded=new HndJsSeResultScore,!r||!r.length)return console.error("Invalid word list data"),[];var e;r.forEach(function(r){if("string"==typeof r)e=r.trim().toLowerCase();else{if(!Array.isArray(r))return void console.error("Invalid element in word list data:",r);if(""==e)return void console.warn("Empty word should not be included in list");-1!==o.inputWordsIncluded.FindPartial(e)&&o.resultScoreIncluded.AddTopics(r),-1!==o.inputWordsMandatory.FindPartial(e)&&o.resultScoreMandatory.AddTopics(r),-1!==o.inputWordsExcluded.FindPartial(e)&&o.resultScoreExcluded.AddTopics(r)}});var t=this.resultScoreIncluded;return t.AddTopics(this.resultScoreMandatory.scores),t.ExcludeTopics(this.resultScoreExcluded.scores),t.SortByScore(),t.scores},r}(); \ No newline at end of file diff --git a/web/help/js/jquery-ui-1.8.12.custom.min.js b/web/help/js/jquery-ui-1.8.12.custom.min.js deleted file mode 100644 index 0d9dbd68..00000000 --- a/web/help/js/jquery-ui-1.8.12.custom.min.js +++ /dev/null @@ -1,68 +0,0 @@ -/*! - * jQuery UI 1.8.12 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI - */ -(function(c,j){function k(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.12",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106, -NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this, -"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position"); -if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,l,m){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(l)g-=parseFloat(c.curCSS(f, -"border"+this+"Width",true))||0;if(m)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h, -d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){var b=a.nodeName.toLowerCase(),d=c.attr(a,"tabindex");if("area"===b){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&k(a)}return(/input|select|textarea|button|object/.test(b)?!a.disabled:"a"==b?a.href||!isNaN(d):!isNaN(d))&&k(a)},tabbable:function(a){var b=c.attr(a,"tabindex");return(isNaN(b)||b>=0)&&c(a).is(":focusable")}}); -c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:"
  • #{label}
  • "},_create:function(){this._tabify(true)},_setOption:function(b,e){if(b=="selected")this.options.collapsible&& -e==this.options.selected||this.select(e);else{this.options[b]=e;this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+u()},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+w());return d.cookie.apply(null,[b].concat(d.makeArray(arguments)))},_ui:function(b,e){return{tab:b,panel:e,index:this.anchors.index(b)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b= -d(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(b){function e(g,f){g.css("display","");!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}var a=this,c=this.options,h=/^#.+/;this.list=this.element.find("ol,ul").eq(0);this.lis=d(" > li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);this.anchors.each(function(g,f){var i=d(f).attr("href"),l=i.split("#")[0],q;if(l&&(l===location.toString().split("#")[0]|| -(q=d("base")[0])&&l===q.href)){i=f.hash;f.href=i}if(h.test(i))a.panels=a.panels.add(a.element.find(a._sanitizeSelector(i)));else if(i&&i!=="#"){d.data(f,"href.tabs",i);d.data(f,"load.tabs",i.replace(/#.*$/,""));i=a._tabId(f);f.href="#"+i;f=a.element.find("#"+i);if(!f.length){f=d(c.panelTemplate).attr("id",i).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else c.disabled.push(g)});if(b){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"); -this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(c.selected===p){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){c.selected=g;return false}});if(typeof c.selected!=="number"&&c.cookie)c.selected=parseInt(a._cookie(),10);if(typeof c.selected!=="number"&&this.lis.filter(".ui-tabs-selected").length)c.selected= -this.lis.index(this.lis.filter(".ui-tabs-selected"));c.selected=c.selected||(this.lis.length?0:-1)}else if(c.selected===null)c.selected=-1;c.selected=c.selected>=0&&this.anchors[c.selected]||c.selected<0?c.selected:0;c.disabled=d.unique(c.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return a.lis.index(g)}))).sort();d.inArray(c.selected,c.disabled)!=-1&&c.disabled.splice(d.inArray(c.selected,c.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active"); -if(c.selected>=0&&this.anchors.length){a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash)).removeClass("ui-tabs-hide");this.lis.eq(c.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[c.selected],a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash))[0]))});this.load(c.selected)}d(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else c.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")); -this.element[c.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");c.cookie&&this._cookie(c.selected,c.cookie);b=0;for(var j;j=this.lis[b];b++)d(j)[d.inArray(b,c.disabled)!=-1&&!d(j).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");c.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(c.event!=="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+ -g)};this.lis.bind("mouseover.tabs",function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(c.fx)if(d.isArray(c.fx)){m=c.fx[0];o=c.fx[1]}else m=o=c.fx;var r=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal", -function(){e(f,o);a._trigger("show",null,a._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},s=m?function(g,f){f.animate(m,m.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")}; -this.anchors.bind(c.event+".tabs",function(){var g=this,f=d(g).closest("li"),i=a.panels.filter(":not(.ui-tabs-hide)"),l=a.element.find(a._sanitizeSelector(g.hash));if(f.hasClass("ui-tabs-selected")&&!c.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a.panels.filter(":animated").length||a._trigger("select",null,a._ui(this,l[0]))===false){this.blur();return false}c.selected=a.anchors.index(this);a.abort();if(c.collapsible)if(f.hasClass("ui-tabs-selected")){c.selected= --1;c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){s(g,i)}).dequeue("tabs");this.blur();return false}else if(!i.length){c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this));this.blur();return false}c.cookie&&a._cookie(c.selected,c.cookie);if(l.length){i.length&&a.element.queue("tabs",function(){s(g,i)});a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier."; -d.browser.msie&&this.blur()});this.anchors.bind("click.tabs",function(){return false})},_getIndex:function(b){if(typeof b=="string")b=this.anchors.index(this.anchors.filter("[href$="+b+"]"));return b},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e= -d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(c,h){a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this,"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});b.cookie&&this._cookie(null,b.cookie);return this},add:function(b, -e,a){if(a===p)a=this.anchors.length;var c=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,b).replace(/#\{label\}/g,e));b=!b.indexOf("#")?b.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var j=c.element.find("#"+b);j.length||(j=d(h.panelTemplate).attr("id",b).data("destroy.tabs",true));j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){e.appendTo(this.list);j.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[a]); -j.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){return k>=a?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");j.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){c._trigger("show",null,c._ui(c.anchors[0],c.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(b){b=this._getIndex(b);var e=this.options,a=this.lis.eq(b).remove(),c=this.panels.eq(b).remove(); -if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(b+(b+1=b?--h:h});this._tabify();this._trigger("remove",null,this._ui(a.find("a")[0],c[0]));return this},enable:function(b){b=this._getIndex(b);var e=this.options;if(d.inArray(b,e.disabled)!=-1){this.lis.eq(b).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){return a!=b});this._trigger("enable",null, -this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(b){b=this._getIndex(b);var e=this.options;if(b!=e.selected){this.lis.eq(b).addClass("ui-state-disabled");e.disabled.push(b);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[b],this.panels[b]))}return this},select:function(b){b=this._getIndex(b);if(b==-1)if(this.options.collapsible&&this.options.selected!=-1)b=this.options.selected;else return this;this.anchors.eq(b).trigger(this.options.event+".tabs");return this}, -load:function(b){b=this._getIndex(b);var e=this,a=this.options,c=this.anchors.eq(b)[0],h=d.data(c,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(c,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(b).addClass("ui-state-processing");if(a.spinner){var j=d("span",c);j.data("label.tabs",j.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({},a.ajaxOptions,{url:h,success:function(k,n){e.element.find(e._sanitizeSelector(c.hash)).html(k);e._cleanup();a.cache&&d.data(c, -"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.error(k,n,b,c)}catch(m){}}}));e.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this}, -url:function(b,e){this.anchors.eq(b).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.12"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(b,e){var a=this,c=this.options,h=a._rotate||(a._rotate=function(j){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var k=c.selected;a.select(++k=0)&&c(b,!e)}}),a(function(){var b=document.body,c=b.appendChild(c=document.createElement("div"));a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;for(var f in d)e.plugins[f]=e.plugins[f]||[],e.plugins[f].push([c,d[f]])},call:function(a,b,c){var d=a.plugins[b];if(!!d&&!!a.element[0].parentNode)for(var e=0;e0)return!0;b[d]=1,e=b[d]>0,b[d]=0;return e},isOverAxis:function(a,b,c){return a>b&&a=9)&&!b.button)return this._mouseUp(b);if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}this._mouseDistanceMet(b)&&this._mouseDelayMet(b)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,b)!==!1,this._mouseStarted?this._mouseDrag(b):this._mouseUp(b));return!this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,b.target==this._mouseDownEvent.target&&a.data(b.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(b));return!1},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return!0}})})(jQuery);/* - * jQuery UI Draggable 1.8.17 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Draggables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.draggable",a.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1},_create:function(){this.options.helper=="original"&&!/^(?:r|a|f)/.test(this.element.css("position"))&&(this.element[0].style.position="relative"),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._mouseInit()},destroy:function(){if(!!this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._mouseDestroy();return this}},_mouseCapture:function(b){var c=this.options;if(this.helper||c.disabled||a(b.target).is(".ui-resizable-handle"))return!1;this.handle=this._getHandle(b);if(!this.handle)return!1;c.iframeFix&&a(c.iframeFix===!0?"iframe":c.iframeFix).each(function(){a('
    ').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1e3}).css(a(this).offset()).appendTo("body")});return!0},_mouseStart:function(b){var c=this.options;this.helper=this._createHelper(b),this._cacheHelperProportions(),a.ui.ddmanager&&(a.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(),this.offset=this.positionAbs=this.element.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.position=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,c.cursorAt&&this._adjustOffsetFromHelper(c.cursorAt),c.containment&&this._setContainment();if(this._trigger("start",b)===!1){this._clear();return!1}this._cacheHelperProportions(),a.ui.ddmanager&&!c.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.helper.addClass("ui-draggable-dragging"),this._mouseDrag(b,!0),a.ui.ddmanager&&a.ui.ddmanager.dragStart(this,b);return!0},_mouseDrag:function(b,c){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute");if(!c){var d=this._uiHash();if(this._trigger("drag",b,d)===!1){this._mouseUp({});return!1}this.position=d.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";a.ui.ddmanager&&a.ui.ddmanager.drag(this,b);return!1},_mouseStop:function(b){var c=!1;a.ui.ddmanager&&!this.options.dropBehaviour&&(c=a.ui.ddmanager.drop(this,b)),this.dropped&&(c=this.dropped,this.dropped=!1);if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return!1;if(this.options.revert=="invalid"&&!c||this.options.revert=="valid"&&c||this.options.revert===!0||a.isFunction(this.options.revert)&&this.options.revert.call(this.element,c)){var d=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){d._trigger("stop",b)!==!1&&d._clear()})}else this._trigger("stop",b)!==!1&&this._clear();return!1},_mouseUp:function(b){this.options.iframeFix===!0&&a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)}),a.ui.ddmanager&&a.ui.ddmanager.dragStop(this,b);return a.ui.mouse.prototype._mouseUp.call(this,b)},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?!0:!1;a(this.options.handle,this.element).find("*").andSelf().each(function(){this==b.target&&(c=!0)});return c},_createHelper:function(b){var c=this.options,d=a.isFunction(c.helper)?a(c.helper.apply(this.element[0],[b])):c.helper=="clone"?this.element.clone().removeAttr("id"):this.element;d.parents("body").length||d.appendTo(c.appendTo=="parent"?this.element[0].parentNode:c.appendTo),d[0]!=this.element[0]&&!/(fixed|absolute)/.test(d.css("position"))&&d.css("position","absolute");return d},_adjustOffsetFromHelper:function(b){typeof b=="string"&&(b=b.split(" ")),a.isArray(b)&&(b={left:+b[0],top:+b[1]||0}),"left"in b&&(this.offset.click.left=b.left+this.margins.left),"right"in b&&(this.offset.click.left=this.helperProportions.width-b.right+this.margins.left),"top"in b&&(this.offset.click.top=b.top+this.margins.top),"bottom"in b&&(this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])&&(b.left+=this.scrollParent.scrollLeft(),b.top+=this.scrollParent.scrollTop());if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)b={top:0,left:0};return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var b=this.options;b.containment=="parent"&&(b.containment=this.helper[0].parentNode);if(b.containment=="document"||b.containment=="window")this.containment=[b.containment=="document"?0:a(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,b.containment=="document"?0:a(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,(b.containment=="document"?0:a(window).scrollLeft())+a(b.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(b.containment=="document"?0:a(window).scrollTop())+(a(b.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(b.containment)&&b.containment.constructor!=Array){var c=a(b.containment),d=c[0];if(!d)return;var e=c.offset(),f=a(d).css("overflow")!="hidden";this.containment=[(parseInt(a(d).css("borderLeftWidth"),10)||0)+(parseInt(a(d).css("paddingLeft"),10)||0),(parseInt(a(d).css("borderTopWidth"),10)||0)+(parseInt(a(d).css("paddingTop"),10)||0),(f?Math.max(d.scrollWidth,d.offsetWidth):d.offsetWidth)-(parseInt(a(d).css("borderLeftWidth"),10)||0)-(parseInt(a(d).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(f?Math.max(d.scrollHeight,d.offsetHeight):d.offsetHeight)-(parseInt(a(d).css("borderTopWidth"),10)||0)-(parseInt(a(d).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relative_container=c}else b.containment.constructor==Array&&(this.containment=b.containment)},_convertPositionTo:function(b,c){c||(c=this.position);var d=b=="absolute"?1:-1,e=this.options,f=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=/(html|body)/i.test(f[0].tagName);return{top:c.top+this.offset.relative.top*d+this.offset.parent.top*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():g?0:f.scrollTop())*d),left:c.left+this.offset.relative.left*d+this.offset.parent.left*d-(a.browser.safari&&a.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:f.scrollLeft())*d)}},_generatePosition:function(b){var c=this.options,d=this.cssPosition=="absolute"&&(this.scrollParent[0]==document||!a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(d[0].tagName),f=b.pageX,g=b.pageY;if(this.originalPosition){var h;if(this.containment){if(this.relative_container){var i=this.relative_container.offset();h=[this.containment[0]+i.left,this.containment[1]+i.top,this.containment[2]+i.left,this.containment[3]+i.top]}else h=this.containment;b.pageX-this.offset.click.lefth[2]&&(f=h[2]+this.offset.click.left),b.pageY-this.offset.click.top>h[3]&&(g=h[3]+this.offset.click.top)}if(c.grid){var j=c.grid[1]?this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1]:this.originalPageY;g=h?j-this.offset.click.toph[3]?j-this.offset.click.toph[2]?k-this.offset.click.left=0;k--){var l=d.snapElements[k].left,m=l+d.snapElements[k].width,n=d.snapElements[k].top,o=n+d.snapElements[k].height;if(!(l-f=k&&g<=l||h>=k&&h<=l||gl)&&(e>=i&&e<=j||f>=i&&f<=j||ej);default:return!1}},a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(b,c){var d=a.ui.ddmanager.droppables[b.options.scope]||[],e=c?c.type:null,f=(b.currentItem||b.element).find(":data(droppable)").andSelf();droppablesLoop:for(var g=0;g').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e');/sw|se|ne|nw/.test(f)&&h.css({zIndex:++c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){c.disabled||(a(this).removeClass("ui-resizable-autohide"),b._handles.show())},function(){c.disabled||b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement);return this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),a.browser.opera&&/relative/.test(f.css("position"))&&f.css({position:"relative",top:"auto",left:"auto"}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b);return!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui());return!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove();return!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),ea.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null);return a},_proportionallyResize:function(){var b=this.options;if(!!this._proportionallyResizeElements.length){var c=this.helper||this.element;for(var d=0;d');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.17"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10),position:b.css("position")})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,e){a(b).each(function(){var b=a(this),f=a(this).data("resizable-alsoresize"),g={},i=e&&e.length?e:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(i,function(a,b){var c=(f[b]||0)+(h[b]||0);c&&c>=0&&(g[b]=c||null)}),a.browser.opera&&/relative/.test(b.css("position"))&&(d._revertToRelativePosition=!0,b.css({position:"absolute",top:"auto",left:"auto"})),b.css(g)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.css({position:b.data("resizable-alsoresize").position})})};d._revertToRelativePosition&&(d._revertToRelativePosition=!1,typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)),a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!!i){e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/e.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*e.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}})(jQuery);/* - * jQuery UI Selectable 1.8.17 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Selectables - * - * Depends: - * jquery.ui.core.js - * jquery.ui.mouse.js - * jquery.ui.widget.js - */(function(a,b){a.widget("ui.selectable",a.ui.mouse,{options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch"},_create:function(){var b=this;this.element.addClass("ui-selectable"),this.dragged=!1;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]),c.addClass("ui-selectee"),c.each(function(){var b=a(this),c=b.offset();a.data(this,"selectable-item",{element:this,$element:b,left:c.left,top:c.top,right:c.left+b.outerWidth(),bottom:c.top+b.outerHeight(),startselected:!1,selected:b.hasClass("ui-selected"),selecting:b.hasClass("ui-selecting"),unselecting:b.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=c.addClass("ui-selectee"),this._mouseInit(),this.helper=a("
    ")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"),this._mouseDestroy();return this},_mouseStart:function(b){var c=this;this.opos=[b.pageX,b.pageY];if(!this.options.disabled){var d=this.options;this.selectees=a(d.filter,this.element[0]),this._trigger("start",b),a(d.appendTo).append(this.helper),this.helper.css({left:b.clientX,top:b.clientY,width:0,height:0}),d.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var d=a.data(this,"selectable-item");d.startselected=!0,!b.metaKey&&!b.ctrlKey&&(d.$element.removeClass("ui-selected"),d.selected=!1,d.$element.addClass("ui-unselecting"),d.unselecting=!0,c._trigger("unselecting",b,{unselecting:d.element}))}),a(b.target).parents().andSelf().each(function(){var d=a.data(this,"selectable-item");if(d){var e=!b.metaKey&&!b.ctrlKey||!d.$element.hasClass("ui-selected");d.$element.removeClass(e?"ui-unselecting":"ui-selected").addClass(e?"ui-selecting":"ui-unselecting"),d.unselecting=!e,d.selecting=e,d.selected=e,e?c._trigger("selecting",b,{selecting:d.element}):c._trigger("unselecting",b,{unselecting:d.element});return!1}})}},_mouseDrag:function(b){var c=this;this.dragged=!0;if(!this.options.disabled){var d=this.options,e=this.opos[0],f=this.opos[1],g=b.pageX,h=b.pageY;if(e>g){var i=g;g=e,e=i}if(f>h){var i=h;h=f,f=i}this.helper.css({left:e,top:f,width:g-e,height:h-f}),this.selectees.each(function(){var i=a.data(this,"selectable-item");if(!!i&&i.element!=c.element[0]){var j=!1;d.tolerance=="touch"?j=!(i.left>g||i.righth||i.bottome&&i.rightf&&i.bottom *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3},_create:function(){var a=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):!1,this.offset=this.element.offset(),this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled"),this._mouseDestroy();for(var a=this.items.length-1;a>=0;a--)this.items[a].item.removeData(this.widgetName+"-item");return this},_setOption:function(b,c){b==="disabled"?(this.options[b]=c,this.widget()[c?"addClass":"removeClass"]("ui-sortable-disabled")):a.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(b,c){var d=this;if(this.reverting)return!1;if(this.options.disabled||this.options.type=="static")return!1;this._refreshItems(b);var e=null,f=this,g=a(b.target).parents().each(function(){if(a.data(this,d.widgetName+"-item")==f){e=a(this);return!1}});a.data(b.target,d.widgetName+"-item")==f&&(e=a(b.target));if(!e)return!1;if(this.options.handle&&!c){var h=!1;a(this.options.handle,e).find("*").andSelf().each(function(){this==b.target&&(h=!0)});if(!h)return!1}this.currentItem=e,this._removeCurrentsFromItems();return!0},_mouseStart:function(b,c,d){var e=this.options,f=this;this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(b),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this._generatePosition(b),this.originalPageX=b.pageX,this.originalPageY=b.pageY,e.cursorAt&&this._adjustOffsetFromHelper(e.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!=this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),e.containment&&this._setContainment(),e.cursor&&(a("body").css("cursor")&&(this._storedCursor=a("body").css("cursor")),a("body").css("cursor",e.cursor)),e.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",e.opacity)),e.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",e.zIndex)),this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",b,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions();if(!d)for(var g=this.containers.length-1;g>=0;g--)this.containers[g]._trigger("activate",b,f._uiHash(this));a.ui.ddmanager&&(a.ui.ddmanager.current=this),a.ui.ddmanager&&!e.dropBehaviour&&a.ui.ddmanager.prepareOffsets(this,b),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(b);return!0},_mouseDrag:function(b){this.position=this._generatePosition(b),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs);if(this.options.scroll){var c=this.options,d=!1;this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-b.pageY=0;e--){var f=this.items[e],g=f.item[0],h=this._intersectsWithPointer(f);if(!h)continue;if(g!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=g&&!a.ui.contains(this.placeholder[0],g)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],g):!0)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(f))this._rearrange(b,f);else break;this._trigger("change",b,this._uiHash());break}}this._contactContainers(b),a.ui.ddmanager&&a.ui.ddmanager.drag(this,b),this._trigger("sort",b,this._uiHash()),this.lastPositionAbs=this.positionAbs;return!1},_mouseStop:function(b,c){if(!!b){a.ui.ddmanager&&!this.options.dropBehaviour&&a.ui.ddmanager.drop(this,b);if(this.options.revert){var d=this,e=d.placeholder.offset();d.reverting=!0,a(this.helper).animate({left:e.left-this.offset.parent.left-d.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-d.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){d._clear(b)})}else this._clear(b,c);return!1}},cancel:function(){var b=this;if(this.dragging){this._mouseUp({target:null}),this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("deactivate",null,b._uiHash(this)),this.containers[c].containerCache.over&&(this.containers[c]._trigger("out",null,b._uiHash(this)),this.containers[c].containerCache.over=0)}this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),a.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?a(this.domPosition.prev).after(this.currentItem):a(this.domPosition.parent).prepend(this.currentItem));return this},serialize:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];b=b||{},a(c).each(function(){var c=(a(b.item||this).attr(b.attribute||"id")||"").match(b.expression||/(.+)[-=_](.+)/);c&&d.push((b.key||c[1]+"[]")+"="+(b.key&&b.expression?c[1]:c[2]))}),!d.length&&b.key&&d.push(b.key+"=");return d.join("&")},toArray:function(b){var c=this._getItemsAsjQuery(b&&b.connected),d=[];b=b||{},c.each(function(){d.push(a(b.item||this).attr(b.attribute||"id")||"")});return d},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,d=this.positionAbs.top,e=d+this.helperProportions.height,f=a.left,g=f+a.width,h=a.top,i=h+a.height,j=this.offset.click.top,k=this.offset.click.left,l=d+j>h&&d+jf&&b+ka[this.floating?"width":"height"]?l:f0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a),this.refreshPositions();return this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(b){var c=this,d=[],e=[],f=this._connectWith();if(f&&b)for(var g=f.length-1;g>=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&e.push([a.isFunction(j.options.items)?j.options.items.call(j.element):a(j.options.items,j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),j])}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(var g=e.length-1;g>=0;g--)e[g][0].each(function(){d.push(this)});return a(d)},_removeCurrentsFromItems:function(){var a=this.currentItem.find(":data("+this.widgetName+"-item)");for(var b=0;b=0;g--){var h=a(f[g]);for(var i=h.length-1;i>=0;i--){var j=a.data(h[i],this.widgetName);j&&j!=this&&!j.options.disabled&&(e.push([a.isFunction(j.options.items)?j.options.items.call(j.element[0],b,{item:this.currentItem}):a(j.options.items,j.element),j]),this.containers.push(j))}}for(var g=e.length-1;g>=0;g--){var k=e[g][1],l=e[g][0];for(var i=0,m=l.length;i=0;c--){var d=this.items[c];if(d.instance!=this.currentContainer&&this.currentContainer&&d.item[0]!=this.currentItem[0])continue;var e=this.options.toleranceElement?a(this.options.toleranceElement,d.item):d.item;b||(d.width=e.outerWidth(),d.height=e.outerHeight());var f=e.offset();d.left=f.left,d.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(var c=this.containers.length-1;c>=0;c--){var f=this.containers[c].element.offset();this.containers[c].containerCache.left=f.left,this.containers[c].containerCache.top=f.top,this.containers[c].containerCache.width=this.containers[c].element.outerWidth(),this.containers[c].containerCache.height=this.containers[c].element.outerHeight()}return this},_createPlaceholder:function(b){var c=b||this,d=c.options;if(!d.placeholder||d.placeholder.constructor==String){var e=d.placeholder;d.placeholder={element:function(){var b=a(document.createElement(c.currentItem[0].nodeName)).addClass(e||c.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];e||(b.style.visibility="hidden");return b},update:function(a,b){if(!e||!!d.forcePlaceholderSize)b.height()||b.height(c.currentItem.innerHeight()-parseInt(c.currentItem.css("paddingTop")||0,10)-parseInt(c.currentItem.css("paddingBottom")||0,10)),b.width()||b.width(c.currentItem.innerWidth()-parseInt(c.currentItem.css("paddingLeft")||0,10)-parseInt(c.currentItem.css("paddingRight")||0,10))}}}c.placeholder=a(d.placeholder.element.call(c.element,c.currentItem)),c.currentItem.after(c.placeholder),d.placeholder.update(c,c.placeholder)},_contactContainers:function(b){var c=null,d=null;for(var e=this.containers.length-1;e>=0;e--){if(a.ui.contains(this.currentItem[0],this.containers[e].element[0]))continue;if(this._intersectsWith(this.containers[e].containerCache)){if(c&&a.ui.contains(this.containers[e].element[0],c.element[0]))continue;c=this.containers[e],d=e}else this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",b,this._uiHash(this)),this.containers[e].containerCache.over=0)}if(!!c)if(this.containers.length===1)this.containers[d]._trigger("over",b,this._uiHash(this)),this.containers[d].containerCache.over=1;else if(this.currentContainer!=this.containers[d]){var f=1e4,g=null,h=this.positionAbs[this.containers[d].floating?"left":"top"];for(var i=this.items.length-1;i>=0;i--){if(!a.ui.contains(this.containers[d].element[0],this.items[i].item[0]))continue;var j=this.items[i][this.containers[d].floating?"left":"top"];Math.abs(j-h)this.containment[2]&&(f=this.containment[2]+this.offset.click.left),b.pageY-this.offset.click.top>this.containment[3]&&(g=this.containment[3]+this.offset.click.top));if(c.grid){var h=this.originalPageY+Math.round((g-this.originalPageY)/c.grid[1])*c.grid[1];g=this.containment?h-this.offset.click.topthis.containment[3]?h-this.offset.click.topthis.containment[2]?i-this.offset.click.left=0;f--)a.ui.contains(this.containers[f].element[0],this.currentItem[0])&&!c&&(d.push(function(a){return function(b){a._trigger("receive",b,this._uiHash(this))}}.call(this,this.containers[f])),d.push(function(a){return function(b){a._trigger("update",b,this._uiHash(this))}}.call(this,this.containers[f])))}for(var f=this.containers.length-1;f>=0;f--)c||d.push(function(a){return function(b){a._trigger("deactivate",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over&&(d.push(function(a){return function(b){a._trigger("out",b,this._uiHash(this))}}.call(this,this.containers[f])),this.containers[f].containerCache.over=0);this._storedCursor&&a("body").css("cursor",this._storedCursor),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex),this.dragging=!1;if(this.cancelHelperRemoval){if(!c){this._trigger("beforeStop",b,this._uiHash());for(var f=0;f",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:"
  • #{label}
  • "},_create:function(){this._tabify(!0)},_setOption:function(a,b){if(a=="selected"){if(this.options.collapsible&&b==this.options.selected)return;this.select(b)}else this.options[a]=b,this._tabify()},_tabId:function(a){return a.title&&a.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+e()},_sanitizeSelector:function(a){return a.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+f());return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(a,b){return{tab:a,panel:b,index:this.anchors.index(a)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function m(b,c){b.css("display",""),!a.support.opacity&&c.opacity&&b[0].style.removeAttribute("filter")}var d=this,e=this.options,f=/^#.+/;this.list=this.element.find("ol,ul").eq(0),this.lis=a(" > li:has(a[href])",this.list),this.anchors=this.lis.map(function(){return a("a",this)[0]}),this.panels=a([]),this.anchors.each(function(b,c){var g=a(c).attr("href"),h=g.split("#")[0],i;h&&(h===location.toString().split("#")[0]||(i=a("base")[0])&&h===i.href)&&(g=c.hash,c.href=g);if(f.test(g))d.panels=d.panels.add(d.element.find(d._sanitizeSelector(g)));else if(g&&g!=="#"){a.data(c,"href.tabs",g),a.data(c,"load.tabs",g.replace(/#.*$/,""));var j=d._tabId(c);c.href="#"+j;var k=d.element.find("#"+j);k.length||(k=a(e.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b-1]||d.list),k.data("destroy.tabs",!0)),d.panels=d.panels.add(k)}else e.disabled.push(b)}),c?(this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"),this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.lis.addClass("ui-state-default ui-corner-top"),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"),e.selected===b?(location.hash&&this.anchors.each(function(a,b){if(b.hash==location.hash){e.selected=a;return!1}}),typeof e.selected!="number"&&e.cookie&&(e.selected=parseInt(d._cookie(),10)),typeof e.selected!="number"&&this.lis.filter(".ui-tabs-selected").length&&(e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))),e.selected=e.selected||(this.lis.length?0:-1)):e.selected===null&&(e.selected=-1),e.selected=e.selected>=0&&this.anchors[e.selected]||e.selected<0?e.selected:0,e.disabled=a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(a,b){return d.lis.index(a)}))).sort(),a.inArray(e.selected,e.disabled)!=-1&&e.disabled.splice(a.inArray(e.selected,e.disabled),1),this.panels.addClass("ui-tabs-hide"),this.lis.removeClass("ui-tabs-selected ui-state-active"),e.selected>=0&&this.anchors.length&&(d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"),this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"),d.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[e.selected],d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0]))}),this.load(e.selected)),a(window).bind("unload",function(){d.lis.add(d.anchors).unbind(".tabs"),d.lis=d.anchors=d.panels=null})):e.selected=this.lis.index(this.lis.filter(".ui-tabs-selected")),this.element[e.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible"),e.cookie&&this._cookie(e.selected,e.cookie);for(var g=0,h;h=this.lis[g];g++)a(h)[a.inArray(g,e.disabled)!=-1&&!a(h).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");e.cache===!1&&this.anchors.removeData("cache.tabs"),this.lis.add(this.anchors).unbind(".tabs");if(e.event!=="mouseover"){var i=function(a,b){b.is(":not(.ui-state-disabled)")&&b.addClass("ui-state-"+a)},j=function(a,b){b.removeClass("ui-state-"+a)};this.lis.bind("mouseover.tabs",function(){i("hover",a(this))}),this.lis.bind("mouseout.tabs",function(){j("hover",a(this))}),this.anchors.bind("focus.tabs",function(){i("focus",a(this).closest("li"))}),this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var k,l;e.fx&&(a.isArray(e.fx)?(k=e.fx[0],l=e.fx[1]):k=l=e.fx);var n=l?function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.hide().removeClass("ui-tabs-hide").animate(l,l.duration||"normal",function(){m(c,l),d._trigger("show",null,d._ui(b,c[0]))})}:function(b,c){a(b).closest("li").addClass("ui-tabs-selected ui-state-active"),c.removeClass("ui-tabs-hide"),d._trigger("show",null,d._ui(b,c[0]))},o=k?function(a,b){b.animate(k,k.duration||"normal",function(){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),m(b,k),d.element.dequeue("tabs")})}:function(a,b,c){d.lis.removeClass("ui-tabs-selected ui-state-active"),b.addClass("ui-tabs-hide"),d.element.dequeue("tabs")};this.anchors.bind(e.event+".tabs",function(){var b=this,c=a(b).closest("li"),f=d.panels.filter(":not(.ui-tabs-hide)"),g=d.element.find(d._sanitizeSelector(b.hash));if(c.hasClass("ui-tabs-selected")&&!e.collapsible||c.hasClass("ui-state-disabled")||c.hasClass("ui-state-processing")||d.panels.filter(":animated").length||d._trigger("select",null,d._ui(this,g[0]))===!1){this.blur();return!1}e.selected=d.anchors.index(this),d.abort();if(e.collapsible){if(c.hasClass("ui-tabs-selected")){e.selected=-1,e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){o(b,f)}).dequeue("tabs"),this.blur();return!1}if(!f.length){e.cookie&&d._cookie(e.selected,e.cookie),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this)),this.blur();return!1}}e.cookie&&d._cookie(e.selected,e.cookie);if(g.length)f.length&&d.element.queue("tabs",function(){o(b,f)}),d.element.queue("tabs",function(){n(b,g)}),d.load(d.anchors.index(this));else throw"jQuery UI Tabs: Mismatching fragment identifier.";a.browser.msie&&this.blur()}),this.anchors.bind("click.tabs",function(){return!1})},_getIndex:function(a){typeof a=="string"&&(a=this.anchors.index(this.anchors.filter("[href$="+a+"]")));return a},destroy:function(){var b=this.options;this.abort(),this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"),this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"),this.anchors.each(function(){var b=a.data(this,"href.tabs");b&&(this.href=b);var c=a(this).unbind(".tabs");a.each(["href","load","cache"],function(a,b){c.removeData(b+".tabs")})}),this.lis.unbind(".tabs").add(this.panels).each(function(){a.data(this,"destroy.tabs")?a(this).remove():a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}),b.cookie&&this._cookie(null,b.cookie);return this},add:function(c,d,e){e===b&&(e=this.anchors.length);var f=this,g=this.options,h=a(g.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,d)),i=c.indexOf("#")?this._tabId(a("a",h)[0]):c.replace("#","");h.addClass("ui-state-default ui-corner-top").data("destroy.tabs",!0);var j=f.element.find("#"+i);j.length||(j=a(g.panelTemplate).attr("id",i).data("destroy.tabs",!0)),j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"),e>=this.lis.length?(h.appendTo(this.list),j.appendTo(this.list[0].parentNode)):(h.insertBefore(this.lis[e]),j.insertBefore(this.panels[e])),g.disabled=a.map(g.disabled,function(a,b){return a>=e?++a:a}),this._tabify(),this.anchors.length==1&&(g.selected=0,h.addClass("ui-tabs-selected ui-state-active"),j.removeClass("ui-tabs-hide"),this.element.queue("tabs",function(){f._trigger("show",null,f._ui(f.anchors[0],f.panels[0]))}),this.load(0)),this._trigger("add",null,this._ui(this.anchors[e],this.panels[e]));return this},remove:function(b){b=this._getIndex(b);var c=this.options,d=this.lis.eq(b).remove(),e=this.panels.eq(b).remove();d.hasClass("ui-tabs-selected")&&this.anchors.length>1&&this.select(b+(b+1=b?--a:a}),this._tabify(),this._trigger("remove",null,this._ui(d.find("a")[0],e[0]));return this},enable:function(b){b=this._getIndex(b);var c=this.options;if(a.inArray(b,c.disabled)!=-1){this.lis.eq(b).removeClass("ui-state-disabled"),c.disabled=a.grep(c.disabled,function(a,c){return a!=b}),this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(a){a=this._getIndex(a);var b=this,c=this.options;a!=c.selected&&(this.lis.eq(a).addClass("ui-state-disabled"),c.disabled.push(a),c.disabled.sort(),this._trigger("disable",null,this._ui(this.anchors[a],this.panels[a])));return this},select:function(a){a=this._getIndex(a);if(a==-1)if(this.options.collapsible&&this.options.selected!=-1)a=this.options.selected;else return this;this.anchors.eq(a).trigger(this.options.event+".tabs");return this},load:function(b){b=this._getIndex(b);var c=this,d=this.options,e=this.anchors.eq(b)[0],f=a.data(e,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&a.data(e,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(b).addClass("ui-state-processing");if(d.spinner){var g=a("span",e);g.data("label.tabs",g.html()).html(d.spinner)}this.xhr=a.ajax(a.extend({},d.ajaxOptions,{url:f,success:function(f,g){c.element.find(c._sanitizeSelector(e.hash)).html(f),c._cleanup(),d.cache&&a.data(e,"cache.tabs",!0),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.success(f,g)}catch(h){}},error:function(a,f,g){c._cleanup(),c._trigger("load",null,c._ui(c.anchors[b],c.panels[b]));try{d.ajaxOptions.error(a,f,b,e)}catch(g){}}})),c.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]),this.panels.stop(!1,!0),this.element.queue("tabs",this.element.queue("tabs").splice(-2,2)),this.xhr&&(this.xhr.abort(),delete this.xhr),this._cleanup();return this},url:function(a,b){this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",b);return this},length:function(){return this.anchors.length}}),a.extend(a.ui.tabs,{version:"1.8.17"}),a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(a,b){var c=this,d=this.options,e=c._rotate||(c._rotate=function(b){clearTimeout(c.rotation),c.rotation=setTimeout(function(){var a=d.selected;c.select(++a1){res+=cache.tagConnector;}}else if(this.hasChildren()!==false){res+=cache.tagExpander;}else{res+=cache.tagConnector;} -if(opts.checkbox&&data.hideCheckbox!==true&&!data.isStatusNode){res+=cache.tagCheckbox;} -if(data.icon){res+="";}else if(data.icon===false){noop();}else{res+=cache.tagNodeIcon;} -var nodeTitle="";if(opts.onCustomRender){nodeTitle=opts.onCustomRender.call(tree,this)||"";} -if(!nodeTitle){var tooltip=data.tooltip?' title="'+data.tooltip.replace(/\"/g,'"')+'"':'',href=data.href||"#";if(opts.noLink||data.noLink){nodeTitle=''+data.title+'';}else{nodeTitle=''+data.title+'';}} -res+=nodeTitle;return res;},_fixOrder:function(){var cl=this.childList;if(!cl||!this.ul){return;} -var childLI=this.ul.firstChild;for(var i=0,l=cl.length-1;i1){this.ul.className=cn.container+" "+cn.noConnector;}else{this.ul.className=cn.container;}}else if(parent){if(!this.li){firstTime=true;this.li=document.createElement("li");this.li.dtnode=this;if(data.key&&opts.generateIds){this.li.id=opts.idPrefix+data.key;} -this.span=document.createElement("span");this.span.className=cn.title;this.li.appendChild(this.span);if(!parent.ul){parent.ul=document.createElement("ul");parent.ul.style.display="none";parent.li.appendChild(parent.ul);} -parent.ul.appendChild(this.li);} -this.span.innerHTML=this._getInnerHtml();var cnList=[];cnList.push(cn.node);if(data.isFolder){cnList.push(cn.folder);} -if(this.bExpanded){cnList.push(cn.expanded);} -if(this.hasChildren()!==false){cnList.push(cn.hasChildren);} -if(data.isLazy&&this.childList===null){cnList.push(cn.lazy);} -if(isLastSib){cnList.push(cn.lastsib);} -if(this.bSelected){cnList.push(cn.selected);} -if(this.hasSubSel){cnList.push(cn.partsel);} -if(tree.activeNode===this){cnList.push(cn.active);} -if(data.addClass){cnList.push(data.addClass);} -cnList.push(cn.combinedExpanderPrefix -+(this.bExpanded?"e":"c") -+(data.isLazy&&this.childList===null?"d":"") -+(isLastSib?"l":""));cnList.push(cn.combinedIconPrefix -+(this.bExpanded?"e":"c") -+(data.isFolder?"f":""));this.span.className=cnList.join(" ");this.li.className=isLastSib?cn.lastsib:"";if(firstTime&&opts.onCreate){opts.onCreate.call(tree,this,this.span);} -if(opts.onRender){opts.onRender.call(tree,this,this.span);}} -if((this.bExpanded||includeInvisible===true)&&this.childList){for(var i=0,l=this.childList.length;iy?1:-1;};cl.sort(cmp);if(deep){for(var i=0,l=cl.length;i0){this.childList[0].focus();}else{this.focus();}} -break;case DTNodeStatus_Loading:this._isLoading=true;$(this.span).addClass(this.tree.options.classNames.nodeLoading);if(!this.parent){this._setStatusNode({title:this.tree.options.strings.loading+info,tooltip:tooltip,addClass:this.tree.options.classNames.nodeWait});} -break;case DTNodeStatus_Error:this._isLoading=false;this._setStatusNode({title:this.tree.options.strings.loadError+info,tooltip:tooltip,addClass:this.tree.options.classNames.nodeError});break;default:throw"Bad LazyNodeStatus: '"+lts+"'.";}},_parentList:function(includeRoot,includeSelf){var l=[];var dtn=includeSelf?this:this.parent;while(dtn){if(includeRoot||dtn.parent){l.unshift(dtn);} -dtn=dtn.parent;} -return l;},getLevel:function(){var level=0;var dtn=this.parent;while(dtn){level++;dtn=dtn.parent;} -return level;},_getTypeForOuterNodeEvent:function(event){var cns=this.tree.options.classNames;var target=event.target;if(target.className.indexOf(cns.node)<0){return null;} -var eventX=event.pageX-target.offsetLeft;var eventY=event.pageY-target.offsetTop;for(var i=0,l=target.childNodes.length;i=x&&eventX<=(x+nx)&&eventY>=y&&eventY<=(y+ny)){if(cn.className==cns.title){return"title";}else if(cn.className==cns.expander){return"expander";}else if(cn.className==cns.checkbox){return"checkbox";}else if(cn.className==cns.nodeIcon){return"icon";}}} -return"prefix";},getEventTargetType:function(event){var tcn=event&&event.target?event.target.className:"",cns=this.tree.options.classNames;if(tcn===cns.title){return"title";}else if(tcn===cns.expander){return"expander";}else if(tcn===cns.checkbox){return"checkbox";}else if(tcn===cns.nodeIcon){return"icon";}else if(tcn===cns.empty||tcn===cns.vline||tcn===cns.connector){return"prefix";}else if(tcn.indexOf(cns.node)>=0){return this._getTypeForOuterNodeEvent(event);} -return null;},isVisible:function(){var parents=this._parentList(true,false);for(var i=0,l=parents.length;ia").focus();}catch(e){}},isFocused:function(){return(this.tree.tnFocused===this);},_activate:function(flag,fireEvents){this.tree.logDebug("dtnode._activate(%o, fireEvents=%o) - %o",flag,fireEvents,this);var opts=this.tree.options;if(this.data.isStatusNode){return;} -if(fireEvents&&opts.onQueryActivate&&opts.onQueryActivate.call(this.tree,flag,this)===false){return;} -if(flag){if(this.tree.activeNode){if(this.tree.activeNode===this){return;} -this.tree.activeNode.deactivate();} -if(opts.activeVisible){this.makeVisible();} -this.tree.activeNode=this;if(opts.persist){$.cookie(opts.cookieId+"-active",this.data.key,opts.cookie);} -this.tree.persistence.activeKey=this.data.key;$(this.span).addClass(opts.classNames.active);if(fireEvents&&opts.onActivate){opts.onActivate.call(this.tree,this);}}else{if(this.tree.activeNode===this){if(opts.onQueryActivate&&opts.onQueryActivate.call(this.tree,false,this)===false){return;} -$(this.span).removeClass(opts.classNames.active);if(opts.persist){$.cookie(opts.cookieId+"-active","",opts.cookie);} -this.tree.persistence.activeKey=null;this.tree.activeNode=null;if(fireEvents&&opts.onDeactivate){opts.onDeactivate.call(this.tree,this);}}}},activate:function(){this._activate(true,true);},activateSilently:function(){this._activate(true,false);},deactivate:function(){this._activate(false,true);},isActive:function(){return(this.tree.activeNode===this);},_userActivate:function(){var activate=true;var expand=false;if(this.data.isFolder){switch(this.tree.options.clickFolderMode){case 2:activate=false;expand=true;break;case 3:activate=expand=true;break;}} -if(this.parent===null){expand=false;} -if(expand){this.toggleExpand();this.focus();} -if(activate){this.activate();}},_setSubSel:function(hasSubSel){if(hasSubSel){this.hasSubSel=true;$(this.span).addClass(this.tree.options.classNames.partsel);}else{this.hasSubSel=false;$(this.span).removeClass(this.tree.options.classNames.partsel);}},_updatePartSelectionState:function(){var sel;if(!this.hasChildren()){sel=(this.bSelected&&!this.data.unselectable&&!this.data.isStatusNode);this._setSubSel(false);return sel;} -var i,l,cl=this.childList,allSelected=true,allDeselected=true;for(i=0,l=cl.length;i=0;i--){sib=parents[i].getNextSibling();if(sib){break;}}} -if(sib){sib.focus();} -break;default:handled=false;} -if(handled){event.preventDefault();}},_onKeypress:function(event){},_onFocus:function(event){var opts=this.tree.options;if(event.type=="blur"||event.type=="focusout"){if(opts.onBlur){opts.onBlur.call(this.tree,this);} -if(this.tree.tnFocused){$(this.tree.tnFocused.span).removeClass(opts.classNames.focused);} -this.tree.tnFocused=null;if(opts.persist){$.cookie(opts.cookieId+"-focus","",opts.cookie);}}else if(event.type=="focus"||event.type=="focusin"){if(this.tree.tnFocused&&this.tree.tnFocused!==this){this.tree.logDebug("dtnode.onFocus: out of sync: curFocus: %o",this.tree.tnFocused);$(this.tree.tnFocused.span).removeClass(opts.classNames.focused);} -this.tree.tnFocused=this;if(opts.onFocus){opts.onFocus.call(this.tree,this);} -$(this.tree.tnFocused.span).addClass(opts.classNames.focused);if(opts.persist){$.cookie(opts.cookieId+"-focus",this.data.key,opts.cookie);}}},visit:function(fn,includeSelf){var res=true;if(includeSelf===true){res=fn(this);if(res===false||res=="skip"){return res;}} -if(this.childList){for(var i=0,l=this.childList.length;i reloading %s...",this,keyPath,child);var self=this;child.reloadChildren(function(node,isOk){if(isOk){tree.logDebug("%s._loadKeyPath(%s) -> reloaded %s.",node,keyPath,node);callback.call(tree,child,"loaded");node._loadKeyPath(segList.join(tree.options.keyPathSeparator),callback);}else{tree.logWarning("%s._loadKeyPath(%s) -> reloadChildren() failed.",self,keyPath);callback.call(tree,child,"error");}});}else{callback.call(tree,child,"loaded");child._loadKeyPath(segList.join(tree.options.keyPathSeparator),callback);} -return;}} -tree.logWarning("Node not found: "+seg);return;},resetLazy:function(){if(this.parent===null){throw"Use tree.reload() instead";}else if(!this.data.isLazy){throw"node.resetLazy() requires lazy nodes.";} -this.expand(false);this.removeChildren();},_addChildNode:function(dtnode,beforeNode){var tree=this.tree,opts=tree.options,pers=tree.persistence;dtnode.parent=this;if(this.childList===null){this.childList=[];}else if(!beforeNode){if(this.childList.length>0){$(this.childList[this.childList.length-1].span).removeClass(opts.classNames.lastsib);}} -if(beforeNode){var iBefore=$.inArray(beforeNode,this.childList);if(iBefore<0){throw" must be a child of ";} -this.childList.splice(iBefore,0,dtnode);}else{this.childList.push(dtnode);} -var isInitializing=tree.isInitializing();if(opts.persist&&pers.cookiesFound&&isInitializing){if(pers.activeKey===dtnode.data.key){tree.activeNode=dtnode;} -if(pers.focusedKey===dtnode.data.key){tree.focusNode=dtnode;} -dtnode.bExpanded=($.inArray(dtnode.data.key,pers.expandedKeyList)>=0);dtnode.bSelected=($.inArray(dtnode.data.key,pers.selectedKeyList)>=0);}else{if(dtnode.data.activate){tree.activeNode=dtnode;if(opts.persist){pers.activeKey=dtnode.data.key;}} -if(dtnode.data.focus){tree.focusNode=dtnode;if(opts.persist){pers.focusedKey=dtnode.data.key;}} -dtnode.bExpanded=(dtnode.data.expand===true);if(dtnode.bExpanded&&opts.persist){pers.addExpand(dtnode.data.key);} -dtnode.bSelected=(dtnode.data.select===true);if(dtnode.bSelected&&opts.persist){pers.addSelect(dtnode.data.key);}} -if(opts.minExpandLevel>=dtnode.getLevel()){this.bExpanded=true;} -if(dtnode.bSelected&&opts.selectMode==3){var p=this;while(p){if(!p.hasSubSel){p._setSubSel(true);} -p=p.parent;}} -if(tree.bEnableUpdate){this.render();} -return dtnode;},addChild:function(obj,beforeNode){if(typeof(obj)=="string"){throw"Invalid data type for "+obj;}else if(!obj||obj.length===0){return;}else if(obj instanceof DynaTreeNode){return this._addChildNode(obj,beforeNode);} -if(!obj.length){obj=[obj];} -var prevFlag=this.tree.enableUpdate(false);var tnFirst=null;for(var i=0,l=obj.length;i=0){this.expandedKeyList.splice(idx,1);$.cookie(this.cookieId+"-expand",this.expandedKeyList.join(","),this.cookieOpts);}},addSelect:function(key){if($.inArray(key,this.selectedKeyList)<0){this.selectedKeyList.push(key);$.cookie(this.cookieId+"-select",this.selectedKeyList.join(","),this.cookieOpts);}},clearSelect:function(key){var idx=$.inArray(key,this.selectedKeyList);if(idx>=0){this.selectedKeyList.splice(idx,1);$.cookie(this.cookieId+"-select",this.selectedKeyList.join(","),this.cookieOpts);}},isReloading:function(){return this.cookiesFound===true;},toDict:function(){return{cookiesFound:this.cookiesFound,activeKey:this.activeKey,focusedKey:this.activeKey,expandedKeyList:this.expandedKeyList,selectedKeyList:this.selectedKeyList};},lastentry:undefined};var DynaTree=Class.create();DynaTree.version="$Version: 1.2.1_rc3$";DynaTree.prototype={initialize:function($widget){this.phase="init";this.$widget=$widget;this.options=$widget.options;this.$tree=$widget.element;this.timer=null;this.divTree=this.$tree.get(0);_initDragAndDrop(this);},_load:function(callback){var $widget=this.$widget;var opts=this.options,self=this;this.bEnableUpdate=true;this._nodeCount=1;this.activeNode=null;this.focusNode=null;if(opts.rootVisible!==undefined){this.logWarning("Option 'rootVisible' is no longer supported.");} -if(opts.minExpandLevel<1){this.logWarning("Option 'minExpandLevel' must be >= 1.");opts.minExpandLevel=1;} -if(opts.classNames!==$.ui.dynatree.prototype.options.classNames){opts.classNames=$.extend({},$.ui.dynatree.prototype.options.classNames,opts.classNames);} -if(opts.ajaxDefaults!==$.ui.dynatree.prototype.options.ajaxDefaults){opts.ajaxDefaults=$.extend({},$.ui.dynatree.prototype.options.ajaxDefaults,opts.ajaxDefaults);} -if(opts.dnd!==$.ui.dynatree.prototype.options.dnd){opts.dnd=$.extend({},$.ui.dynatree.prototype.options.dnd,opts.dnd);} -if(!opts.imagePath){$("script").each(function(){var _rexDtLibName=/.*dynatree[^\/]*\.js$/i;if(this.src.search(_rexDtLibName)>=0){if(this.src.indexOf("/")>=0){opts.imagePath=this.src.slice(0,this.src.lastIndexOf("/"))+"/skin/";}else{opts.imagePath="skin/";} -self.logDebug("Guessing imagePath from '%s': '%s'",this.src,opts.imagePath);return false;}});} -this.persistence=new DynaTreeStatus(opts.cookieId,opts.cookie);if(opts.persist){if(!$.cookie){_log("warn","Please include jquery.cookie.js to use persistence.");} -this.persistence.read();} -this.logDebug("DynaTree.persistence: %o",this.persistence.toDict());this.cache={tagEmpty:"",tagVline:"",tagExpander:"",tagConnector:"",tagNodeIcon:"",tagCheckbox:"",lastentry:undefined};if(opts.children||(opts.initAjax&&opts.initAjax.url)||opts.initId){$(this.divTree).empty();} -var $ulInitialize=this.$tree.find(">ul:first").hide();this.tnRoot=new DynaTreeNode(null,this,{});this.tnRoot.bExpanded=true;this.tnRoot.render();this.divTree.appendChild(this.tnRoot.ul);var root=this.tnRoot;var isReloading=(opts.persist&&this.persistence.isReloading());var isLazy=false;var prevFlag=this.enableUpdate(false);this.logDebug("Dynatree._load(): read tree structure...");if(opts.children){root.addChild(opts.children);}else if(opts.initAjax&&opts.initAjax.url){isLazy=true;root.data.isLazy=true;this._reloadAjax(callback);}else if(opts.initId){this._createFromTag(root,$("#"+opts.initId));}else{this._createFromTag(root,$ulInitialize);$ulInitialize.remove();} -this._checkConsistency();if(!isLazy&&opts.selectMode==3){root._updatePartSelectionState();} -this.logDebug("Dynatree._load(): render nodes...");this.enableUpdate(prevFlag);this.logDebug("Dynatree._load(): bind events...");this.$widget.bind();this.logDebug("Dynatree._load(): postInit...");this.phase="postInit";if(opts.persist){this.persistence.write();} -if(this.focusNode&&this.focusNode.isVisible()){this.logDebug("Focus on init: %o",this.focusNode);this.focusNode.focus();} -if(!isLazy){if(opts.onPostInit){opts.onPostInit.call(this,isReloading,false);} -if(callback){callback.call(this,"ok");}} -this.phase="idle";},_reloadAjax:function(callback){var opts=this.options;if(!opts.initAjax||!opts.initAjax.url){throw"tree.reload() requires 'initAjax' mode.";} -var pers=this.persistence;var ajaxOpts=$.extend({},opts.initAjax);if(ajaxOpts.addActiveKey){ajaxOpts.data.activeKey=pers.activeKey;} -if(ajaxOpts.addFocusedKey){ajaxOpts.data.focusedKey=pers.focusedKey;} -if(ajaxOpts.addExpandedKeyList){ajaxOpts.data.expandedKeyList=pers.expandedKeyList.join(",");} -if(ajaxOpts.addSelectedKeyList){ajaxOpts.data.selectedKeyList=pers.selectedKeyList.join(",");} -if(ajaxOpts.success){this.logWarning("initAjax: success callback is ignored; use onPostInit instead.");} -if(ajaxOpts.error){this.logWarning("initAjax: error callback is ignored; use onPostInit instead.");} -var isReloading=pers.isReloading();ajaxOpts.success=function(dtnode,data,textStatus){if(opts.selectMode==3){dtnode.tree.tnRoot._updatePartSelectionState();} -if(opts.onPostInit){opts.onPostInit.call(dtnode.tree,isReloading,false);} -if(callback){callback.call(dtnode.tree,"ok");}};ajaxOpts.error=function(dtnode,XMLHttpRequest,textStatus,errorThrown){if(opts.onPostInit){opts.onPostInit.call(dtnode.tree,isReloading,true,XMLHttpRequest,textStatus,errorThrown);} -if(callback){callback.call(dtnode.tree,"error",XMLHttpRequest,textStatus,errorThrown);}};this.logDebug("Dynatree._init(): send Ajax request...");this.tnRoot.appendAjax(ajaxOpts);},toString:function(){return"Dynatree '"+this.$tree.attr("id")+"'";},toDict:function(){return this.tnRoot.toDict(true);},serializeArray:function(stopOnParents){var nodeList=this.getSelectedNodes(stopOnParents),name=this.$tree.attr("name")||this.$tree.attr("id"),arr=[];for(var i=0,l=nodeList.length;i=2){Array.prototype.unshift.apply(arguments,["debug"]);_log.apply(this,arguments);}},logInfo:function(msg){if(this.options.debugLevel>=1){Array.prototype.unshift.apply(arguments,["info"]);_log.apply(this,arguments);}},logWarning:function(msg){Array.prototype.unshift.apply(arguments,["warn"]);_log.apply(this,arguments);},isInitializing:function(){return(this.phase=="init"||this.phase=="postInit");},isReloading:function(){return(this.phase=="init"||this.phase=="postInit")&&this.options.persist&&this.persistence.cookiesFound;},isUserEvent:function(){return(this.phase=="userEvent");},redraw:function(){this.tnRoot.render(false,false);},renderInvisibleNodes:function(){this.tnRoot.render(false,true);},reload:function(callback){this._load(callback);},getRoot:function(){return this.tnRoot;},enable:function(){this.$widget.enable();},disable:function(){this.$widget.disable();},getNodeByKey:function(key){var el=document.getElementById(this.options.idPrefix+key);if(el){return el.dtnode?el.dtnode:null;} -var match=null;this.visit(function(node){if(node.data.key==key){match=node;return false;}},true);return match;},getActiveNode:function(){return this.activeNode;},reactivate:function(setFocus){var node=this.activeNode;if(node){this.activeNode=null;node.activate();if(setFocus){node.focus();}}},getSelectedNodes:function(stopOnParents){var nodeList=[];this.tnRoot.visit(function(node){if(node.bSelected){nodeList.push(node);if(stopOnParents===true){return"skip";}}});return nodeList;},activateKey:function(key){var dtnode=(key===null)?null:this.getNodeByKey(key);if(!dtnode){if(this.activeNode){this.activeNode.deactivate();} -this.activeNode=null;return null;} -dtnode.focus();dtnode.activate();return dtnode;},loadKeyPath:function(keyPath,callback){var segList=keyPath.split(this.options.keyPathSeparator);if(segList[0]===""){segList.shift();} -if(segList[0]==this.tnRoot.data.key){this.logDebug("Removed leading root key.");segList.shift();} -keyPath=segList.join(this.options.keyPathSeparator);return this.tnRoot._loadKeyPath(keyPath,callback);},selectKey:function(key,select){var dtnode=this.getNodeByKey(key);if(!dtnode){return null;} -dtnode.select(select);return dtnode;},enableUpdate:function(bEnable){if(this.bEnableUpdate==bEnable){return bEnable;} -this.bEnableUpdate=bEnable;if(bEnable){this.redraw();} -return!bEnable;},count:function(){return this.tnRoot.countChildren();},visit:function(fn,includeRoot){return this.tnRoot.visit(fn,includeRoot);},_createFromTag:function(parentTreeNode,$ulParent){var self=this;$ulParent.find(">li").each(function(){var $li=$(this),$liSpan=$li.find(">span:first"),$liA=$li.find(">a:first"),title,href=null,target=null,tooltip;if($liSpan.length){title=$liSpan.html();}else if($liA.length){title=$liA.html();href=$liA.attr("href");target=$liA.attr("target");tooltip=$liA.attr("title");}else{title=$li.html();var iPos=title.search(/",e.$elModal.find(".modal-body").html(h),e.$elModal.modal("show")}else $("body").removeClass("sm-nav-expanded"),e.DoHandleLink(a,s,i,l,!1)}}).on("ready.jstree",function(t,n){e.SelectTopicInToc("","",!0);var r=parseInt($(o).data("openlvl"),10);r&&e.OpenTreeToLevel($(o),r)}).jstree({core:{animation:e.options.animationDelay,check_callback:$(o).is($(e.options.elTreeSearch)),multiple:!1,strings:{"Loading ...":e._("Loading...")},themes:{dots:!1,responsive:!0},data:r,error:function(t){e.doOnJsTreeError($(o),t)}},types:{default:{icon:"icon-default"}},plugins:["types"]})})},e.prototype.InitHistory=function(){var e=this;window.onpopstate=function(t){e.$elTopicContainer.load(window.location+" "+e.options.elTopicContent,function(t,o,n){e.SelectTopicInToc("","",!1),e.DoScrollToAnchorIfNeeded()})}},e.prototype.InitLinks=function(){var e=this,t=function(t){t.preventDefault();var o=t.currentTarget;e.$elModal&&e.$elModal.modal("hide"),$("body").removeClass("sm-nav-expanded"),e.DoHandleLink("","",o.href,o.target,!0===t.ctrlKey)};this.$elTopicContainer.on("click","a",t),$(".modal-body").on("click","a",t)},e.prototype.Init=function(){if(this.$elTopicContainer=$(this.options.elTopicContainer),!this.$elTopicContainer)throw new EInvalidHtmlElement("Invalid topic container element ["+this.options.elTopicContainer+"]")},e.prototype.Boot=function(){try{this.InitTrees(),this.InitLinks(),this.InitHistory(),this.InitToggler(),this.InitMask(),this.InitModal(),this.InitSearchEngine(),this.InitSearchForm(),this.InitHeadRoom(),this.InitSplitter(),this.InitResponsiveClasses(),this.doOnTopicChanged(),this.doProcessParameters()}catch(e){console.error("[HND-APP] An error occurred while booting the application =>",e.toString())}},e.prototype.OpenTreeToLevel=function(e,t){try{if(t){var o=$(e).jstree(!0);o&&$(o.get_json("#",{no_a_attr:!0,no_children:!1,no_data:!0,no_id:!1,no_li_attr:!0,no_state:!0,flat:!0})).each(function(e,n){var r=o.get_node($(this).attr("id"));r.parents.length<=t&&o.open_node(r)})}}catch(e){console.error("[HND-APP] An error occurred while opening the tree =>",e.toString())}},e.prototype.SelectTopicInToc=function(e,t,o){void 0===o&&(o=!1),"string"==typeof e&&""!==e||(e=$(this.options.elTopicContent).data("hnd-id")),"string"==typeof t&&""!==t||(t=$(this.options.elTopicContent).data("hnd-title")),"string"==typeof e&&""!==e&&(this.$elTreeContainers.jstree("deselect_all",!0),this.$elTreeContainers.jstree("select_node",e,!0,!1),t&&""!==t&&(document.title=t),o&&setTimeout(function(){var t=document.getElementById(e+"_anchor");t&&t.scrollIntoView()},this.options.animationDelay+50))},e}();e.App=n}(Hnd||(Hnd={})); \ No newline at end of file diff --git a/web/help/taseditor/js/hndsd.min.js b/web/help/taseditor/js/hndsd.min.js new file mode 100644 index 00000000..a8e80037 --- /dev/null +++ b/web/help/taseditor/js/hndsd.min.js @@ -0,0 +1 @@ +var aTl=[['Title.html','Title'],['BeginnersGuide.html','Beginner%27s%20Guide'],['Introduction.html','1%2E%20Introduction'],['ProgramInterface.html','2%2E%20Program%20Interface'],['PianoRoll.html','2%2E1%2E%20Piano%20Roll'],['Toolbox.html','2%2E2%2E%20Toolbox'],['TASingProcess.html','3%2E%20TASing%20Process'],['TASingMethodology.html','4%2E%20TASing%20Methodology'],['TraditionalTASing.html','4%2E1%2E%20Traditional%20TASing'],['NonlinearTASing.html','4%2E2%2E%20Nonlinear%20TASing'],['SemiautomaticTASing.html','4%2E3%2E%20Semiautomatic%20TASing'],['ProgramCustomization.html','5%2E%20Program%20customization'],['AdvancedFeatures.html','6%2E%20Advanced%20Features'],['Reference.html','Reference'],['Glossary.html','Glossary'],['Controls.html','Controls'],['Navigation.html','Navigation'],['Operations.html','Operations'],['LuaAPI.html','Lua%20API'],['FAQ.html','FAQ'],['SpeedrunningSynopsis.html','Speedrunning%20synopsis'],['TASEditorInside.html','TAS%20Editor%20Inside'],['Ideas.html','Ideas'],['Implementation.html','Implementation'],['MistakeProofing.html','Mistake%2Dproofing'],['FM3format.html','FM3%20format']];var oWl=['pointer',[[22,2],[23,5],[4,5],[14,1],[11,2],[5,2]],'cheating',[[2,1]],'really',[[12,1],[10,1],[7,1]],'max',[[22,1],[23,3],[14,1],[11,2],[6,1]],'taser',[[6,10],[20,3],[22,20],[16,1],[2,17],[8,2],[4,4],[10,8],[5,5],[19,1],[14,7],[7,10],[12,5],[11,2]],'suboptimal',[[9,1],[2,1]],'mariowidth',[[12,3]],'formulating',[[23,1]],'saveas',[[24,1]],'soulless',[[9,1]],'base64',[[25,1]],'defines',[[6,1],[11,4],[5,1]],'init',[[23,1]],'intensive',[[22,1]],'fix',[[10,1],[5,1],[7,3],[2,2],[8,1],[9,1],[12,1]],'accelerators',[[22,1]],'commonly',[[12,1]],'handling',[[6,1],[11,1],[2,1]],'control',[[22,7],[4,2],[23,1],[19,1],[2,3],[14,1],[11,1],[12,1]],'reduce',[[2,2]],'modifiers',[[15,2]],'highlight',[[22,1]],'autofire',[[23,1],[2,1],[12,1],[11,1]],'resultant',[[22,1]],'moving',[[22,5],[6,2],[16,3],[15,6],[17,1],[9,1],[24,1],[4,1],[10,2],[5,1],[23,1],[7,1],[11,1],[12,1]],'lead',[[9,1],[15,1]],'video',[[5,5],[14,1],[12,1],[6,1]],'widths',[[23,1]],'anyway',[[12,1],[8,1],[11,2],[6,1]],'inconvenient',[[11,1],[7,1]],'md5',[[24,1],[25,1]],'introduction',[[1,1],[0,1],[2,3]],'intermediate',[[5,1],[22,1],[8,2],[6,2]],'ease',[[13,1],[4,1]],'spot',[[5,1]],'hides',[[22,1],[23,1]],'asksave',[[23,1]],'keeps',[[5,1],[22,1],[2,1]],'chronology',[[5,2]],'troublesome',[[7,1]],'completely',[[22,2],[14,1],[8,1],[12,2],[6,2]],'gain',[[22,2],[12,2],[2,1]],'reset',[[3,1],[22,6],[18,1],[24,2],[15,5],[23,2],[19,4],[25,2],[11,1],[6,1]],'uncheck',[[5,3],[15,1],[12,4],[11,1]],'cloudlet',[[22,3],[23,1],[16,1],[5,3]],'desired',[[22,7],[24,1],[16,2],[11,1],[5,4]],'muscle',[[16,1]],'visualization',[[7,1],[2,2],[8,1],[12,1],[14,1]],'before',[[6,1],[20,1],[18,4],[22,13],[16,2],[15,3],[17,3],[2,3],[8,2],[9,6],[3,1],[24,3],[4,4],[10,4],[25,2],[5,8],[19,2],[23,1],[14,2],[7,5],[11,7],[12,4]],'normal',[[11,2],[14,1],[22,5],[15,2],[23,1],[7,1],[2,1],[8,2],[12,1],[9,1]],'false',[[22,2],[18,3],[25,1],[23,1]],'innovation',[[22,1]],'change',[[6,3],[22,39],[18,4],[15,4],[17,41],[2,1],[9,5],[3,1],[24,4],[4,7],[10,2],[5,15],[19,2],[23,5],[7,2],[11,4],[12,5]],'flagpole',[[6,1]],'fixes',[[9,1],[12,1]],'200',[[8,1],[11,4],[6,3]],'absence',[[22,1],[20,3]],'unpause',[[4,2],[15,3],[5,3],[17,1],[7,1],[12,3],[9,1]],'timeline',[[5,2],[22,7],[24,1],[15,2],[6,1]],'including',[[19,1],[22,9],[23,2],[14,1],[11,1],[6,1]],'controls',[[22,2],[4,1],[10,2],[15,6],[5,2],[19,1],[0,1],[23,2],[14,1],[13,2],[11,5],[9,1]],'simplify',[[5,1],[20,1],[22,1],[12,1],[6,1]],'hit',[[22,1]],'impulse',[[12,1]],'interacts',[[23,1]],'greenzone',[[22,55],[18,3],[16,1],[15,1],[17,29],[2,1],[9,1],[24,7],[4,7],[10,1],[25,5],[5,10],[19,2],[23,12],[7,1],[14,3],[12,11],[11,22]],'pointing',[[5,1],[22,1],[25,1],[16,2],[15,3],[11,1]],'obeying',[[2,1]],'slash',[[15,1]],'recently',[[3,1],[22,1],[4,2],[11,3]],'cancelled',[[23,1],[15,1],[5,1]],'visual',[[22,2],[4,1],[14,1]],'thoroughly',[[20,1],[10,1],[14,1]],'meditating',[[2,1]],'gave',[[22,1]],'after',[[6,11],[20,2],[18,2],[22,30],[16,4],[15,1],[17,24],[2,2],[8,10],[9,5],[24,4],[4,3],[10,6],[25,6],[5,13],[19,2],[23,5],[14,1],[7,11],[11,11],[12,10]],'predictable',[[14,1],[2,1]],'framenum',[[17,2]],'polishing',[[6,3],[20,1],[10,2],[23,1],[7,2],[14,1],[8,3],[12,1],[9,2]],'having',[[8,1],[20,1],[23,1]],'meet',[[12,1]],'latest',[[4,2],[7,3],[9,1],[6,1]],'lock',[[9,1]],'behaviors',[[23,1]],'huge',[[4,1],[2,1],[12,4],[23,1]],'bookmark5',[[17,1]],'greenzonx',[[25,1]],'extent',[[22,1],[14,1]],'assumes',[[24,1],[15,1]],'wish',[[0,1],[4,1],[1,2],[16,2],[11,1],[5,1]],'surely',[[2,1]],'indicate',[[4,1],[12,1]],'timings',[[23,5]],'opened',[[24,2],[4,1],[12,1]],'delayed',[[14,2],[9,1],[2,1]],'information',[[22,13],[15,2],[2,1],[8,1],[9,2],[3,1],[24,1],[4,1],[10,2],[5,1],[14,3],[7,3],[12,2],[11,2]],'edited',[[12,1],[22,3],[4,2],[10,1],[16,7],[5,5],[23,1],[8,1],[11,4],[9,1]],'satisfied',[[8,1],[20,1],[6,1]],'tiresome',[[8,1],[7,1]],'frequency',[[8,1]],'poll',[[23,1],[11,1],[14,2]],'mid',[[15,3]],'leaving',[[22,2],[10,1],[4,1],[9,1],[11,2]],'changed',[[22,14],[24,2],[4,2],[10,3],[18,4],[16,1],[5,6],[17,20],[23,1],[7,1],[6,1]],'potentially',[[8,1],[10,1]],'pressed',[[22,10],[4,3],[18,3],[16,2],[25,5],[5,1],[12,2],[11,1]],'content',[[8,1],[5,1]],'unfortunately',[[19,1],[6,2]],'major',[[2,1],[16,1],[15,1],[21,1]],'existed',[[11,1],[12,2]],'listing',[[11,1]],'enable',[[12,1],[15,2],[24,3],[8,1],[11,7],[5,1]],'training',[[8,1]],'opinion',[[12,1]],'already',[[12,3],[22,4],[4,6],[10,3],[18,2],[15,2],[23,1],[2,1],[1,1],[7,3],[11,4],[6,4]],'inattention',[[6,1]],'cursor',[[20,3],[22,83],[18,3],[16,43],[15,59],[17,5],[8,6],[9,22],[24,12],[4,30],[10,15],[5,54],[19,4],[23,12],[7,5],[14,9],[12,8],[11,24]],'10001000',[[17,1],[11,1]],'temptation',[[9,1],[6,1]],'inability',[[7,1]],'beforehand',[[7,1],[5,1]],'principles',[[10,1],[5,1],[19,1],[2,1],[7,1],[11,1],[6,1]],'cleaning',[[11,2],[23,3]],'memorable',[[12,1]],'stores',[[3,2],[12,1],[22,11],[24,1],[25,1],[23,38],[14,1],[8,1],[20,1],[9,1]],'experience',[[22,1],[2,2],[8,1],[12,2],[6,1]],'have',[[6,22],[20,4],[18,1],[22,14],[15,2],[2,6],[8,7],[9,4],[3,1],[24,2],[4,6],[10,1],[25,1],[5,6],[19,1],[23,4],[14,7],[7,15],[11,25],[12,8]],'auxiliary',[[8,1],[15,1],[14,1]],'accidental',[[5,1]],'improvement',[[6,6],[22,4],[14,2],[1,1],[8,1],[20,1],[9,1]],'restriction',[[22,1]],'context',[[22,2],[24,2],[4,2],[16,3],[15,4],[23,1],[17,8],[19,5],[2,1],[14,1],[11,3],[6,1]],'fundamental',[[5,1]],'late',[[5,1]],'gather',[[14,1]],'illuminating',[[15,1]],'steps',[[4,1],[10,1],[5,2],[7,1],[8,5],[9,3],[11,1]],'fer',[[24,1]],'atmosphere',[[2,1]],'top',[[22,1],[4,2],[12,1],[5,2]],'hovers',[[22,1]],'required',[[19,1],[20,1],[22,1],[25,8],[12,1],[5,1]],'although',[[6,1],[22,1],[17,1],[7,1],[14,1],[20,1],[12,2]],'forcing',[[5,1]],'specifications',[[19,2],[0,1],[13,1],[21,1],[25,1]],'performed',[[22,1],[14,1]],'features',[[22,3],[18,1],[16,1],[2,3],[3,1],[4,1],[5,1],[19,3],[0,1],[23,3],[14,10],[1,2],[11,3],[12,2]],'advantages',[[12,1],[2,1]],'enter',[[3,1],[9,1],[4,2],[22,1],[16,2],[15,2],[5,1],[17,3],[11,1],[12,1]],'colors',[[22,6],[4,1],[11,1],[23,2]],'seeking',[[22,21],[24,2],[10,3],[18,6],[16,2],[15,6],[5,9],[23,4],[2,1],[14,1],[11,4],[9,4]],'eye',[[14,1],[22,1],[2,1]],'tests',[[10,1],[2,1],[14,1],[6,1]],'scenery',[[10,1]],'incomplete',[[6,1]],'conditions',[[23,1],[14,2],[12,1],[6,2]],'canvas',[[22,3]],'recalculates',[[23,1]],'unmark',[[23,1]],'pale',[[22,2],[24,1],[4,1],[11,4],[5,1]],'detection',[[14,1]],'resizing',[[23,1]],'separator',[[25,4]],'restart',[[12,1]],'definite',[[20,1],[6,1]],'skip',[[5,1],[11,2],[10,1],[15,1],[9,2],[6,1]],'hover',[[5,2],[22,1],[15,4],[11,2]],'subtitles',[[25,1],[12,5],[15,1]],'markers',[[6,5],[22,45],[18,5],[16,7],[15,13],[17,36],[2,1],[9,2],[4,15],[25,5],[5,8],[19,2],[23,25],[14,4],[12,17],[11,17]],'presence',[[22,1],[20,3],[5,1]],'made',[[9,1],[12,1],[18,5],[22,4],[16,1],[5,3],[23,1],[2,1],[7,1],[14,4],[11,1],[6,5]],'dedicated',[[22,3],[0,1],[4,1],[7,1],[11,1],[5,2]],'filtered',[[22,1]],'shall',[[3,1]],'gridview',[[22,1]],'cloning',[[23,1]],'constitute',[[25,1]],'graphically',[[22,1]],'description',[[3,2],[6,2],[4,1],[22,2],[16,3],[15,2],[23,1],[12,2],[11,1]],'suffix',[[12,1]],'10000',[[11,1]],'prolific',[[2,1]],'alive',[[18,2]],'ntsc',[[18,1]],'aims',[[14,1],[2,1]],'expand',[[22,2],[18,3]],'same',[[6,9],[20,6],[22,20],[16,3],[15,6],[17,1],[2,4],[9,2],[24,3],[4,6],[10,3],[25,2],[5,10],[19,1],[23,1],[7,7],[14,1],[11,11],[12,4]],'described',[[3,3],[12,2],[4,1],[22,1],[16,1],[5,3],[7,3],[14,1],[11,1],[6,1]],'piece',[[6,2]],'repeatedly',[[22,1],[7,1]],'engage',[[3,1]],'contradicts',[[6,1]],'offsets',[[25,4],[23,1]],'aspect',[[6,2],[14,2],[2,1]],'results',[[11,1],[12,1],[4,1],[14,3],[20,2],[5,2],[23,1],[2,1],[7,3],[8,2],[9,1],[6,4]],'influence',[[6,2],[10,1],[2,1]],'superplay',[[14,1]],'seldom',[[7,1]],'coordinate',[[14,1],[22,1],[6,8]],'iphone',[[6,1]],'speedrunner',[[6,1]],'tail',[[17,1],[22,1],[11,4]],'year',[[7,1]],'via',[[15,1],[2,1],[12,1],[5,1]],'snapshot',[[19,1],[22,2],[23,17],[14,1],[11,1],[12,2]],'emulation',[[11,2],[22,11],[18,2],[15,2],[2,1],[9,6],[24,1],[4,3],[10,1],[5,8],[23,6],[7,1],[14,6],[12,4],[20,1]],'spawn',[[22,1]],'static',[[22,1]],'specialized',[[22,1]],'repeated',[[7,1],[12,1],[6,1]],'urges',[[10,1]],'obsolete',[[10,1]],'decrease',[[15,1],[11,1],[6,1]],'organized',[[12,1],[6,1]],'desktop',[[3,2],[22,1],[2,1]],'programs',[[4,1],[14,1]],'unlock',[[6,1]],'irritating',[[11,1]],'accurate',[[22,1],[12,1]],'toolset',[[2,1]],'any',[[6,13],[20,3],[22,30],[16,10],[15,8],[17,3],[2,7],[8,4],[9,3],[3,2],[24,3],[4,14],[10,5],[25,3],[5,23],[19,1],[23,8],[14,9],[7,5],[11,7],[12,7]],'explore',[[16,2]],'при',[[22,1]],'conflict',[[24,1]],'uint64',[[25,1]],'limitations',[[11,1],[14,1]],'skill',[[8,2],[12,1],[6,2]],'clicking',[[9,2],[22,18],[4,6],[18,1],[24,1],[15,8],[5,5],[17,3],[19,1],[11,2],[12,1]],'observe',[[4,3],[16,1],[5,1],[2,1],[14,1],[8,1],[11,1]],'drop',[[22,2],[7,1],[11,1],[9,1]],'consists',[[20,1],[22,1],[25,5],[14,4],[12,2],[5,1]],'extreme',[[22,1],[6,1]],'persistence',[[7,1]],'hits',[[9,1]],'appeared',[[22,1],[11,3],[2,1]],'chose',[[11,2],[23,1]],'submitted',[[18,1]],'classification',[[13,1]],'unnecessary',[[14,1]],'syncing',[[14,1]],'contained',[[22,4],[4,1],[12,1]],'who',[[2,1],[1,2],[7,1],[6,3]],'illogical',[[8,1],[10,1]],'periodically',[[22,1],[18,1]],'drawing',[[12,4],[22,3],[4,2],[10,1],[15,2],[5,1],[23,1],[0,1],[14,1],[11,4],[9,1]],'capturing',[[22,1]],'describes',[[3,1],[12,1],[1,1],[21,1],[11,3],[6,1]],'many',[[6,15],[22,9],[16,2],[15,1],[2,5],[8,4],[3,1],[24,1],[4,2],[10,3],[5,3],[14,7],[12,8],[11,4]],'replace',[[24,1],[18,2],[11,1],[12,1]],'positioned',[[22,1]],'annoyed',[[11,2]],'narrow',[[22,1],[24,1],[4,1]],'initialized',[[22,1]],'adjustlag',[[22,5]],'notepad',[[3,1],[22,1],[2,1],[12,1]],'separated',[[6,2]],'planned',[[22,2],[6,1]],'changing',[[22,7],[24,1],[4,1],[10,1],[15,1],[5,1],[23,5],[2,1],[14,1],[12,1],[11,1]],'books',[[17,1],[6,1]],'intermediaries',[[10,1]],'urgently',[[6,1]],'size',[[22,7],[11,3],[6,2],[16,1],[3,3],[4,1],[25,5],[5,3],[23,5],[7,1],[14,1],[12,13],[20,1]],'configured',[[22,2],[11,1]],'digit',[[22,5],[4,1]],'checked',[[22,3],[18,4],[16,1],[15,1],[5,2],[23,1],[12,3]],'places',[[22,2],[15,1],[23,1],[17,1],[19,1],[7,1],[12,5]],'savestate',[[22,12],[24,11],[15,12],[5,2],[23,7],[7,21],[14,3],[12,4],[11,5]],'repaid',[[12,1]],'valid',[[25,1]],'savestates',[[14,1],[22,10],[24,5],[25,1],[5,3],[23,9],[2,1],[7,5],[8,5],[11,2],[6,2]],'distance',[[5,2],[22,2],[7,1],[6,1]],'previously',[[22,3],[4,1],[18,5],[16,2],[11,2],[20,1]],'coin',[[24,2],[15,3]],'theme',[[4,1]],'achieve',[[7,1],[6,1]],'hardly',[[22,1]],'fly',[[10,1],[2,1],[12,2],[5,1]],'less',[[12,4],[22,1],[4,1],[10,3],[18,2],[24,2],[23,2],[2,2],[7,3],[8,2],[11,1],[6,6]],'specify',[[11,1]],'intelligence',[[14,1]],'disappear',[[17,4],[22,3],[4,1],[10,1],[12,1]],'sounds',[[7,1],[22,1],[6,1]],'call',[[22,1],[18,11],[4,2],[12,1],[23,3]],'hexified',[[25,1]],'unimplemented',[[6,1]],'notion',[[23,1],[2,1]],'had',[[4,1],[2,2],[11,1],[12,1]],'spread',[[4,1]],'throw',[[6,2]],'raise',[[2,1]],'work',[[6,8],[22,6],[21,1],[15,6],[2,3],[8,2],[3,1],[24,5],[4,2],[10,1],[5,2],[23,2],[14,1],[7,3],[12,8],[11,12]],'bot',[[14,1]],'collecting',[[22,1],[11,1]],'function',[[22,5],[24,1],[18,26],[15,1],[5,1],[17,5],[23,15],[12,14],[11,7]],'related',[[5,3],[23,1],[24,1],[12,3],[11,1]],'than',[[6,13],[20,6],[18,1],[22,9],[2,9],[8,1],[9,2],[4,1],[10,2],[25,1],[23,3],[19,1],[14,2],[7,4],[11,3],[12,1]],'switches',[[23,1],[11,1],[7,2]],'environment',[[22,1],[0,1],[10,1],[11,1],[12,1]],'tases',[[14,2],[5,1],[2,1],[7,1],[8,1],[11,1],[6,2]],'playthroughs',[[6,1],[5,2]],'autopause',[[22,1],[11,2]],'keep',[[22,2],[6,5],[18,2],[2,2],[9,1],[3,1],[24,1],[4,1],[5,1],[19,1],[7,3],[12,4],[20,4]],'stand',[[4,1]],'attempts',[[6,1]],'collects',[[14,1]],'enforces',[[22,1]],' easier',[[22,1]],'filters',[[23,1]],'boundaries',[[8,1],[6,3]],'back',[[22,8],[24,2],[4,3],[16,1],[15,1],[5,11],[23,1],[25,1],[2,2],[7,4],[8,1],[9,1]],'equals',[[6,1]],'animating',[[23,2]],'programming',[[0,1],[2,2],[14,2],[21,1],[12,2],[20,3]],'cover',[[16,1]],'comprehensive',[[19,1],[0,1],[14,1]],'monotonous',[[6,2],[5,1]],'branch7',[[17,2]],'introduces',[[16,1]],'outside',[[6,1],[22,4],[4,2],[18,7],[24,1],[16,1],[15,7],[5,1],[17,3],[12,1],[9,2]],'frames',[[6,9],[22,43],[18,6],[16,7],[15,23],[17,41],[2,2],[8,1],[9,3],[24,4],[4,25],[25,1],[5,27],[19,1],[23,8],[14,8],[7,4],[11,38],[12,11]],'trailing',[[9,1]],'slowdown',[[2,2]],'distribute',[[8,1]],'3100',[[11,1]],'fed',[[4,1]],'speedrunning',[[0,1],[7,1],[2,1],[13,1],[20,2]],'commonplace',[[12,1]],'dependence',[[6,2]],'300',[[11,1],[6,1]],'unnoticeable',[[14,1],[7,1]],'yellow',[[22,7],[4,2],[14,1],[11,2]],'precision',[[14,1],[8,1],[11,1],[15,1]],'hitting',[[5,1]],'command',[[15,9],[19,2],[22,1],[7,2],[12,1],[5,1]],'valuable',[[2,1]],'invoke',[[15,6],[23,1]],'whole',[[22,3],[11,3],[6,5],[15,1],[2,2],[8,2],[24,1],[5,2],[0,1],[14,1],[7,3],[12,4],[20,2]],'experienced',[[6,2],[2,2],[1,1],[7,4],[5,1]],'pop',[[22,11],[11,7],[5,1]],'doesn',[[11,4],[20,1],[18,3],[22,2],[16,1],[15,2],[8,1],[9,1],[24,7],[10,2],[25,2],[23,3],[19,2],[7,1],[14,2],[12,2],[6,3]],'drag_mode_deselection',[[24,1]],'never',[[17,1],[8,1],[9,2],[11,1]],'icon',[[22,7],[24,3],[16,1],[15,5],[23,1],[17,3],[20,1],[9,1]],'providing',[[14,1]],'power',[[19,1],[23,1],[24,2],[25,2],[15,4],[5,1]],'him',[[6,1],[2,3]],'hard',[[6,1],[22,1],[5,1],[7,1],[8,1],[12,1],[11,1]],'isolate',[[6,1],[2,1]],'beaten',[[12,1],[14,1]],'fm2',[[17,2],[24,9],[14,1],[2,3],[12,12],[25,8]],'rule',[[12,1],[6,1]],'disadvantages',[[7,1]],'suggest',[[23,1],[24,1],[6,1]],'generic',[[20,1]],'customization',[[22,4],[15,1],[0,1],[14,2],[1,1],[20,1],[11,3]],'tiny',[[3,1]],'caching',[[22,1]],'over',[[6,12],[22,10],[15,12],[2,2],[8,1],[9,1],[24,5],[4,1],[10,3],[5,3],[19,1],[23,1],[7,1],[11,6],[12,6]],'serves',[[22,5],[4,1],[14,1],[9,2],[15,1]],'slipped',[[6,1]],'good',[[20,1],[23,1],[10,1],[2,2],[9,1],[12,1]],'happening',[[22,1],[8,1]],'triggered',[[22,1],[18,1]],'timed',[[6,1]],'accentuate',[[6,1]],'dragging',[[3,1],[22,6],[4,3],[24,1],[16,3],[15,1],[5,1],[17,3],[19,1],[11,1],[9,1]],'receives',[[11,1],[12,1]],'entirely',[[22,1]],'magnifying',[[22,1]],'inevitable',[[6,1]],'experiments',[[4,1],[7,4],[14,1],[6,1]],'fill',[[22,1],[16,1],[12,1],[5,1]],'resort',[[7,1]],'return',[[22,2],[18,3],[16,4],[15,1],[2,1],[8,4],[9,2],[4,1],[10,2],[5,4],[7,4],[12,2],[11,3]],'site',[[23,1],[25,1],[2,1]],'obstacle',[[9,1]],'highlights',[[14,1],[4,1],[11,1]],'stress',[[5,1],[2,1]],'looks',[[12,1]],'rolls',[[14,1]],'begin',[[22,1],[4,2],[10,2],[15,1],[7,1],[12,1],[6,2]],'stages',[[22,1],[6,1]],'Все',[[22,1]],'yet',[[24,1],[4,1],[10,1],[18,1],[17,3],[19,1],[7,3],[2,1],[8,3],[11,1],[12,1]],'terminated',[[25,1]],'key',[[6,2],[22,7],[16,4],[15,7],[17,6],[2,3],[8,1],[9,2],[3,1],[24,1],[4,9],[10,1],[25,4],[5,8],[23,3],[7,2],[11,9],[12,2]],'source',[[21,5],[17,2],[19,2],[7,2],[14,2],[12,2],[9,1]],'continue',[[5,1],[12,1],[19,1],[7,3],[9,3],[6,1]],'taseditor_patterns',[[24,1],[12,1]],'genius',[[7,1]],'sweeping',[[11,1]],'likely',[[12,3],[22,1],[4,1],[10,1],[16,1],[2,1],[7,1],[11,2],[6,1]],'stopped',[[9,1],[18,2]],'smallest',[[5,1]],'realm',[[2,1]],'long',[[12,3],[22,8],[4,1],[10,1],[15,3],[5,2],[19,1],[2,2],[7,3],[11,5],[6,4]],'assess',[[6,1]],'right',[[6,9],[22,21],[18,3],[16,1],[15,16],[17,13],[8,5],[9,4],[3,3],[24,4],[4,8],[10,2],[25,5],[5,12],[19,8],[23,2],[7,3],[14,1],[11,5],[12,6]],'distracted',[[6,1]],'mobile',[[6,1]],'people',[[12,2],[2,2],[1,1],[7,3],[8,2],[6,4]],'standard',[[3,1],[24,2],[4,2],[15,1],[5,1],[2,1],[7,1],[11,2],[12,3]],'feeling',[[4,1]],'examination',[[10,1],[7,1]],'facepalms',[[6,1]],'fullscreen',[[24,1]],'complete',[[10,1],[9,1],[7,4]],'microphone',[[14,1]],'official',[[21,1],[25,1]],'succession',[[6,1],[12,1],[2,1]],'receiving',[[2,1]],'erroneously',[[7,1]],'truncates',[[22,1],[23,2],[10,1],[5,1]],'accidentally',[[24,3],[9,1],[5,1]],'meta',[[6,1]],'invented',[[22,1],[4,1],[2,2]],'invoking',[[15,1]],'released',[[22,5],[24,1],[4,2],[16,1],[12,2],[5,1]],'pile',[[18,1]],'walk',[[6,1]],'browse',[[12,1]],'megabytes',[[11,1],[12,2]],'helper',[[12,1]],'easy',[[12,1],[20,1],[4,1],[25,1],[5,3],[7,1],[1,1],[14,3],[11,2],[6,3]],'development',[[22,1],[0,1],[10,1],[2,3],[6,1]],'losing',[[14,1],[8,1],[6,2]],'especially',[[15,1],[20,1],[14,1],[11,1],[6,3]],'oftentimes',[[12,1]],'unconsciously',[[6,1]],'allot',[[9,1]],'off',[[22,6],[18,1],[8,2],[9,2],[3,1],[24,2],[4,1],[10,2],[25,1],[5,2],[19,3],[23,1],[7,1],[11,4],[6,2]],'regularly',[[22,1],[11,1],[23,15]],'truncate',[[22,4],[15,1],[5,1],[17,5],[19,1],[8,1],[11,1]],'popularity',[[22,1]],'which',[[6,13],[20,4],[18,2],[22,16],[16,5],[21,1],[17,2],[8,2],[9,3],[4,4],[10,1],[25,13],[5,1],[19,2],[23,4],[7,1],[14,4],[11,9],[12,8]],'construction',[[2,1]],'progressing',[[8,1]],'avi',[[15,2],[14,1]],'similar',[[22,7],[16,4],[15,1],[2,1],[8,2],[9,1],[3,1],[4,2],[10,1],[5,5],[19,1],[23,2],[14,1],[12,11],[6,3]],'satisfactory',[[7,1]],'totally',[[23,1],[24,1],[4,1],[2,1],[5,1]],'scrollbars',[[15,2]],'portrayed',[[6,1]],'relation',[[22,2],[2,1]],'web',[[1,1],[8,1],[6,1]],'controllers',[[11,1]],'unavailable',[[24,1]],'physically',[[2,1]],'published',[[12,1],[6,1]],'panel',[[2,1],[16,3],[12,1],[23,2]],'preferred',[[4,1],[5,2]],'sufficient',[[8,2],[7,1]],'repeats',[[7,1]],'contexts',[[7,1]],'inaccessible',[[11,1]],'enabling',[[11,1]],'recollect',[[16,1]],'container',[[14,2]],'port',[[19,1],[24,1],[25,3]],'alternatively',[[20,1],[15,1],[5,1]],'bringing',[[20,1],[10,1],[12,1]],'1000',[[5,1],[22,3],[23,1],[8,2],[11,2],[6,4]],'following',[[22,7],[18,1],[15,2],[17,4],[2,2],[3,1],[24,4],[4,2],[25,7],[5,1],[19,1],[23,2],[14,1],[11,2],[6,3]],'entertaining',[[7,1]],'developed',[[22,1],[2,1]],'readbyte',[[12,3]],'far',[[9,2],[12,1],[4,1],[22,2],[16,1],[5,1],[2,1],[11,2],[6,1]],'generate',[[13,1],[4,1]],'mit',[[21,1]],'frequent',[[12,1]],'countdown',[[14,1]],'rewatch',[[7,2],[9,1],[6,1]],'optional',[[10,2],[8,2],[9,2],[25,7]],'anymore',[[22,1],[2,1]],'skidding',[[6,1]],'mechanisms',[[7,1]],'unsetting',[[15,2]],'split',[[11,2]],'evens',[[4,1]],'reading',[[11,1],[6,1],[23,6],[19,1],[7,1],[12,1],[20,1]],'stable',[[23,1],[8,1],[6,1]],'sweat',[[6,2]],'initializes',[[12,1]],'bookmark3',[[17,1]],'superstructure',[[24,1]],'occur',[[6,4],[12,1],[20,1],[11,1],[9,2]],'updated',[[22,4],[9,1]],'emerged',[[6,1]],'problem',[[19,1],[20,2],[22,1],[9,1],[12,2]],'significant',[[22,1]],'shown',[[22,6],[18,1],[4,1],[11,1]],'left',[[6,2],[22,32],[18,2],[16,1],[15,16],[2,1],[8,3],[3,1],[24,3],[4,14],[25,3],[5,11],[7,1],[12,8],[11,5]],'thereby',[[11,1]],'just',[[6,10],[20,2],[22,5],[2,8],[9,4],[3,1],[24,1],[4,13],[10,3],[25,1],[5,7],[19,1],[23,1],[7,9],[14,1],[11,8],[12,4]],'seeks',[[10,1]],'opportunity',[[14,1]],'falls',[[10,1]],'impractical',[[9,1],[11,2]],'contents',[[3,2],[22,11],[4,1],[24,1],[5,4],[17,1],[23,2],[8,2],[11,2],[20,1]],'manipulation',[[10,1],[14,3],[9,1],[20,1]],'port0',[[24,1],[25,7]],'paragraphs',[[6,1]],'newtext',[[17,1],[18,2]],'unbound',[[20,1]],'selected_frame',[[12,3]],'perceive',[[12,1],[2,1],[11,1],[6,1]],'publishing',[[6,1],[2,1]],'optimal',[[20,2],[10,1],[7,2],[14,2],[12,1],[6,2]],'comparisons',[[7,1]],'practically',[[9,1],[10,1]],'role',[[7,1],[15,1],[2,1]],'movement',[[7,1],[23,3],[5,2]],'revert',[[16,2],[5,1],[17,1],[23,1],[7,1],[11,2],[9,1]],'formatting',[[12,1]],'caller',[[23,7]],'different',[[6,3],[22,9],[16,1],[15,2],[17,1],[2,1],[8,5],[9,3],[24,1],[4,3],[10,4],[5,4],[14,4],[7,2],[11,4],[12,5]],'competent',[[1,1]],'inserts',[[17,2],[5,3]],'ending',[[17,1],[22,1],[25,1],[14,2],[9,2],[6,1]],'say',[[22,1],[11,1],[7,1]],'entails',[[7,1]],'later',[[3,2],[22,1],[4,2],[24,1],[9,5],[5,4]],'perfunctory',[[9,1]],'touching',[[14,1],[7,1]],'remains',[[22,3],[12,1],[5,1]],'buttons',[[6,2],[22,21],[18,7],[15,3],[17,4],[2,2],[8,2],[9,1],[4,5],[25,3],[5,19],[19,1],[23,9],[14,1],[11,12],[12,4]],'record',[[11,7],[22,7],[24,2],[15,2],[5,6],[17,44],[25,12],[2,1],[14,2],[8,1],[12,6],[6,3]],'encompasses',[[7,1]],'consecutively',[[22,1]],'someone',[[8,1],[2,1]],'glass',[[22,1]],'will',[[6,9],[20,2],[18,41],[22,59],[16,1],[15,31],[2,3],[8,5],[9,6],[3,4],[24,12],[4,30],[10,10],[25,4],[5,33],[19,3],[23,2],[7,4],[1,1],[14,3],[11,54],[12,40]],'object',[[22,1],[14,2],[2,1],[15,1]],'symbol',[[22,3],[4,1],[15,5],[17,3],[14,1],[12,1],[11,4]],'your',[[6,14],[20,1],[18,5],[22,2],[16,1],[15,1],[2,4],[8,3],[9,7],[3,1],[24,1],[4,7],[10,7],[5,14],[14,2],[7,10],[11,12],[12,15]],'carried',[[6,2],[10,1],[2,1]],'resizable',[[22,1]],'10th',[[4,1]],'gradually',[[11,1],[4,1],[7,1],[9,1],[6,1]],'dislocated',[[5,1]],'pads',[[17,1],[23,4],[5,2]],'0000020',[[4,1]],'six',[[25,1]],'motivates',[[7,1],[6,1]],'adjustment',[[8,1],[11,3],[12,1]],'lots',[[11,1],[2,1]],'modifying',[[22,1],[23,1],[7,1],[14,1],[9,3],[6,1]],'world',[[6,8],[10,3],[2,4],[14,1],[12,3],[5,1]],'forgetting',[[11,1],[5,1]],'setmarker',[[17,2],[18,2]],'sharing',[[22,1],[12,1]],'hanging',[[22,1]],'harmful',[[2,1]],'leads',[[14,1],[4,1],[7,1]],'pit',[[5,1],[10,2],[8,1],[12,1],[6,4]],'shifted',[[17,2],[22,3],[11,1],[5,1]],'advisable',[[3,1]],'theory',[[22,1],[24,1],[11,1],[6,1]],'bit3',[[25,2]],'inherent',[[9,1],[5,1]],'forward',[[22,1],[10,1],[16,1],[15,1],[5,7],[25,1],[7,1],[14,2],[9,1],[6,2]],'these',[[6,7],[20,1],[18,3],[22,8],[15,4],[2,2],[8,3],[24,2],[4,5],[10,1],[5,10],[0,1],[14,1],[7,4],[12,2],[11,4]],'ill',[[6,1]],'wip',[[6,1]],'constantly',[[22,1],[24,1],[10,1],[23,1],[7,1],[2,1],[9,1],[6,1]],'jump',[[22,7],[6,3],[15,3],[2,1],[9,1],[24,2],[4,5],[10,2],[5,25],[23,3],[7,1],[14,1],[11,2],[12,4]],'things',[[2,2],[14,1],[8,1],[6,3]],'running',[[6,1],[22,1],[4,2],[18,2],[24,1],[15,1],[5,2],[14,1],[12,2],[11,2]],'intellectual',[[6,1]],'upcoming',[[14,1],[9,1],[10,1]],'been',[[22,1],[11,2]],'heavy',[[11,1]],'thousands',[[16,2]],'cached',[[22,1]],'upon',[[7,1],[8,1],[6,1]],'sight',[[19,1],[9,1]],'getrecordermode',[[18,2]],'elements',[[5,2],[22,1],[24,3],[15,1],[11,2]],'vast',[[11,1],[6,1]],'around',[[22,1],[11,1]],'recalculating',[[23,1]],'wait',[[5,2],[20,1],[22,1],[11,3],[6,1]],'place',[[6,4],[20,1],[22,9],[16,3],[15,3],[17,1],[2,3],[8,2],[24,1],[4,2],[10,1],[5,7],[19,1],[7,8],[12,1],[11,3]],'pipe',[[25,3],[6,2]],'rldutsba',[[25,1]],'picked',[[15,1]],'core',[[23,1]],'ends',[[22,2],[6,3],[4,1],[25,1],[14,1],[12,2],[9,1]],'values',[[22,11],[12,3],[25,5],[23,2],[14,2],[20,1],[11,1]],'space',[[3,1],[22,2],[6,1],[25,4],[5,1],[23,2],[12,1],[11,4]],'disassembly',[[14,1]],'correlate',[[22,1],[4,1],[12,1]],'everyframe',[[12,4]],'approach',[[20,34],[6,13],[22,1],[15,1],[2,2],[8,10],[9,9],[10,6],[5,1],[14,1],[7,8],[11,5],[12,4]],'capture',[[11,2]],'mechanism',[[1,1],[7,1]],'objective',[[6,2],[8,1],[2,1]],'gateway',[[22,5]],'personal',[[22,1],[11,1],[18,1],[6,1],[15,1],[2,1],[8,1],[9,1],[3,1],[25,1],[7,1],[1,1],[13,1],[16,1],[21,1],[17,1],[24,1],[4,1],[10,1],[5,1],[19,1],[0,1],[23,1],[14,1],[12,1],[20,1]],'frontier',[[6,1]],'judge',[[9,1],[20,2]],'focusing',[[22,1]],'envelope',[[22,1]],'performs',[[22,1]],'shifting',[[5,2],[17,4],[11,3],[6,1]],'rewritten',[[23,1],[6,1]],'precious',[[10,1]],'thumb',[[16,1]],'stack',[[22,2],[23,2]],'turned',[[25,1]],'solutions',[[12,1],[14,1]],'booleans',[[20,2],[25,1]],'ordinary',[[14,2]],'layout',[[22,1]],'regular',[[11,3],[22,1],[24,2],[5,2],[23,1],[2,2],[7,3],[12,2],[6,5]],'critically',[[6,1]],'finally',[[3,1],[20,1],[22,1],[11,4],[5,1]],'uses',[[3,1],[12,1],[22,3],[25,2],[11,1],[6,1]],'rebuilt',[[5,1]],'executes',[[22,1]],'1010',[[17,1],[11,1],[5,1]],'hours',[[11,1]],'fourth',[[22,1]],'divided',[[3,1],[22,1]],'consume',[[9,1]],'improve',[[6,2],[12,1],[4,1],[20,1],[22,2],[24,1],[2,1],[1,1],[14,1],[11,1],[9,1]],'greatly',[[14,1],[23,1],[5,2]],'purposely',[[12,1]],'resumes',[[24,1],[5,1]],'sub',[[3,1]],'disables',[[24,1]],'pending',[[18,1],[23,1]],'direct',[[3,1],[6,1],[2,2],[7,1],[14,1],[5,1]],'item',[[3,6],[9,7],[18,1],[22,32],[15,1],[5,8],[23,2],[11,8],[12,1]],'supermariobros',[[12,1]],'quantity',[[14,1]],'examine',[[9,1],[7,1]],'days',[[4,1],[6,1]],'involvement',[[7,1]],'strategy',[[11,1],[5,1]],'counted',[[25,1]],'internal',[[25,4],[6,1]],'teleport',[[7,1]],'reads',[[23,1],[6,1]],'refuse',[[6,1],[24,1],[14,1],[23,1]],'insignificantly',[[12,4]],'implement',[[22,4],[23,1],[5,2]],'mnemonics',[[25,1],[23,1]],'making',[[11,2],[12,4],[10,2],[14,5],[18,2],[22,2],[23,4],[7,7],[2,1],[8,1],[9,1],[6,4]],'palflag',[[25,1]],'search',[[3,1],[6,1],[10,1],[20,5],[22,12],[16,2],[15,1],[2,1],[14,2],[12,8],[9,1]],'pros',[[10,1],[7,1],[14,2],[8,1],[9,1],[11,1]],'through',[[3,1],[11,3],[4,1],[12,3],[20,2],[16,2],[22,10],[5,2],[7,3],[9,1],[6,3]],'maximize',[[6,2]],'dash',[[19,1],[22,1],[4,1],[11,2]],'unchecked',[[18,1],[5,1]],'seems',[[6,1]],'déformation',[[2,1]],'markerx',[[25,1]],'incompatible',[[24,1]],'inevitably',[[6,1]],'end',[[6,23],[20,2],[18,2],[22,8],[16,14],[15,8],[17,3],[2,1],[8,2],[9,11],[3,1],[24,2],[4,1],[10,10],[25,2],[5,6],[19,1],[23,5],[14,1],[7,2],[11,5],[12,11]],'series',[[22,1],[10,1]],'corner',[[6,1],[4,2],[2,1],[12,1],[5,1]],'taken',[[22,5],[11,1]],'shadow',[[5,1]],'stylus',[[14,1]],'port1',[[24,1],[25,7]],'inbuilt',[[2,1]],'starts',[[22,9],[4,3],[10,3],[18,1],[15,2],[5,3],[23,2],[25,3],[12,1],[6,1]],'and',[[22,182],[11,74],[18,14],[6,119],[15,40],[2,45],[8,33],[9,51],[3,13],[25,25],[7,55],[1,5],[13,1],[16,16],[21,5],[17,58],[24,26],[4,53],[10,44],[5,88],[19,13],[0,2],[23,91],[14,40],[12,94],[20,25]],'find',[[6,5],[20,2],[18,1],[22,5],[16,9],[15,3],[17,1],[8,2],[9,1],[3,1],[4,1],[10,1],[5,2],[23,1],[7,3],[14,2],[11,3],[12,5]],'estimated',[[6,1],[10,1],[5,1]],'next',[[6,7],[20,2],[22,6],[16,8],[15,3],[2,2],[8,3],[9,4],[3,1],[24,1],[4,2],[10,2],[25,2],[5,7],[19,1],[14,1],[7,3],[11,5],[12,1]],'user',[[22,41],[24,26],[18,9],[15,1],[5,1],[23,11],[7,1],[2,1],[14,1],[11,2]],'laying',[[9,1]],'color',[[22,18],[4,8],[15,2],[5,1],[14,3],[12,1],[11,6]],'plenty',[[12,1],[2,1]],'friendly',[[14,1]],'opening',[[3,1],[24,2],[23,2]],'creating',[[20,3],[22,5],[15,1],[17,2],[2,2],[8,2],[3,1],[24,1],[4,1],[5,1],[19,1],[23,10],[14,3],[7,3],[11,1],[12,2]],'thoughtful',[[7,1]],'old',[[6,5],[20,18],[18,4],[22,14],[17,8],[2,4],[8,10],[9,4],[24,2],[4,2],[10,2],[5,6],[19,3],[14,2],[7,7],[11,8],[12,1]],'interconnections',[[6,1]],'bar',[[22,1],[8,1],[12,1],[5,5]],'rightclick',[[24,3]],'test',[[11,2],[20,1],[10,3],[5,2],[2,2],[14,1],[8,2],[9,1],[6,3]],'videogames',[[10,1],[0,1],[7,1],[14,3],[8,1],[12,1],[6,1]],'getlostplayback',[[18,2]],'project',[[6,2],[22,26],[21,1],[15,3],[17,3],[2,4],[9,1],[3,3],[24,33],[4,2],[25,4],[5,5],[19,5],[23,25],[7,1],[14,3],[11,15],[12,24]],'carry',[[6,1]],'known',[[22,1],[10,2],[19,1],[2,1],[14,1],[8,1],[9,1]],'properties',[[22,1],[23,3],[20,4],[6,1]],'tab',[[15,2]],'perception',[[2,1]],'remapping',[[11,1]],'becoming',[[4,2]],'fight',[[12,1]],'tricks',[[14,3],[6,2]],'cause',[[22,1],[2,1],[9,1],[5,1]],'effect',[[22,1],[4,1],[2,2],[6,1]],'middle',[[6,2],[12,1],[4,3],[22,3],[24,4],[15,7],[5,3],[23,3],[8,2],[11,5],[9,9]],'robot',[[12,2],[14,1]],'react',[[10,1]],'symbols',[[17,2],[22,6],[4,5],[25,2],[15,2],[11,2]],'attached',[[22,3],[11,2],[25,5]],'subdividing',[[12,1]],'setplayback',[[18,2]],'si_zapper',[[25,4]],'confident',[[6,2]],'develops',[[10,1]],'timer',[[3,1],[14,1],[6,1]],'note',[[6,2],[22,11],[18,3],[16,7],[15,13],[17,9],[3,1],[4,8],[5,1],[19,1],[23,4],[14,3],[11,9],[12,9]],'replayed',[[9,1],[11,1]],'assumed',[[20,1]],'expect',[[6,1]],'carefully',[[16,2],[12,1],[5,1]],'prototype',[[22,2]],'ground',[[7,1],[9,1],[6,2]],'games',[[12,4],[22,1],[10,4],[5,3],[2,1],[7,1],[14,4],[11,4],[6,6]],'ppu',[[24,3],[15,1],[25,1]],'balance',[[20,1],[6,1]],'emphasizing',[[2,1]],'proceed',[[3,1],[20,1],[4,1],[10,1],[2,1],[8,2],[9,1],[6,1]],'saves',[[22,3],[23,12],[25,3],[14,1],[11,1],[5,2]],'casual',[[8,1],[6,1]],'checkboxes',[[10,2],[15,1],[5,3],[19,1],[23,2],[11,2],[9,1]],'relatively',[[22,1]],'inserted',[[17,5],[22,1],[15,1]],'selectbetweenmarkers',[[24,1]],'excitement',[[6,1]],'distinctness',[[14,1]],'simplest',[[20,1]],'distinguishes',[[8,1]],'get',[[6,5],[22,3],[18,5],[16,1],[2,5],[8,4],[9,1],[4,2],[10,2],[5,1],[23,1],[14,1],[11,1],[12,4]],'guaranteed',[[22,1]],'target',[[20,9],[22,6],[18,1],[6,3],[8,4],[9,6],[10,2],[5,9],[19,2],[23,3],[7,1],[11,1],[12,1]],'somewhat',[[9,2],[6,1]],'reload',[[24,1],[11,4],[15,4]],'belong',[[15,1]],'corresponds',[[22,8],[18,1],[14,1],[25,1],[5,1]],'familiar',[[7,1],[5,3]],'every',[[6,11],[20,6],[18,2],[22,14],[15,1],[17,1],[2,2],[8,2],[9,3],[4,4],[10,5],[25,4],[5,9],[23,5],[14,7],[7,2],[11,15],[12,9]],'marked',[[22,5],[4,4],[18,4],[16,2],[5,2],[17,6],[19,1],[14,1],[8,1],[12,4],[11,1]],'emulate',[[22,3],[15,1],[5,1]],'anticipation',[[6,1]],'readonly',[[18,1]],'preset',[[15,3]],'aside',[[5,1]],'reviewed',[[3,1]],'shortcut',[[6,1]],'confinement',[[15,1]],'intersects',[[6,1]],'truncated',[[5,2],[17,30],[18,1],[22,9],[12,1],[11,2]],'progress',[[5,5],[7,2],[8,1],[6,3]],'aforementioned',[[9,1],[11,1]],'design',[[6,1]],'prompt',[[19,1]],'drops',[[9,1]],'workarounds',[[2,1]],'independence',[[7,1]],'dynamic',[[22,1]],'according',[[6,1],[22,2],[10,1],[23,4],[19,1],[7,1],[8,1],[12,3],[11,2]],'comment',[[25,3],[7,5]],'considerable',[[3,1],[11,1],[6,2]],'ingenious',[[6,1]],'experimentally',[[7,1]],'feel',[[12,1],[10,1],[5,1],[19,1],[2,1],[7,1],[9,1],[6,4]],'dream',[[22,1],[2,1]],'stops',[[22,3],[24,1],[18,1],[7,1],[12,1],[11,1]],'slowly',[[15,1]],'parent',[[22,7]],'automation',[[22,2],[14,1]],'thus',[[6,8],[20,3],[22,10],[15,1],[2,5],[8,1],[9,1],[24,1],[4,5],[10,2],[5,5],[19,1],[23,1],[14,4],[7,3],[11,8],[12,1]],'updates',[[18,1],[23,18]],'illusions',[[2,1]],'identical',[[17,2]],'together',[[5,2],[22,3],[7,1],[11,2],[6,1]],'deliver',[[8,1]],'enrich',[[7,1]],'recommended',[[6,1],[20,6],[18,1],[22,1],[16,1],[15,3],[8,2],[9,5],[3,1],[24,2],[4,2],[10,3],[5,3],[19,4],[23,1],[7,1],[14,2],[11,20],[12,9]],'indication',[[22,1]],'contrary',[[6,2]],'essentially',[[4,1],[9,1]],'reader',[[6,1]],'surpass',[[7,1]],'help',[[6,2],[20,2],[18,1],[22,1],[16,1],[21,1],[2,2],[8,1],[9,1],[3,3],[10,2],[25,1],[5,2],[19,2],[23,1],[7,1],[1,2],[11,4],[12,3]],'besides',[[3,2],[12,1],[4,2],[10,1],[22,2],[24,1],[5,3],[19,1],[2,1],[11,1],[6,1]],'rationally',[[5,1]],'gains',[[22,1],[23,1],[7,1]],'graphics',[[10,1],[12,1]],'structures',[[2,1]],'decompressed',[[22,1]],'positions',[[16,1]],'bit5',[[25,2]],'fps',[[15,1],[18,1]],'thing',[[14,1],[12,1],[2,1]],'sections',[[4,1],[2,1],[11,2],[5,1]],'therefore',[[5,1],[22,3],[24,1],[14,1],[12,1],[6,1]],'выходе',[[22,1]],'tags',[[22,1],[12,1]],'frame',[[6,21],[20,17],[18,50],[22,161],[16,29],[15,36],[17,47],[2,12],[8,11],[9,19],[24,5],[4,37],[10,18],[25,5],[5,60],[19,8],[23,24],[14,19],[7,15],[11,36],[12,20]],'loaded',[[17,2],[22,6],[24,4],[25,1],[11,2],[20,1]],'covered',[[3,1],[22,1],[5,1]],'header',[[22,12],[4,3],[15,5],[5,2],[17,8],[23,6],[25,6],[12,1],[11,3]],'comparison',[[22,1],[20,1]],'purposes',[[24,1],[12,1]],'hold',[[12,7],[22,10],[4,6],[10,1],[24,1],[16,5],[15,20],[5,11],[17,1],[2,2],[11,1],[6,4]],'inflict',[[12,1]],'periods',[[6,1]],'gamer',[[6,1],[8,1],[2,2]],'reconsider',[[6,1]],'repeatable',[[12,1]],'manage',[[8,1]],'vary',[[14,1],[7,1]],'fortification',[[12,1]],'comes',[[5,1],[22,1],[18,1],[8,1],[6,4]],'base',[[7,1],[14,1],[8,1],[12,1],[6,1]],'times',[[12,4],[14,1],[18,3],[22,2],[5,2],[23,2],[2,1],[7,1],[8,2],[11,1],[6,3]],'shape',[[2,1]],'bit4',[[25,2]],'brief',[[4,1],[11,1]],'associated',[[22,6],[14,1],[9,1],[25,1]],'config',[[3,1],[22,2],[24,5],[15,1],[5,1],[19,5],[23,4],[11,21]],'constant',[[22,1],[10,1],[2,1],[8,2],[9,1],[6,2]],'diving',[[6,4]],'deliberation',[[22,1]],'possess',[[6,1]],'tooltips',[[3,1],[11,3],[23,1]],'unknown',[[7,2],[22,1],[5,1]],'modern',[[8,1]],'expects',[[24,1],[25,1]],'dialog',[[15,1],[24,6],[11,4],[23,1]],'truncations',[[22,1]],'when',[[6,40],[20,8],[18,10],[22,103],[16,63],[15,19],[17,38],[2,12],[8,12],[9,15],[3,2],[24,32],[4,13],[10,17],[25,9],[5,26],[19,3],[0,2],[23,15],[7,13],[13,1],[14,17],[11,47],[12,26]],'unbroken',[[6,1]],'fceux',[[20,3],[22,6],[18,11],[21,1],[15,7],[2,2],[8,1],[9,2],[3,1],[24,6],[4,5],[10,6],[25,1],[5,10],[19,4],[23,7],[12,13],[11,11]],'logs',[[22,1]],'principle',[[22,1],[6,1]],'exiting',[[15,1],[23,1]],'montage',[[23,1]],'controller',[[22,2],[11,4]],'conflicting',[[5,1]],'patern',[[23,1]],'across',[[4,1],[23,1]],'pay',[[8,1]],'tasers',[[11,2],[12,1],[14,5],[20,1],[22,2],[5,3],[2,1],[1,1],[7,8],[8,2],[6,8]],'count',[[25,1]],'checkpoint',[[6,2]],'researcher',[[2,1]],'classes',[[23,1]],'don',[[6,16],[22,1],[18,3],[2,2],[8,4],[9,2],[3,1],[24,4],[4,5],[10,1],[5,2],[23,1],[14,3],[7,4],[11,9],[12,9]],'inactive',[[22,1],[5,1]],'mentally',[[4,1],[2,2]],'outline',[[14,1]],'flashing',[[22,1],[23,2],[5,1]],'match',[[19,1],[22,2],[24,2],[25,2],[12,3],[6,2]],'restores',[[22,3]],'subsegment',[[22,2],[6,1]],'thought',[[10,1],[6,1]],'smoothly',[[2,1]],'unwittingly',[[7,1]],'retrieve',[[18,1]],'also',[[6,10],[20,1],[18,3],[22,40],[16,4],[15,7],[2,4],[8,3],[9,3],[3,3],[24,4],[4,7],[10,4],[25,1],[5,10],[19,2],[23,18],[14,4],[7,4],[11,12],[12,12]],'designed',[[22,2],[14,1],[2,1],[23,1]],'the',[[22,1483],[11,378],[18,46],[6,393],[15,262],[2,123],[8,162],[9,280],[3,52],[25,143],[7,227],[1,12],[13,3],[16,203],[21,17],[17,227],[24,199],[4,292],[10,238],[5,569],[19,84],[0,5],[23,134],[14,141],[12,358],[20,149]],'mechanically',[[7,1],[2,1],[8,2],[6,1]],'corners',[[4,1]],'remind',[[11,2],[25,1]],'overcoming',[[6,1]],'falling',[[6,1]],'cached_first_difference',[[23,1]],'map',[[22,1],[23,2],[11,2],[15,2]],'interactive',[[0,1],[2,1]],'interim',[[10,1],[7,3],[2,1],[14,2],[9,1],[5,1]],'enjoy',[[6,2]],'accessing',[[19,1]],'display',[[22,14],[24,1],[10,2],[4,2],[16,1],[15,7],[23,1],[2,2],[11,5],[20,1]],'int',[[22,2],[18,48],[20,1]],'increased',[[9,1],[6,1]],'loads',[[22,2],[24,1],[14,1],[7,4],[23,12]],'occasionally',[[22,1],[15,1]],'obstacles',[[6,3]],'paging',[[16,2]],'not',[[6,17],[20,3],[18,25],[22,70],[16,2],[15,7],[17,14],[2,13],[8,2],[9,8],[24,9],[4,5],[10,8],[25,9],[5,7],[19,2],[23,9],[14,5],[7,6],[11,9],[12,19]],'none',[[24,1],[11,1]],'normally',[[10,1],[14,3],[9,1],[5,1]],'minimap',[[22,16]],'bookmarkx',[[25,1]],'title',[[0,1],[4,1],[10,3]],'realize',[[10,1],[2,1]],'sole',[[4,1]],'scripting',[[5,2]],'alternate',[[12,1],[10,1],[8,1],[11,4],[5,1]],'score',[[24,1],[14,1]],'cfg',[[11,1],[23,2]],'identification',[[2,1]],'unobtrusively',[[4,1]],'slower',[[6,1]],'abandon',[[6,1]],'model',[[6,1]],'maintain',[[12,1],[6,1]],'intensified',[[7,1]],'dot',[[15,1],[25,1]],'try',[[6,6],[20,1],[2,3],[8,2],[9,4],[24,1],[4,3],[10,3],[5,3],[19,2],[14,3],[7,2],[11,1],[12,3]],'fastest',[[24,1],[14,2],[13,1],[20,3],[6,1]],'overwriting',[[11,1],[5,1]],'colored',[[19,2],[22,7],[16,1],[5,3]],'evolved',[[22,1],[2,2]],'import',[[17,4],[19,5],[4,1],[22,1],[12,2],[23,1]],'si_gamepad',[[25,4]],'launching',[[22,1],[24,3],[2,1],[12,1],[23,5]],'doubting',[[6,1]],'integrity',[[25,1]],'absolutely',[[4,1]],'asking',[[11,1],[18,3]],'ask',[[19,1],[12,2],[23,1]],'thread',[[22,1]],'surroundings',[[11,1]],'invokes',[[23,1]],'meaningful',[[11,1]],'markedframe',[[18,2]],'verbal',[[6,1]],'wasting',[[7,1]],'3000',[[24,1]],'2nd',[[22,4],[10,1],[25,3],[5,3],[19,1],[7,2],[11,2],[6,5]],'rare',[[22,1],[11,1],[7,2]],'returned',[[22,1],[18,1],[23,1]],'create',[[6,3],[20,1],[18,2],[22,4],[16,1],[2,2],[8,5],[3,1],[24,3],[4,1],[10,1],[5,4],[19,4],[23,4],[14,1],[1,1],[7,2],[11,5],[12,4]],'shortage',[[14,1]],'pageup',[[15,3]],'objectively',[[2,1]],'thanks',[[22,3],[11,3],[24,2],[5,2],[2,4],[20,1],[6,1]],'increasing',[[11,1],[14,1]],'rut',[[2,2]],'flexibly',[[22,1],[5,1]],'determining',[[25,1]],'superimposes',[[12,1]],'requested',[[18,2]],'adjacent',[[22,2],[7,2],[16,1],[6,1]],'constitutes',[[12,1]],'bumps',[[9,1]],'documentation',[[16,1],[15,2],[5,1],[21,1],[0,1],[25,1],[14,1],[1,1],[13,1],[12,3],[6,2]],'applyinputchanges',[[17,4],[22,1],[18,10],[12,2]],'green',[[9,5],[22,21],[4,4],[15,3],[5,2],[11,4],[20,4]],'remote',[[5,1],[2,1]],'cancel',[[22,1],[24,7],[4,1],[15,2],[23,3],[5,2],[11,2]],'minutes',[[5,1],[10,2],[11,3],[6,1]],'figure',[[4,1],[10,1],[8,1],[9,1]],'paper',[[14,1]],'implies',[[22,1],[6,2]],'listed',[[12,1],[4,1],[11,1]],'radiobuttons',[[15,1]],'each',[[22,26],[11,4],[18,2],[6,2],[2,1],[3,1],[24,1],[4,4],[25,5],[5,4],[23,1],[7,2],[14,1],[12,6],[20,2]],'fuzzy',[[22,1],[4,1],[6,2]],'carelessly',[[7,1]],'notify',[[24,1],[23,1]],'splicing',[[17,1],[5,1],[25,1],[23,1]],'moment',[[22,6],[18,5],[16,2],[15,2],[8,1],[9,1],[24,1],[4,2],[10,2],[5,2],[23,2],[7,1],[14,3],[11,2],[6,6]],'occurrence',[[20,6],[23,2]],'teacher',[[10,1]],'structurizing',[[12,1]],'applying',[[6,1],[18,2],[5,1],[7,1],[14,2],[8,1],[11,1],[9,1]],'variety',[[22,1],[14,1]],'derived',[[14,1]],'marking',[[9,1],[6,2]],'trouble',[[6,1]],'pairs',[[25,2]],'recent',[[3,1],[6,1],[4,1],[22,1],[24,2],[16,2],[23,1],[8,1],[11,1],[9,1]],'translucency',[[22,1]],' any',[[15,1],[25,1]],'tedious',[[14,1],[2,1]],'tree',[[22,9],[24,4],[16,2],[15,3],[5,7],[17,3],[19,1],[23,5],[2,2]],'sourceforge',[[21,1]],'damaged',[[12,1]],'issues',[[13,1]],'bookmark1',[[17,2]],'issue',[[19,1],[6,1]],'hoping',[[22,1]],'greater',[[14,1],[22,1],[5,1]],'various',[[6,2],[12,3],[4,2],[22,1],[2,1],[8,1],[11,2],[9,1]],'indicator',[[22,2],[23,1],[5,1]],'since',[[22,11],[6,4],[15,1],[2,2],[8,3],[9,3],[24,7],[10,1],[5,2],[19,3],[23,2],[7,2],[11,4],[12,4]],'lose',[[22,4],[18,2],[10,1],[9,3]],'grows',[[6,2]],'coded',[[11,1]],'20th',[[4,1]],'newcomers',[[2,2]],'ideas',[[12,1],[22,9],[10,4],[21,2],[5,1],[0,1],[2,1],[7,2],[8,3],[9,3],[6,2]],'separate',[[9,1],[12,1],[22,2],[5,1],[2,1],[7,1],[11,2],[6,2]],'int32',[[25,4]],'played',[[14,1],[22,1],[4,1],[24,1],[16,5],[25,1],[5,3],[2,2],[7,1],[8,1],[9,1],[6,2]],'memories',[[4,1],[2,1]],'dry',[[6,1]],'mapped',[[15,2],[11,2],[5,1]],'independently',[[22,1],[24,1],[11,1],[5,1]],'preparation',[[12,1]],'among',[[22,1],[23,1],[14,2],[7,1],[12,1],[15,2]],'idea',[[12,1],[22,2],[4,1],[10,1],[5,1],[2,1],[7,2],[11,2],[6,7]],'collected',[[22,2]],'superimpose',[[17,2],[22,1],[18,1],[2,1],[12,2],[5,4]],'intended',[[22,3],[2,1],[14,1],[21,1],[12,1],[11,4]],'remake',[[22,1]],'conducting',[[7,1]],'movies',[[22,3],[24,1],[4,1],[5,2],[19,3],[14,3],[12,2]],'textbook',[[1,1]],'fall',[[8,1]],'completing',[[20,1]],'humans',[[14,2]],'stumbling',[[7,1]],'unlike',[[12,1],[4,2],[14,3],[9,1],[5,2]],'carefree',[[6,1]],'twin',[[12,1]],'compressed',[[22,8],[24,1],[11,2],[23,1]],'heirs',[[22,1]],'four',[[22,1],[24,1]],'nothing',[[22,1],[4,1],[14,1],[18,8],[15,1]],'mistakes',[[6,4],[7,12],[2,3]],'columns',[[19,2],[22,61],[4,2],[23,2],[15,2],[5,3]],'down',[[6,2],[22,22],[18,3],[16,12],[15,16],[17,5],[2,1],[8,1],[9,4],[24,2],[4,12],[10,1],[25,3],[5,18],[19,1],[14,2],[11,8],[12,3]],'double',[[15,3],[17,7],[4,5],[22,4],[11,2],[5,1]],'turning',[[6,1]],'something',[[12,2],[2,2],[11,1],[6,2]],'stay',[[3,1],[11,1],[6,1]],'lay',[[8,1],[7,1]],'logged',[[22,3],[24,1],[5,1]],'reject',[[9,1]],'summer',[[22,1]],'scroll',[[22,5],[4,1],[10,1],[16,11],[15,11],[5,3],[7,1],[11,2],[9,1]],'numbered',[[22,1],[4,1],[14,1],[5,1]],'subtitled',[[12,1]],'implemented',[[22,3],[10,1],[2,1],[23,1]],'synopsis',[[13,1],[0,1],[20,2]],'esc',[[15,2],[4,1],[11,1],[5,2]],'takes',[[6,1],[22,6],[16,2],[5,1],[19,1],[7,1],[12,1],[11,2]],'physics',[[6,1]],'erased',[[17,1]],'desync',[[14,2]],'outdated',[[22,2]],'submitinsertframes',[[17,1],[18,2]],'definition',[[23,1]],'advance',[[9,1],[16,1],[15,3],[5,3],[17,1],[19,1],[2,1],[14,2],[8,2],[11,3],[12,2]],'decisions',[[8,2],[10,3],[6,2]],'take',[[12,1],[22,2],[4,1],[10,1],[5,1],[23,4],[7,1],[14,1],[8,1],[11,3],[6,5]],'cleared',[[22,1],[4,1],[11,3]],'remove',[[6,1],[22,3],[4,5],[10,1],[15,7],[23,1],[17,7],[11,4],[9,1]],'arrange',[[4,1]],'recognized',[[4,1]],'associate',[[6,1],[4,1],[2,1]],'functions',[[3,2],[22,6],[18,5],[24,1],[15,2],[5,3],[23,1],[2,1],[7,1],[13,1],[12,4],[11,1]],'producer',[[15,1],[23,1]],'coloring',[[22,3],[4,1]],'substantial',[[11,1],[14,1]],'generation',[[22,1]],'differ',[[22,1],[24,1],[4,1],[12,1],[11,1]],'restoring',[[22,1],[23,4],[14,1]],'suggested',[[24,1]],'establishes',[[14,1]],'combined',[[17,2],[22,1],[5,1]],'counts',[[14,1]],'decides',[[7,1]],'practical',[[10,1],[14,1],[15,1],[6,1]],'bonus',[[9,1],[6,1]],'imagining',[[6,1]],'initialization',[[17,3],[23,2]],'those',[[6,3],[22,3],[18,2],[15,5],[17,3],[2,1],[9,1],[3,3],[4,2],[25,1],[5,4],[19,1],[7,2],[14,6],[11,4],[12,3]],'successors',[[22,1]],'deciphering',[[12,1]],'descending',[[5,1]],'interconnected',[[14,1]],'received',[[14,2]],'individuality',[[6,1]],'getnote',[[18,2]],'recording',[[6,2],[22,8],[15,3],[17,4],[2,2],[8,9],[9,1],[3,2],[24,6],[10,1],[5,18],[19,3],[23,6],[14,5],[7,5],[11,15],[12,1]],'rewinding',[[16,2],[15,1],[23,1]],'cutscenes',[[6,1]],'unneeded',[[20,1]],'skilled',[[2,1]],'techniques',[[20,1],[7,1]],'unbounded',[[5,1]],'repository',[[21,1],[2,1]],'sequentially',[[14,2],[7,1]],'erroneous',[[7,1]],'unnoticed',[[7,1]],'appearing',[[5,1],[12,1],[9,1],[6,1]],'vice',[[22,1],[16,1],[15,1]],'rapid',[[8,1]],'mainly',[[22,1],[7,1]],'assuming',[[23,1]],'backup_bookmarks',[[23,1]],'enjoyment',[[6,1]],'essence',[[6,1],[19,1],[2,1]],'thoughts',[[10,1],[7,1],[2,1],[12,1]],'generally',[[19,1],[10,1],[14,1],[7,1]],'constrained',[[11,1]],'aspects',[[12,2],[18,1],[2,3],[14,2],[11,1],[6,1]],'increase',[[6,1],[22,9],[4,1],[15,1],[2,1],[8,1],[12,9],[11,3]],'importantly',[[12,1],[23,1]],'bookmarking',[[22,3]],'tap',[[15,2],[4,1],[5,1]],'min',[[23,1]],'more',[[6,11],[20,3],[18,1],[22,14],[16,1],[15,1],[21,1],[17,2],[2,7],[8,4],[9,6],[24,1],[4,4],[10,7],[5,3],[23,1],[14,22],[7,8],[11,11],[12,7]],'events',[[6,3],[22,5],[16,5],[2,5],[8,1],[9,3],[4,5],[10,3],[5,7],[19,1],[14,7],[7,3],[11,3],[12,3]],'live',[[14,1],[6,1]],'quickly',[[6,2],[22,7],[16,2],[15,2],[2,5],[8,4],[9,1],[4,2],[10,2],[5,4],[19,1],[11,5],[12,1]],'dealing',[[11,1],[6,1]],'beating',[[2,1]],'particularly',[[24,1],[11,1]],'nuances',[[21,1]],'breaking',[[14,1]],'rectangular',[[22,4]],'extension',[[24,1],[2,1],[12,1],[25,1]],'revealed',[[7,1],[6,1]],'occupy',[[11,1]],'bring',[[6,2],[24,1],[4,1],[15,2],[7,1],[12,2],[9,1]],'asked',[[18,1]],'forgotten',[[4,1],[20,1]],'weigh',[[10,1],[8,1],[9,1],[20,1]],'clicks',[[22,3],[24,1],[4,3],[10,1],[15,1],[23,8],[14,1],[11,2],[12,2]],'disregard',[[2,1]],'navigate',[[22,1],[15,1],[5,2],[7,2],[13,1],[8,3],[12,1]],'luascripts',[[12,1],[18,1]],'hotness',[[22,7],[11,4]],'progressbar',[[22,2],[23,2],[11,1],[15,1]],'push',[[24,1],[23,1]],'distinct',[[22,1],[12,1]],'900',[[8,3]],'behind',[[8,2],[4,1],[11,1]],'accumulate',[[6,1]],'reproducible',[[14,2]],'rerecord',[[22,3],[24,1],[15,2],[5,1],[23,1],[25,1],[7,1],[8,1],[6,1]],'programmed',[[12,1]],'hud',[[22,1],[14,1],[11,1],[23,1]],'case',[[6,3],[20,1],[22,4],[24,3],[5,3],[7,6],[14,1],[8,1],[12,4],[11,3]],'smart',[[6,1],[12,1],[5,1]],'group',[[6,2]],'downside',[[11,1],[7,1]],'meeting',[[22,2]],'filler',[[6,1]],'out',[[22,2],[24,1],[10,2],[5,1],[23,1],[7,2],[2,2],[8,3],[9,2]],'verify',[[7,1]],'rewriting',[[14,1],[7,2]],'plus',[[5,1],[22,1],[15,1],[11,1]],'transmission',[[7,1]],'variables',[[22,2],[12,3],[14,1]],'pacifist',[[14,1]],'detecting',[[7,1]],'disable',[[22,6],[4,1],[11,6],[23,1]],'execute',[[11,1],[18,1]],'names',[[22,3],[24,1],[2,1],[23,2]],'implied',[[22,1],[5,1]],'returning',[[22,1],[10,1],[16,2],[11,1],[5,4]],'checksum',[[24,5]],'knowledge',[[9,1],[6,1],[22,1],[7,1],[1,1],[14,5],[11,1],[12,2]],'resumed',[[22,1]],'ascending',[[22,1],[18,1]],'large',[[6,7],[22,1],[4,1],[19,1],[7,2],[12,2],[11,1]],'aim',[[24,1]],'interdependency',[[10,1]],'identifier',[[25,1]],'indeterminate',[[18,1]],'%01d',[[25,2]],'lowest',[[22,1]],'racing',[[20,1]],'reach',[[11,1],[4,1],[10,1],[5,1],[8,2],[9,2],[6,6]],'zipping',[[14,1]],'tens',[[16,2]],'onto',[[22,1],[6,1]],'sync',[[23,1],[12,1],[6,2]],'noticed',[[7,3],[4,1],[6,2]],'forces',[[6,1],[22,1],[5,1]],'inputting',[[10,1]],'public',[[12,1],[23,2]],'clearing',[[22,1],[4,1],[23,1]],'persistent',[[7,1]],'compares',[[22,3],[24,1]],'bookmark9',[[17,1]],'10px',[[22,2]],'supposedly',[[9,1]],'strict',[[5,1],[22,1],[2,1]],'solve',[[14,1]],'soon',[[22,1],[4,1],[10,1],[23,1]],'cool',[[4,1],[11,1]],'learn',[[12,1],[10,1],[0,1],[2,2],[1,1],[8,2],[9,1],[6,2]],'traditional',[[22,2],[6,3],[2,3],[8,6],[9,3],[10,2],[5,2],[19,2],[23,1],[14,2],[7,6],[11,6],[12,2]],'multitrack',[[22,2],[5,1]],'interacting',[[3,1]],'factor',[[10,1],[14,1],[12,1],[6,6]],'log',[[20,1],[22,52],[18,2],[16,1],[15,9],[17,5],[2,2],[8,1],[9,5],[24,1],[10,1],[25,11],[5,7],[23,6],[14,2],[7,1],[12,4],[11,11]],'accelerate',[[22,1],[12,3]],'divergence',[[7,1]],'saved',[[11,6],[22,13],[15,3],[17,3],[8,1],[9,1],[3,1],[24,1],[4,1],[25,10],[5,3],[7,1],[14,1],[12,8],[20,3]],'definitions',[[14,1]],'correct',[[7,3],[6,2]],'complexity',[[5,2],[20,1],[4,1],[9,1],[6,1]],'laconic',[[4,1]],'entry',[[22,2]],'consoles',[[22,1]],'effort',[[7,2],[8,1],[2,1]],'online',[[7,1]],'pasted',[[17,1],[5,1]],'navigation',[[22,10],[16,10],[15,2],[2,1],[8,7],[9,3],[24,2],[4,2],[10,3],[5,3],[19,1],[0,1],[23,2],[14,5],[13,1],[7,8],[11,5]],'random',[[14,1]],'branch6',[[17,2]],'certain',[[11,3],[12,4],[10,1],[22,4],[5,1],[23,1],[2,1],[14,5],[8,1],[9,1],[6,3]],'truth',[[6,1],[2,1]],'didn',[[22,1],[18,1],[17,1],[2,2],[8,1],[9,1],[4,2],[10,1],[25,1],[5,1],[14,1],[20,1],[11,1]],'launch',[[3,2],[12,1],[24,2],[15,4],[23,1],[20,1],[11,3]],'blank',[[9,1],[22,2],[18,2],[24,2],[15,2],[5,2],[17,5],[12,1],[11,4]],'death',[[9,1],[7,1]],'backup_current_branch',[[23,1]],'combining',[[22,1]],'invent',[[14,1],[12,2],[7,1]],'compress',[[24,1]],'201',[[8,2]],'implements',[[22,1],[8,1],[23,38]],'shine',[[11,1]],'newline',[[25,1]],'subforum',[[19,1]],'cons',[[10,1],[7,1],[14,2],[8,1],[9,1],[11,1]],'assumption',[[22,1],[14,1]],'neighborhood',[[15,1]],'tied',[[22,1],[4,1],[5,1]],'damage',[[12,2],[14,1]],'hastily',[[7,1]],'becomes',[[20,1],[22,6],[4,2],[16,1],[5,1],[17,2],[2,1],[7,2],[11,1],[6,3]],'corruptor',[[17,1]],'subpixels',[[14,2]],'would',[[22,4],[6,3],[15,1],[2,4],[9,1],[10,2],[5,2],[19,1],[23,3],[7,3],[14,3],[11,4],[12,3]],'hierarchy',[[22,2],[5,2]],'recorder',[[22,9],[23,7],[18,2],[12,1],[5,9]],'scheme',[[19,1],[7,1],[11,3],[5,1]],'divides',[[6,1]],'helpndoc',[[22,1],[11,1],[18,1],[6,1],[15,1],[2,1],[8,1],[9,1],[3,1],[25,1],[7,1],[1,1],[13,1],[16,1],[21,1],[17,1],[24,1],[4,1],[10,1],[5,1],[19,1],[0,1],[23,1],[14,1],[12,1],[20,1]],'setselection',[[18,3]],'exporting',[[3,1]],'340',[[6,2]],'entangle',[[14,1]],'new_set',[[18,2]],'read',[[22,2],[6,2],[18,2],[15,1],[8,1],[3,2],[25,1],[5,3],[23,3],[0,1],[7,10],[14,1],[12,2],[11,4]],'increases',[[6,1],[11,1],[22,1],[2,1],[9,1],[5,1]],'indeed',[[24,1],[7,1],[11,1],[6,1]],'drag_mode_selection',[[24,1]],'profit',[[6,1]],'goals',[[2,1],[1,1],[7,1],[12,1],[6,2]],'collision',[[9,1],[14,1]],'copying',[[19,1],[22,1],[23,8]],'offset',[[25,2]],'translate',[[12,1]],'connection',[[9,1]],'event',[[6,13],[20,17],[22,4],[16,1],[2,1],[8,3],[9,9],[4,1],[10,2],[5,1],[14,2],[7,1],[11,1],[12,2]],'joypad',[[22,30],[4,2],[18,10],[25,2],[23,2],[17,1],[7,3],[2,1],[11,6],[12,4]],'interpreter',[[22,4]],'using',[[6,6],[20,8],[18,2],[22,13],[16,2],[15,9],[17,6],[2,6],[8,7],[9,4],[24,1],[4,1],[10,4],[25,1],[5,12],[19,3],[23,1],[14,8],[1,1],[7,10],[11,5],[12,11]],'instead',[[11,3],[22,7],[18,1],[15,3],[17,1],[9,2],[24,1],[4,2],[5,6],[19,1],[23,1],[7,5],[14,1],[20,1],[6,4]],'induces',[[10,1]],'inconvenience',[[11,1]],'translucent',[[22,1]],'begins',[[22,2]],'detachment',[[9,1]],'separately',[[2,1],[14,1],[8,1],[11,2]],'years',[[6,1]],'affected',[[5,1],[22,3],[16,1],[9,1],[6,1]],'|commands|rldutsba|rldutsba|rldutsba|rldutsba|port2|',[[25,1]],'allow',[[22,3],[24,1],[10,2],[14,2],[11,1],[23,2]],'occasions',[[22,1]],'conclusion',[[22,1],[6,1]],'perfectly',[[8,1],[12,1],[6,1]],'experiment',[[11,2],[4,1],[10,1],[5,2],[2,1],[8,1],[9,1],[6,1]],'tough',[[8,1]],'task',[[7,2],[14,6],[16,1],[12,5],[6,5]],'easiest',[[20,1]],'worth',[[6,1]],'zeroth',[[17,1],[22,2],[4,1],[18,1],[11,1]],'inconveniences',[[12,1]],'per',[[22,1],[23,1],[10,1],[14,1],[18,7],[5,1]],'inspection',[[2,1]],'dozens',[[12,1]],'swapped',[[22,1]],'original',[[22,2],[6,1],[24,1],[7,1],[2,1],[11,2],[9,1]],'2013',[[22,1],[11,1],[18,1],[6,1],[15,1],[2,1],[8,1],[9,1],[3,1],[25,1],[7,1],[1,1],[13,1],[16,1],[21,1],[17,1],[24,1],[4,1],[10,1],[5,1],[19,1],[0,1],[23,1],[14,1],[12,1],[20,1]],'fourscore',[[12,1],[25,7]],'natural',[[20,1],[2,1],[12,1],[6,1]],'instance',[[23,17],[4,1],[2,1],[11,1],[6,1]],'prompting',[[12,2]],'dump',[[4,1],[12,1]],'older',[[2,1]],'precise',[[10,1],[4,1],[6,1]],'cycle',[[8,1]],'empty',[[22,7],[4,4],[18,1],[15,4],[23,2],[17,3],[19,1],[25,1],[11,3]],'accessed',[[3,1]],'modify',[[19,1],[4,1],[7,1],[12,5],[6,1]],'discomfort',[[4,1]],'contain',[[22,4],[24,1],[4,1],[15,1],[25,7],[14,1],[12,1],[6,3]],'tactic',[[6,1]],'current',[[6,27],[20,7],[18,12],[22,70],[16,8],[15,11],[17,7],[2,3],[8,14],[9,8],[3,2],[24,8],[10,8],[25,3],[5,20],[19,3],[23,26],[14,10],[7,11],[11,9],[12,11]],'show',[[22,2],[6,1],[10,2],[15,3],[23,1],[12,1],[11,2]],'adv',[[15,1]],'anytime',[[4,2],[5,1]],'romchecksum',[[25,1]],'allowing',[[12,2],[14,1],[10,1],[22,3],[16,1],[5,2],[2,2],[7,2],[8,2],[11,3],[6,1]],'but',[[6,23],[20,3],[22,41],[16,2],[15,1],[17,2],[2,11],[8,8],[9,10],[24,3],[4,12],[10,9],[25,1],[5,15],[19,2],[23,2],[14,6],[7,13],[11,18],[12,22]],'achieving',[[7,1]],'intent',[[12,1]],'adds',[[25,1]],'joysticks',[[23,1]],'backward',[[14,1]],'chooses',[[14,1]],'rate',[[5,1]],'meantime',[[5,1]],'fireball',[[22,5],[23,1],[16,1],[5,2]],'launched',[[12,1],[10,1],[2,1]],'home',[[22,1],[24,1],[16,3],[15,3],[5,2]],'forced',[[14,1],[6,2]],'simultaneously',[[22,1],[14,1],[2,1],[9,1],[20,2]],'throws',[[6,1]],'gives',[[22,1],[11,1]],'memo',[[25,1]],'level',[[22,6],[11,3],[6,16],[16,1],[2,3],[8,3],[4,3],[10,3],[25,2],[5,8],[7,4],[12,7],[20,2]],'autoscrolling',[[11,1]],'easily',[[20,1],[22,2],[4,1],[16,1],[5,1],[2,1],[14,1],[8,1],[12,1],[11,1]],'fully',[[23,1]],'copy',[[22,8],[16,1],[15,4],[17,1],[2,1],[8,2],[3,1],[5,3],[19,3],[23,2],[14,1],[7,4],[11,1],[12,7]],'columnset',[[23,1]],'states',[[22,4],[4,3],[25,1],[23,1],[5,1],[14,1],[12,1]],'border',[[22,2],[24,1]],'flying',[[9,1]],'lines',[[6,1],[22,28],[4,7],[25,2],[5,2],[17,2],[12,2],[11,8]],'remain',[[22,4],[12,1],[6,1]],'painted',[[22,2]],'happen',[[20,1],[2,1],[15,1],[5,1]],'reorder',[[22,1]],'processed',[[4,2]],'pointed',[[22,3],[15,1],[7,1]],'scrolling',[[6,1],[22,8],[4,1],[16,4],[15,4],[5,1],[19,1],[23,5],[12,2],[9,1]],'yes',[[22,2],[24,4],[12,1]],'asterisk',[[3,1],[22,1],[11,1],[12,1]],'taseditor_lua',[[22,1],[23,1]],'reverse',[[18,1]],'adequate',[[23,1],[6,3]],'replay',[[11,1],[12,1],[4,1],[10,2],[20,1],[5,2],[19,1],[23,2],[7,3],[14,1],[9,3],[6,1]],'corruption',[[14,1]],'represent',[[5,2],[22,1],[14,1],[25,3],[6,1]],'fact',[[11,1],[6,3],[22,1],[24,1],[23,1],[7,1],[14,1],[12,2],[20,1]],'reminding',[[11,1]],'toolbox',[[3,1],[22,1],[4,1],[16,1],[5,4],[14,6],[12,1]],'joypad1data',[[12,3]],'habitual',[[7,1],[6,1]],'time',[[6,16],[20,11],[18,3],[22,23],[16,4],[15,2],[17,3],[2,6],[8,6],[9,12],[4,5],[10,8],[5,25],[23,6],[0,1],[7,6],[13,1],[14,14],[11,11],[12,10]],'plug',[[19,1],[5,1]],'acceptable',[[6,1]],'feasible',[[14,1]],'slow',[[10,1],[15,1],[5,2],[2,1],[14,2],[8,1],[9,1]],'neighbors',[[22,1],[14,1]],'mimic',[[14,1]],'gathered',[[6,1]],'our',[[6,1],[20,1],[2,1]],'upload',[[2,1]],'containers',[[14,1]],'numeration',[[4,1]],'medium',[[14,2]],'targeting',[[22,1]],'eliminate',[[14,1],[6,1]],'selectall',[[24,1]],'voiced',[[2,1]],'detected',[[19,1],[22,2],[9,2],[20,2]],'majority',[[22,1],[7,2],[11,1],[6,1]],'bookmark8',[[17,1]],'taseditor',[[22,43],[11,36],[18,57],[6,3],[15,3],[2,14],[8,3],[9,5],[3,7],[25,10],[7,9],[1,1],[13,1],[16,1],[21,5],[17,13],[24,39],[4,10],[10,3],[5,14],[19,5],[0,2],[23,23],[14,6],[12,26],[20,2]],'individually',[[22,1],[6,2]],'borrow',[[6,1]],'inputted',[[14,1]],'perform',[[4,1],[12,1]],'modifies',[[22,1]],'настройки',[[22,1]],'redrawing',[[23,8]],'freeze',[[5,1]],'third',[[5,2],[22,2],[7,1],[12,1],[6,1]],'cuts',[[14,1],[6,1]],'keyboard',[[22,4],[4,3],[15,7],[5,10],[19,1],[23,1],[2,2],[7,3],[11,5]],'submits',[[12,1]],'invoked',[[19,1]],'commenting',[[12,1]],'filling',[[22,2]],'hence',[[22,1]],'measuring',[[6,1],[14,2],[5,1]],'converting',[[22,2]],'methodology',[[0,1],[7,2],[1,1],[14,3],[20,2]],'viewpoint',[[2,1]],'stretch',[[22,5],[4,1],[15,1],[5,1]],'image',[[22,3],[10,1],[4,4],[14,1],[20,1],[6,1]],'successful',[[20,1],[10,2],[7,2],[14,1],[8,2],[9,2],[6,1]],'fined',[[2,1]],'actively',[[24,1]],'rethink',[[7,1],[6,1]],'play',[[14,2],[20,1],[24,3],[16,1],[15,2],[5,5],[2,3],[7,3],[8,1],[11,1],[6,5]],'pipes',[[6,3]],'interesting',[[20,1],[10,1],[2,1],[12,1],[6,1]],'automate',[[18,1],[5,1]],'zero',[[22,3],[18,2],[2,1],[6,3]],'recall',[[11,3]],'smaller',[[14,1],[22,1],[6,1]],'found',[[22,8],[11,1],[18,2],[6,4],[3,1],[24,1],[4,2],[10,1],[5,1],[19,2],[23,2],[7,1],[12,3],[20,4]],'accumulated',[[12,1]],'phenomenon',[[6,1]],'arranged',[[22,1]],'dirty',[[12,1]],'sonic',[[14,1]],'loop',[[14,2],[12,3],[7,1]],'attempt',[[24,3],[7,1],[11,1],[5,1]],'responsive',[[4,1]],'activate',[[15,1],[4,3],[12,1]],'signal',[[22,2],[24,1]],'interconnection',[[9,1],[10,1]],'evolutionary',[[7,1]],'mouseover',[[23,4]],'optionally',[[15,1],[23,1]],'instantly',[[20,1],[22,3],[10,1],[18,1],[5,4],[7,1],[2,1],[14,1],[12,4],[11,1]],'works',[[6,1],[24,2],[10,2],[16,2],[15,1],[5,1],[17,1],[14,1],[12,1],[11,3]],'point',[[22,4],[11,4],[6,3],[16,1],[15,5],[2,1],[8,1],[4,3],[10,1],[23,6],[7,2],[12,1],[20,1]],'attention',[[22,3],[24,1],[10,2],[5,1],[2,1],[14,1],[11,1]],'expose',[[6,1]],'messages',[[23,2],[24,1],[4,1],[12,2],[11,1]],'conjecture',[[7,1]],'rollback',[[23,3]],'external',[[6,1],[22,1],[25,1],[23,2],[14,1],[7,1],[2,1],[8,1],[12,1]],'insertion',[[22,1],[18,1],[23,1]],'human',[[22,1],[14,2],[2,1],[20,2],[6,3]],'earlier',[[6,3],[22,3],[20,1],[11,2]],'timesaver',[[14,3]],'automatism',[[12,1]],'understanding',[[11,1],[6,1]],'second',[[22,14],[6,3],[18,5],[2,1],[9,1],[4,1],[10,2],[5,1],[19,1],[23,1],[14,1],[11,4],[12,7]],'purpose',[[22,1],[14,1],[11,1],[5,2]],'wrote',[[11,1],[12,1]],'specs',[[14,6]],'resource',[[22,1],[23,1]],'shortcuts',[[19,1],[2,1]],'arrow',[[22,21],[24,1],[4,2],[15,4],[5,1],[14,1],[20,4],[9,5]],'memorizes',[[22,2]],'still',[[6,4],[22,4],[18,2],[17,1],[2,5],[8,1],[9,3],[24,1],[4,1],[10,2],[5,1],[19,1],[7,3],[11,2],[12,5]],'latter',[[11,1],[14,1]],'half',[[5,4],[17,2],[18,1],[22,5],[15,1],[6,5]],'bad',[[12,1],[6,1]],'customize',[[19,1],[22,3],[14,1],[11,1]],'watched',[[22,2]],'tested',[[20,1],[5,1]],'could',[[12,1],[22,3],[4,1],[5,2],[7,1],[14,1],[8,1],[9,1],[6,1]],'tinted',[[22,1]],'deselected',[[22,1]],'reselect',[[15,1],[23,1]],'addresses',[[12,3]],'workflow',[[22,2],[11,1]],'sounded',[[22,1]],'hot',[[19,1],[22,11],[4,2],[11,7],[23,7]],'videos',[[14,2],[6,1]],'delay',[[14,1],[23,1],[7,1]],'arcade',[[15,1]],'parsed',[[25,2]],'viewer',[[15,2]],'deeper',[[10,1]],'micro',[[6,1]],'foresight',[[6,1]],'sorted',[[18,2]],'documenting',[[11,1],[2,1]],'tasing',[[12,6],[20,5],[18,1],[22,7],[16,1],[15,1],[2,24],[8,7],[9,8],[3,1],[4,1],[10,8],[5,10],[19,2],[0,3],[23,4],[7,16],[1,5],[14,14],[11,7],[6,24]],'rules',[[7,1],[12,1],[2,6]],'called',[[6,1],[22,6],[4,3],[18,5],[16,1],[5,1],[14,3],[12,2],[11,1]],'parameters',[[22,2],[23,1]],'endeavors',[[19,1]],'lost',[[22,1],[8,1]],'indefinite',[[6,1]],'send',[[22,1],[24,1],[16,2],[15,6],[5,4],[23,2],[12,1],[11,1]],'order',[[6,8],[22,15],[18,2],[2,3],[8,4],[9,7],[24,3],[4,2],[10,1],[25,3],[23,1],[19,1],[14,1],[7,1],[11,5],[12,6]],'removes',[[24,1],[18,1],[5,2]],'draws',[[19,1],[24,1],[11,1],[12,2]],'intuition',[[14,1],[6,2]],'invalid',[[18,2]],'docs',[[0,1],[12,1]],'reselectclipboard',[[24,1]],'registered',[[22,2],[10,1],[18,10],[15,1],[23,2],[17,1],[12,2]],'extra',[[19,1],[11,1],[14,1]],'anywhere',[[17,3],[22,1],[4,2],[16,3],[15,3]],'kept',[[6,1],[11,1],[5,3]],'virtuosity',[[8,1]],'observed',[[14,1]],'professionnelle',[[2,1]],'accustom',[[8,2]],'beat',[[20,3],[22,1],[2,1],[12,1],[5,1]],'readability',[[2,2]],'glow',[[22,1]],'disposal',[[5,1]],'thousand',[[6,3]],'newcomer',[[2,1]],'curent',[[23,1]],'dontknow',[[22,1]],'width',[[22,14]],'commented',[[21,1],[12,1]],'stop',[[22,2],[24,2],[4,1],[10,1],[15,1],[5,2],[2,1],[9,1],[6,1]],'keypad',[[15,4]],'dead',[[14,1]],'best',[[6,9],[20,14],[10,5],[22,1],[24,1],[7,3],[14,6],[8,6],[12,1],[9,7]],'list',[[22,29],[18,5],[16,4],[15,8],[21,1],[17,4],[24,1],[4,2],[5,14],[19,1],[23,14],[13,1],[12,2],[11,2]],'reveal',[[7,1],[2,1],[14,1],[6,2]],'kinds',[[22,1]],'powered',[[20,1]],'segments',[[6,19],[20,7],[22,2],[16,3],[15,1],[2,1],[8,3],[9,3],[10,2],[5,2],[14,2],[7,4],[11,1],[12,7]],'designers',[[6,1]],'flexible',[[22,1]],'listview',[[22,3]],'accounted',[[11,1]],'dipswitch',[[24,1]],'learns',[[7,1]],'insert#4',[[17,1]],'newbie',[[6,1],[7,1],[2,2]],'unconventional',[[2,1]],'put',[[3,1],[11,1],[4,5],[10,1],[12,2],[21,1],[22,3],[5,1],[7,1],[8,1],[9,1],[6,1]],'effectively',[[24,1],[9,1]],'flaws',[[7,1],[6,1]],'battles',[[12,1]],'convert',[[12,2]],'local',[[3,1]],'generator',[[24,1],[0,1],[18,1],[25,1],[12,1],[5,1]],'port2',[[24,1],[25,3]],'pasting',[[12,1]],'blinking',[[5,3]],'eight',[[25,1]],'stage',[[22,1],[6,3]],'psychological',[[2,1]],'shift',[[9,5],[22,11],[4,4],[10,4],[16,13],[15,25],[5,16],[17,10],[11,3],[12,1]],'getselection',[[12,1],[18,2]],'composed',[[5,1]],'paste',[[22,1],[15,3],[5,2],[17,5],[19,1],[23,1],[7,1],[2,1],[8,1],[12,3]],'tick',[[22,1]],'coordinates',[[23,2],[12,2],[14,4]],'one',[[6,12],[20,5],[18,7],[22,32],[16,1],[15,3],[17,17],[2,4],[8,7],[9,4],[3,1],[24,4],[4,11],[10,3],[5,14],[19,1],[23,3],[14,9],[7,7],[11,4],[12,12]],'holding',[[11,1],[22,5],[10,1],[15,3],[5,2],[19,1],[2,1],[7,1],[9,4],[6,3]],'cross',[[22,1],[4,1]],'decided',[[19,1]],'counters',[[12,1]],'credible',[[2,1]],'formed',[[22,1]],'stumble',[[6,1]],'ignored',[[25,2]],'switching',[[22,1],[7,2],[2,1],[8,1],[11,1],[15,1]],'pointless',[[11,1]],'markers_manager',[[23,2]],'picture',[[3,1],[11,3],[4,4],[10,1],[12,2],[5,5],[2,1],[9,1],[6,3]],'topics',[[22,1]],'synchronously',[[10,1]],'undo',[[22,5],[6,1],[18,1],[15,3],[17,1],[2,1],[8,2],[3,1],[24,3],[4,1],[5,4],[23,6],[12,1],[11,10]],'strong',[[2,1]],'exits',[[22,1]],'trivial',[[6,1],[4,1],[2,1]],'subtasks',[[14,1],[6,1]],'self',[[4,1]],'aesthetic',[[22,1]],'observations',[[6,1]],'program',[[20,1],[22,7],[21,5],[15,1],[2,4],[3,6],[24,1],[4,1],[10,1],[5,1],[19,4],[0,2],[14,3],[1,3],[11,3],[12,1]],'sites',[[1,1],[8,1]],'single',[[6,3],[22,11],[16,2],[15,1],[21,1],[2,1],[9,4],[24,1],[4,5],[10,1],[5,3],[19,1],[23,18],[7,1],[14,2],[11,5],[12,4]],'cell',[[17,8],[22,30],[4,6],[16,5],[15,10],[11,3]],'directly',[[22,3],[7,2],[14,1],[12,1],[6,2]],'glossary',[[3,1],[0,1],[14,3],[13,1],[12,1]],'click',[[22,26],[16,15],[15,27],[17,34],[2,1],[9,1],[24,6],[4,26],[10,1],[5,21],[19,6],[23,2],[12,11],[11,8]],'pictures',[[11,1]],'organize',[[14,1]],'respects',[[24,1]],'new',[[6,17],[20,24],[18,4],[22,20],[16,2],[15,1],[17,15],[2,6],[8,5],[9,6],[3,1],[24,3],[4,4],[10,3],[25,1],[5,9],[19,5],[23,10],[7,3],[1,1],[14,1],[11,14],[12,8]],'though',[[19,1],[22,1],[24,2],[2,1],[12,2],[6,2]],'laws',[[14,1]],'assume',[[7,1],[9,1],[2,1]],'straightforward',[[12,1],[7,1]],'from',[[6,21],[22,64],[18,3],[16,9],[15,26],[21,1],[17,16],[2,11],[8,9],[9,7],[3,2],[24,14],[4,11],[10,5],[25,3],[5,26],[19,3],[23,32],[14,7],[7,15],[11,16],[12,17]],'gaming',[[2,1],[8,1],[11,1],[6,1]],'internet',[[12,1]],'much',[[12,3],[22,2],[4,1],[10,2],[24,1],[23,2],[2,2],[7,3],[11,5],[6,6]],'method',[[6,2],[22,2],[16,4],[2,3],[8,12],[9,11],[4,1],[10,18],[5,2],[14,1],[7,10],[11,2],[12,4]],'reloads',[[2,1]],'index',[[4,1],[18,11]],'400',[[11,1]],'turns',[[24,1],[4,1],[5,1],[2,1],[7,1],[14,1],[11,1],[6,1]],'handles',[[23,1]],'initial',[[22,4],[10,2],[7,1],[14,1],[12,1],[6,1]],'scope',[[6,1]],'underlying',[[22,1]],'enabled',[[22,1],[4,1],[10,1],[16,2],[5,1],[19,1],[11,30],[9,1]],'prepared',[[5,1],[22,1],[7,1],[6,1]],'outcome',[[7,6],[14,1],[8,2],[9,6],[6,1]],'markernum',[[17,1]],'memorized',[[22,1],[4,1]],'documents',[[16,1]],'centering',[[23,1]],'sends',[[22,5],[24,2],[18,4],[23,7]],'critical',[[11,1],[6,2]],'believes',[[22,1]],'oldest',[[23,1]],'temporary',[[8,1],[20,1]],'frequently',[[12,1]],'request',[[24,1],[18,9]],'manual',[[22,1],[6,1],[18,4],[15,2],[4,2],[5,1],[19,3],[0,3],[23,2],[7,1],[14,2],[12,2],[11,1]],'cursory',[[3,1],[4,1]],'segment',[[6,76],[20,11],[22,20],[16,20],[15,1],[2,1],[8,28],[9,34],[4,2],[10,27],[5,18],[14,7],[13,1],[7,21],[11,7],[12,21]],'imagine',[[12,1]],'uncommon',[[6,1]],'successfully',[[6,1],[22,1],[24,1],[23,1],[17,2],[7,1],[8,1],[20,1],[12,3]],'actions',[[12,3],[20,1],[4,1],[10,1],[22,1],[15,2],[5,2],[2,3],[7,1],[14,3],[11,2],[6,3]],'shouting',[[14,1]],'branch1',[[17,4]],'inspiration',[[7,1]],'replaces',[[22,1]],'priorities',[[4,1],[14,1]],'5000',[[24,1]],'producing',[[14,1]],'joypads',[[19,1],[22,5],[11,2],[23,1]],'throwing',[[22,1]],'rapidly',[[5,5]],'playing',[[11,5],[14,2],[20,4],[22,1],[24,3],[5,6],[0,1],[2,2],[7,3],[8,7],[9,1],[6,8]],'else',[[10,1],[14,2],[8,1],[11,1],[15,1]],'plastic',[[4,1]],'confirmation',[[12,1]],'characters',[[22,1],[25,2]],'taseditor_project',[[23,1]],'upper',[[22,4],[4,4],[16,2],[15,3],[5,5],[17,1],[19,1],[23,4],[14,1],[12,1],[11,3]],'menu',[[3,3],[22,3],[4,2],[24,7],[15,8],[5,6],[17,18],[19,9],[23,3],[12,3],[11,4]],'going',[[6,4],[12,4],[4,2],[10,1],[22,1],[16,2],[5,1],[11,2],[9,2]],'retreat',[[8,1],[7,1]],'covers',[[11,1]],'mapping',[[11,1]],'piano_rolx',[[25,1]],'macros',[[2,1]],'buttonpresses',[[22,2],[6,3],[15,1],[17,9],[9,1],[4,6],[10,2],[5,11],[19,3],[23,2],[7,4],[11,8],[12,2]],'loopholes',[[2,1]],'appropriate',[[22,8],[18,2],[14,1],[2,1],[5,1]],'visualize',[[5,1]],'others',[[3,1],[16,1],[12,1],[20,1]],'emulator',[[6,1],[22,18],[18,2],[16,4],[15,8],[21,1],[17,5],[2,3],[9,4],[3,4],[24,10],[4,8],[10,4],[25,5],[5,14],[19,1],[23,24],[7,3],[14,4],[11,13],[12,5]],'discuss',[[20,1]],'procedure',[[23,1]],'interprets',[[11,1],[7,1]],'branch8',[[17,2]],'moments',[[22,1],[7,2],[2,1],[8,1],[12,1],[6,3]],'romfilename',[[25,1]],'slows',[[22,1]],'existent',[[7,1]],'tried',[[11,1]],'ticks',[[15,1]],'actually',[[12,2],[10,1],[18,1],[15,1],[5,1],[17,1],[2,1],[7,3],[11,4],[6,1]],'honestly',[[12,1]],'registerafter',[[12,2]],'finds',[[12,1],[14,1]],'that',[[6,35],[20,6],[18,10],[22,65],[16,5],[15,9],[17,8],[2,10],[8,9],[9,12],[3,4],[24,16],[4,22],[10,7],[25,8],[5,25],[19,5],[23,14],[7,22],[13,1],[14,15],[11,24],[12,43]],'document',[[22,1],[6,2]],'presses',[[9,1],[6,1],[10,1],[18,1],[22,3],[5,2],[23,1],[14,1],[11,1],[12,3]],'interval',[[22,1],[12,3],[7,1]],'region',[[15,2],[23,4]],'reflecting',[[23,1]],'disregarded',[[22,1]],'presented',[[1,1],[5,1]],'variable',[[22,2],[12,1],[25,2]],'materials',[[20,1]],'while',[[6,5],[20,1],[18,2],[22,10],[15,7],[2,2],[8,7],[9,2],[3,1],[24,8],[4,6],[10,2],[5,5],[19,1],[23,1],[14,3],[7,3],[11,11],[12,8]],'invert',[[22,1]],'win32',[[21,1]],'pal',[[24,1],[18,1],[25,1]],'heart',[[7,1]],'usefulness',[[14,1]],'triangle',[[22,1],[24,1],[4,1]],'criterion',[[22,2],[10,2],[7,2],[14,2],[8,2],[9,3],[6,12]],'beginner',[[19,1],[0,1],[14,1],[1,2]],'move',[[6,3],[20,1],[18,2],[22,8],[16,13],[15,10],[2,2],[9,5],[3,1],[24,1],[4,3],[10,1],[5,4],[19,1],[23,1],[14,2],[11,1],[12,1]],'perfect',[[20,2],[10,1],[7,3],[12,1],[6,11]],'promising',[[22,1],[9,1],[20,1]],'deploy',[[23,1]],'inputlogs',[[23,2]],'supposed',[[5,1],[7,3],[14,1],[20,5],[6,3]],'fine',[[19,1]],'hex',[[15,1],[2,1]],'mathematical',[[12,1]],'focus',[[5,1],[22,1],[10,1],[23,1],[24,1],[6,4]],'accomplishes',[[6,1]],'guided',[[22,1]],'machine',[[15,1]],'focused',[[22,1],[24,1],[2,1]],'produce',[[25,1],[7,2]],' this',[[19,1]],'5th',[[4,1]],'bitmap',[[22,1]],'marker',[[6,5],[20,4],[18,10],[22,35],[16,15],[15,14],[17,57],[9,6],[3,1],[4,20],[5,10],[19,2],[23,9],[14,2],[12,7],[11,19]],'glitches',[[6,1]],'rides',[[5,1]],'darker',[[22,1],[11,1]],'pad',[[4,4],[5,1]],'example',[[6,11],[20,3],[18,2],[22,16],[2,2],[8,4],[9,5],[24,2],[4,7],[10,4],[25,2],[5,9],[19,1],[23,1],[14,3],[7,3],[11,8],[12,18]],'imposes',[[22,1]],'deselect',[[4,1],[15,1]],'subsegments',[[8,1],[20,1],[6,3]],'only',[[6,12],[20,6],[18,5],[22,29],[16,3],[15,7],[21,1],[17,2],[2,7],[8,6],[9,5],[24,5],[4,1],[10,8],[5,10],[19,2],[23,3],[14,5],[7,12],[11,17],[12,14]],'avert',[[7,1]],'negative',[[18,4]],'multitracking',[[22,2],[15,2],[5,2],[23,2],[2,1],[14,1],[8,1],[11,3]],'potential',[[9,1],[6,3]],'investigation',[[12,1]],'lengthy',[[19,1]],'expanding',[[11,1],[14,1]],'roulette',[[7,1]],'hundreds',[[11,1],[12,1]],'branch4',[[17,2]],'appear',[[6,2],[22,7],[18,1],[16,1],[17,2],[2,2],[9,1],[24,2],[4,3],[5,5],[19,1],[7,1],[14,3],[11,6],[12,4]],'complicated',[[6,1],[12,1],[2,1]],'coincides',[[22,1]],'files',[[3,1],[20,1],[24,3],[25,3],[5,1],[19,1],[23,4],[2,5],[1,1],[14,2],[12,4],[11,4]],'correction',[[7,4]],'surrounding',[[15,1]],'polling',[[14,2]],'fell',[[8,1],[5,1]],'synchronization',[[24,1]],'tasks',[[20,1],[10,1],[14,2],[12,3],[6,3]],'filter',[[22,1],[24,1],[10,1],[12,1],[9,1]],'unprohibited',[[14,1]],'compactly',[[17,1]],'snapshots',[[23,3]],'boss',[[12,5]],'poweron',[[18,1]],'truncation',[[17,1],[22,6]],'plans',[[5,1],[6,1],[2,1]],'shot',[[20,1],[4,1],[9,2]],'selections',[[22,3],[23,2]],'speedrun',[[6,5],[2,1],[7,1],[14,5],[20,1],[5,1]],'decreased',[[9,1]],'broken',[[6,1]],'ran',[[6,1]],'optimization',[[7,2],[14,2],[12,2],[6,3]],'expressions',[[12,1]],'launches',[[23,2]],'hotkeys',[[5,2],[15,10],[23,1],[24,3],[11,11],[9,3]],'costs',[[11,1],[12,1]],'requests',[[12,1],[18,6]],'previous',[[6,7],[20,3],[22,12],[16,7],[15,5],[8,3],[9,5],[24,1],[4,2],[10,4],[5,2],[23,1],[7,5],[14,2],[11,3],[12,4]],'vague',[[23,1],[4,1],[12,1],[6,1]],'accuracy',[[2,1]],'alternation',[[12,1],[9,1],[11,2]],'emulators',[[19,1],[22,2],[18,1],[14,4],[8,1],[11,1]],'minimize',[[14,1]],'bookmark6',[[17,1]],'reducing',[[22,1],[14,1],[2,1],[5,1]],'ineffectively',[[2,1]],'compresses',[[11,1],[23,1]],'joining',[[2,1]],'result',[[20,4],[6,4],[22,4],[17,4],[2,4],[8,8],[9,11],[24,1],[10,12],[19,1],[14,2],[7,7],[11,4],[12,5]],'suitable',[[10,2],[6,2]],'future',[[6,1],[22,7],[10,1],[14,1],[8,1],[11,1],[9,1]],'rarefication',[[11,1]],'ratio',[[9,1]],'combines',[[22,2],[11,2]],'receive',[[23,1],[4,1],[7,1]],'print',[[19,1]],'within',[[9,2],[6,4],[4,1],[22,1],[16,2],[23,2],[2,1],[14,2],[11,1],[12,1]],'devised',[[2,1]],'eyes',[[3,1]],'quit',[[5,1]],'exhaustive',[[13,1],[14,1]],'recordings',[[19,1],[22,1],[11,3],[5,1]],'bitwise',[[18,1]],'possible',[[6,11],[20,5],[22,6],[16,1],[17,1],[2,3],[9,2],[24,3],[10,2],[5,4],[19,2],[23,1],[14,9],[13,1],[12,2],[11,3]],'gigantic',[[20,1]],'footage',[[14,1],[5,1]],'displaying',[[3,1],[22,4],[24,1],[14,1],[15,3],[5,2]],'handy',[[12,2],[23,1],[2,1],[11,1],[5,3]],'feos',[[0,2]],'clearinputchanges',[[18,2]],'depends',[[22,5],[25,1],[10,1],[16,1],[9,2],[5,2]],'templates',[[3,1],[2,1]],'impede',[[6,1]],'solving',[[10,1],[7,2],[14,1],[12,1],[6,1]],'functional',[[11,2]],'unboundedness',[[14,1]],'unfeasible',[[20,2],[23,1]],'mental',[[16,1],[2,1]],'affect',[[22,3],[4,2],[2,1],[16,1],[11,5]],'lag',[[22,30],[4,1],[15,3],[23,5],[17,7],[2,3],[14,8],[8,1],[11,16]],'action',[[12,1],[15,1],[7,1],[8,1],[9,1],[5,1]],'activities',[[2,1]],'unpauses',[[7,1]],'modes',[[23,1],[7,1]],'eraser',[[4,1]],'contact',[[10,1]],'shade',[[22,4],[11,1]],'consisting',[[22,1],[12,1]],'branch5',[[17,2]],'reference',[[4,1],[5,1],[23,1],[0,1],[13,2],[12,1],[11,1]],'remained',[[2,1]],'recalculate',[[12,1]],'tables',[[23,1]],'explains',[[1,1]],'animation',[[23,3],[6,1]],'indicating',[[25,1]],'intricacies',[[8,1],[10,1]],'wearing',[[20,1]],'maximum',[[5,3],[12,1],[22,7],[14,2],[11,7],[6,2]],'binary',[[12,3],[25,5]],'2005',[[22,1]],'programmer',[[14,1]],'napkin',[[22,1]],'technique',[[8,1]],'trying',[[22,1],[10,1],[7,1],[2,1],[11,1]],'done',[[22,10],[18,8],[15,3],[23,1],[17,1],[19,2],[7,2],[2,1],[8,2],[11,6],[12,1]],'intend',[[6,1]],'exempts',[[14,1]],'importing',[[3,1],[22,1]],'gameplay',[[6,3],[4,1],[2,4],[7,1],[5,2]],'paid',[[6,1],[2,1]],'getting',[[12,1]],'bit',[[22,1],[24,2],[18,22],[7,1],[9,2],[25,20]],'encouraged',[[24,1],[10,1]],'publish',[[12,3],[2,1]],'analog',[[14,1],[22,3],[5,7]],'sessions',[[6,1]],'tyres',[[20,1]],'seeing',[[0,1],[10,1],[7,2],[9,1],[5,1]],'undefined',[[17,3]],'explanations',[[19,1]],'branch',[[22,13],[24,1],[18,1],[15,5],[5,4],[17,8],[23,2],[7,1],[14,3],[11,10]],'conventional',[[1,1],[6,1]],'astounding',[[7,1]],'basic',[[22,2],[7,2],[14,1],[21,1],[6,2]],'statement',[[7,1],[6,1]],'diversify',[[12,1]],'solved',[[12,1],[14,1]],'module',[[25,6]],'editor',[[22,10],[18,53],[21,3],[15,9],[17,11],[2,7],[8,1],[3,4],[24,5],[4,2],[25,2],[5,4],[19,3],[0,6],[23,21],[14,2],[1,1],[7,1],[12,6],[11,6]],'element',[[22,1],[24,2],[4,1],[15,1],[5,1]],'subsequent',[[22,2],[7,1]],'emancipates',[[2,1]],'multi',[[22,2],[14,2]],'treated',[[18,1]],'cannot',[[24,1],[25,1],[18,1],[20,1],[15,1]],'disadvantageous',[[6,1]],'rectangle',[[22,1],[12,1]],'perhaps',[[22,1]],'association',[[22,1],[9,2],[10,2]],'took',[[22,1],[2,1]],'imitates',[[11,1]],'plain',[[25,1]],'seem',[[7,2],[14,1],[9,1],[6,2]],'resumption',[[4,1]],'assigning',[[14,1]],'outsider',[[7,1],[2,1]],'accessible',[[11,1]],'tenfold',[[5,1]],'waiting',[[22,1],[14,2],[11,1],[5,1]],'setting',[[22,6],[4,3],[15,3],[5,2],[23,5],[11,3],[6,3]],'error',[[24,3],[14,1],[25,1],[23,12]],'radiobutton',[[22,2],[11,1]],'ram',[[3,1],[6,2],[20,1],[22,4],[15,2],[23,3],[14,1],[12,5],[11,1]],'analysis',[[3,1],[2,2],[14,1],[16,1],[9,1],[12,1]],'harder',[[2,2]],'labeled',[[16,1],[5,1]],'how',[[6,8],[22,3],[18,1],[2,4],[8,2],[9,2],[4,1],[10,1],[5,5],[19,5],[7,3],[11,4],[12,6]],'sounding',[[5,1]],'texts',[[22,1],[23,1],[6,1]],'hint',[[12,1]],'word',[[3,1],[5,1],[17,1],[25,1],[12,6],[6,1]],'fm2s',[[25,1]],'see',[[6,8],[20,1],[22,17],[16,9],[15,6],[2,3],[8,3],[9,5],[4,5],[10,3],[5,12],[19,2],[23,2],[14,4],[7,5],[11,5],[12,3]],'finding',[[22,1],[16,2],[23,1],[14,1],[2,1],[20,2],[6,4]],'units',[[14,1]],'minute',[[11,2],[9,1],[6,1]],'staying',[[2,1]],'tasedit',[[22,1],[23,2]],'alt',[[22,8],[24,1],[16,1],[15,8],[23,1],[17,5],[12,4],[11,1]],'crash',[[24,1]],'extremely',[[7,1],[9,1],[6,1]],'obstructing',[[11,1]],'isolated',[[19,1]],'possibility',[[22,1],[10,1],[12,1],[9,2]],'initially',[[6,1]],'testing',[[17,2],[0,1],[14,1],[8,1],[20,1],[6,3]],'are',[[6,18],[14,16],[18,4],[20,12],[22,74],[16,2],[15,12],[17,11],[2,7],[8,9],[9,11],[3,3],[24,8],[4,17],[10,4],[25,17],[5,20],[19,8],[23,2],[7,15],[1,1],[13,1],[11,21],[12,29]],'game',[[6,36],[20,11],[22,26],[16,3],[15,4],[2,26],[8,13],[9,14],[3,3],[4,13],[10,15],[25,1],[5,23],[19,1],[23,4],[14,40],[7,16],[11,13],[12,15]],'unsaved',[[3,1],[23,2],[24,1],[11,1],[12,1]],'press',[[6,4],[22,10],[16,15],[15,6],[17,18],[2,1],[8,2],[9,5],[24,1],[4,5],[10,5],[5,12],[19,1],[7,1],[11,18],[12,8]],'simulating',[[4,1]],'scalable',[[23,1]],'kills',[[2,2]],'decide',[[4,1],[8,1],[11,2],[20,2]],'discovered',[[14,1]],'typically',[[22,1]],'fonts',[[23,1]],'bookmarked',[[15,6],[16,3],[22,14],[8,1],[11,4],[5,4]],'paranoid',[[8,1]],'usb',[[11,1],[5,1]],'last',[[22,15],[6,3],[16,1],[15,4],[8,1],[9,2],[24,1],[4,2],[10,2],[25,2],[5,4],[23,6],[7,1],[11,5],[12,1]],'hurry',[[9,2],[6,1]],'losses',[[6,2]],'marioheight',[[12,3]],'mindset',[[6,1]],'situations',[[12,2],[20,1],[22,2],[7,1],[11,1],[6,1]],'inexactitude',[[19,1]],'varies',[[6,1]],'consolidate',[[4,1],[11,1]],'dependencies',[[14,1],[6,1]],'starting',[[22,5],[18,1],[16,1],[15,2],[17,2],[9,1],[3,1],[24,1],[4,1],[10,1],[5,3],[7,2],[14,2],[11,2]],'reason',[[22,1],[2,2]],'arrays',[[20,2]],'virtual',[[17,4],[22,18],[23,6],[2,1],[15,3],[11,7]],'superimposing',[[8,1]],'inputlog',[[23,6]],'alternating',[[9,1],[22,1],[10,1],[5,1],[17,1],[11,1],[12,1]],'forum',[[19,1],[22,1]],'into',[[6,14],[20,4],[22,11],[16,1],[15,3],[21,1],[17,7],[2,2],[8,4],[9,4],[3,1],[24,3],[4,3],[10,3],[25,3],[5,7],[19,3],[23,6],[14,4],[7,5],[11,5],[12,5]],'replacement',[[22,1],[14,1]],'scrolls',[[22,2],[16,4],[11,3],[23,2]],'slightly',[[5,1],[22,1],[8,1],[6,1]],'replaced',[[22,2],[24,1],[4,1],[5,1],[7,1],[14,1],[12,1],[11,1]],'discrepancy',[[14,1],[19,1],[5,1]],'sstart',[[25,1]],'multiple',[[5,2],[22,4],[2,1]],'located',[[22,3],[4,3],[10,1],[18,1],[16,1],[5,4],[7,1],[12,1],[20,3]],'success',[[25,1],[7,1],[20,1],[6,1]],'splicer',[[22,1],[23,2],[5,5]],'resembling',[[12,1]],'strives',[[14,1]],'matching',[[22,1]],'hierarchical',[[22,1]],'cells',[[22,25],[4,4],[15,2],[11,1]],'comparing',[[20,12],[22,2],[23,3],[8,2],[11,1],[6,1]],'bots',[[11,1],[14,5]],'registration',[[22,1]],'hiding',[[22,1]],'helping',[[11,1],[5,1]],'console',[[3,1],[22,2],[14,2],[12,3],[15,1]],'estimate',[[22,3],[8,1],[5,2]],'stream',[[6,1],[2,2],[7,1],[25,8],[5,1]],'transformation',[[2,2]],'history',[[20,1],[22,43],[18,2],[16,3],[15,8],[17,4],[2,1],[8,1],[9,4],[10,1],[25,6],[5,7],[23,10],[7,1],[12,7],[11,11]],'inventiveness',[[6,2]],'stuck',[[6,1]],'delays',[[14,1]],'enables',[[11,1]],'supporting',[[22,2],[24,1]],'rightclicks',[[24,1]],'what',[[19,1],[4,1],[8,1],[12,1],[6,1]],'consider',[[6,4],[12,1],[10,2],[7,2],[8,1],[11,1],[9,1]],'set',[[6,6],[22,25],[18,4],[16,6],[15,12],[17,10],[2,2],[9,2],[24,3],[4,12],[10,3],[25,1],[5,15],[19,2],[23,5],[7,1],[14,2],[11,17],[12,4]],'writers',[[6,1]],'raw',[[22,1],[2,1]],'reloading',[[7,1]],'height',[[22,9],[9,1],[2,1]],'parts',[[3,1],[4,1],[15,1],[25,1],[7,1],[14,1],[12,1],[6,5]],'flash',[[22,1],[4,1],[7,1],[10,2],[9,1],[5,1]],'promptly',[[20,1]],'macro1',[[22,1]],'framework',[[3,1],[20,1]],'because',[[6,14],[20,1],[22,17],[15,1],[17,1],[2,6],[8,4],[9,4],[24,3],[4,8],[10,5],[25,2],[5,8],[19,1],[23,3],[14,2],[7,10],[11,10],[12,4]],'decisive',[[10,1],[7,3]],'open',[[3,3],[6,2],[22,1],[24,6],[16,1],[15,12],[21,1],[17,1],[14,1],[1,1],[12,7],[11,5]],'decompose',[[14,1]],'methodicalness',[[6,1]],'methodically',[[14,1]],'digits',[[22,2],[5,1]],'timing',[[25,1],[23,1]],'period',[[23,1],[14,1],[11,3],[6,1]],'waste',[[23,1],[2,1]],'nevertheless',[[2,1]],'nes',[[12,1],[19,1],[22,2],[24,5],[15,5],[11,3]],'modal',[[22,1]],'message',[[24,3],[25,1],[5,2],[17,2],[19,1],[12,1],[11,1]],'cocktail',[[2,1]],'available',[[22,1],[24,1],[18,1],[7,1],[12,2],[5,3]],'activated',[[10,1],[12,1]],'accounts',[[11,1]],'vulnerabilities',[[2,1]],'clearselection',[[24,1]],'hash',[[25,1]],'paused',[[22,3],[18,3],[15,2],[17,1],[2,1],[8,1],[3,1],[24,1],[4,1],[5,2],[23,2],[7,2],[11,1],[12,1]],'transforming',[[24,1]],'select',[[22,8],[4,6],[18,2],[16,2],[15,8],[23,3],[17,23],[25,3],[12,4],[11,5]],'usual',[[19,2],[23,1],[25,1],[2,1],[15,1],[5,1]],'common',[[12,1],[23,2]],'imagination',[[2,1]],'logging',[[22,3],[2,1]],'support',[[22,2],[14,1],[12,1],[23,2]],'considers',[[22,2]],'sorry',[[6,1]],'folder',[[18,2],[11,1],[12,1]],'occupies',[[11,1],[6,1]],'suited',[[12,1]],'positioning',[[10,1]],'without',[[22,10],[6,2],[16,1],[15,1],[2,3],[8,6],[9,2],[24,2],[5,3],[23,1],[14,4],[7,3],[11,6],[12,8]],'awareness',[[4,1]],'pretty',[[20,1],[12,2],[2,1]],'address',[[14,1],[12,2],[6,1]],'groundwork',[[2,1]],'concentration',[[6,1]],'requires',[[6,1],[22,1],[10,1],[2,1],[14,1],[8,1],[12,2],[11,1]],'0xce',[[12,2]],'sequential',[[23,1]],'realizing',[[7,1]],'rolling',[[19,1],[22,3],[24,3],[16,2],[9,1]],'alpha',[[22,3]],'aggregate',[[20,1]],'distributed',[[8,1],[21,1],[14,1]],'often',[[6,6],[20,1],[18,1],[16,1],[17,7],[2,1],[8,2],[9,2],[24,3],[4,2],[10,2],[5,2],[19,1],[14,1],[7,6],[11,1],[12,3]],'connect',[[22,1],[5,2]],'evolution',[[22,1],[5,1]],'gui',[[12,1],[23,6],[18,3],[24,3],[15,2],[11,2]],'entitled',[[12,1]],'low',[[4,1],[6,1]],'encoded',[[12,2]],'feature',[[22,9],[4,3],[18,1],[15,2],[5,2],[19,1],[23,2],[14,3],[8,1],[12,3],[11,10]],'differences',[[22,1]],'gradients',[[23,1]],'horizontal',[[22,2],[15,1],[6,1]],'discarding',[[8,1]],'terminology',[[22,1]],'sensible',[[12,1]],'answers',[[13,1]],'demand',[[22,1],[23,10]],'duration',[[6,1],[10,2],[2,1]],'formulate',[[2,1]],'conclude',[[22,1]],'nullifies',[[9,1]],'unique',[[25,1],[2,1],[12,5],[6,1]],'care',[[20,1],[10,1],[11,1]],'displays',[[3,1],[22,16],[4,2],[10,1],[24,1],[5,3],[23,3],[14,2],[11,2]],'code',[[22,2],[18,1],[21,5],[15,1],[23,9],[19,3],[25,3],[14,2],[2,5],[12,10]],'believed',[[22,1]],'analogy',[[22,1],[20,3],[5,1]],'abstract',[[22,1],[10,1],[7,1],[2,1],[13,1],[12,1]],'bit1',[[25,2]],'|commands|port0|port1|port2|',[[25,1]],'processing',[[14,2]],'hesitate',[[2,1]],'fast',[[9,1],[6,2],[20,1],[16,1],[5,3],[14,1],[11,1],[12,1]],'improves',[[22,1],[6,1]],'senses',[[6,1]],'org',[[6,1],[12,1],[2,1]],'loses',[[23,1]],'for',[[22,96],[11,52],[18,6],[12,50],[15,17],[2,9],[8,28],[9,14],[3,5],[25,9],[7,12],[13,1],[16,6],[21,1],[17,2],[24,11],[4,14],[10,14],[5,24],[19,7],[0,1],[23,44],[14,38],[20,13],[6,30]],'bumping',[[9,1]],'even',[[6,21],[22,15],[18,4],[2,5],[8,4],[9,3],[3,1],[24,4],[4,2],[10,6],[5,4],[19,1],[23,1],[14,3],[7,9],[11,7],[12,5]],'invulnerability',[[12,1]],'revolutionary',[[7,3]],'reached',[[6,1],[22,2],[2,1]],'blindly',[[22,1],[9,1]],'tradition',[[22,1]],'throughout',[[13,1],[16,1],[14,1]],'swap',[[17,3],[22,1]],'experimenting',[[7,1]],'battletoads',[[17,1]],'waves',[[6,1]],'resulting',[[7,1],[14,1],[11,1],[5,2]],' build',[[14,1]],'cold',[[11,1]],'jumping',[[6,4],[22,6],[4,1],[24,1],[16,20],[15,1],[5,1],[23,3],[7,1],[12,3],[11,2]],'comfortable',[[6,2],[23,1],[2,1]],'4th',[[22,1],[10,1],[25,1]],'500',[[11,1]],'informs',[[24,1],[4,1]],'adjust',[[3,2],[12,1],[10,1],[23,1],[2,1],[8,1],[11,3],[6,2]],'powerful',[[24,2],[5,1]],'configuration',[[24,1],[11,1]],'makes',[[9,3],[12,1],[22,3],[5,1],[23,3],[2,1],[7,6],[11,1],[6,4]],'rarely',[[22,1],[15,1],[5,1],[17,16],[7,2],[12,1],[11,1]],'enemy',[[8,3],[9,7],[6,4]],'study',[[3,1],[0,1]],'blue',[[22,18],[24,1],[4,12],[10,1],[16,1],[15,1],[5,18],[14,3],[8,1],[11,3]],'precisely',[[19,1],[24,1],[8,1],[12,1],[23,1]],'newbies',[[11,1]],'filename',[[17,1],[19,1],[11,2],[23,4]],'marioy',[[12,3]],'hardware',[[19,1],[22,1],[18,1],[14,1],[15,2],[23,2]],'boundary',[[22,4],[11,1],[6,1]],'arriving',[[7,1]],'greenzoned',[[22,2]],'recognition',[[9,1]],'usually',[[6,11],[20,1],[22,6],[16,1],[15,1],[2,1],[8,3],[9,3],[24,1],[4,2],[10,1],[25,2],[5,3],[19,2],[14,6],[7,7],[11,7],[12,8]],'clone',[[17,6],[15,2],[5,2]],'sometimes',[[11,1],[12,1],[4,1],[16,1],[5,1],[19,2],[7,6],[14,2],[8,1],[9,1],[6,8]],'limits',[[23,1],[0,1],[2,1],[14,2],[6,2]],'approve',[[24,1]],'elaborate',[[7,1]],'1440',[[11,1]],'form',[[22,2],[4,1],[10,1],[25,2],[23,1],[14,5],[1,1],[8,1],[12,3],[20,1]],'hottest',[[4,1]],'part',[[6,6],[22,4],[16,1],[2,2],[9,1],[3,1],[4,4],[5,5],[19,1],[14,1],[1,1],[7,1],[11,3],[12,4]],'recover',[[11,1]],'submissions',[[12,1]],'active',[[22,1],[24,1],[4,1]],'automatic',[[22,6],[10,1],[12,2],[11,1]],'plan',[[22,1],[20,1],[6,1]],'learned',[[20,1]],'getplaybacktarget',[[18,2]],'synchronized',[[22,1]],'type',[[9,1],[6,1],[4,2],[20,1],[22,5],[25,3],[5,3],[17,3],[19,1],[23,3],[11,2],[12,1]],'unambiguous',[[7,1]],'lacks',[[22,1]],'21060',[[25,1]],'describe',[[12,2],[2,1]],'debugger',[[15,1]],'wheel',[[22,7],[16,9],[15,16],[9,2],[24,7],[4,4],[10,2],[5,7],[19,2],[23,2],[7,1],[12,1],[11,1]],'judging',[[20,1],[6,1]],'free',[[22,2],[15,1],[2,1],[8,1],[9,1],[10,2],[25,1],[23,1],[19,1],[0,1],[14,1],[12,1],[11,2]],'lovingly',[[12,1]],'20fps',[[18,1]],'methods',[[22,3],[5,1],[2,2],[1,2],[7,4],[11,1],[6,1]],'limitation',[[22,1],[16,1]],'research',[[14,2],[23,1],[6,2]],'axis',[[22,1]],'deal',[[10,1],[6,1]],'represents',[[14,1]],'resembles',[[0,1],[8,1]],'pulled',[[24,1]],'concepts',[[6,1]],'types',[[17,1],[22,1],[25,3],[7,1],[20,2],[23,1]],'ipad',[[17,1]],'spend',[[10,2],[7,2],[14,1],[9,1],[12,1]],'50000',[[11,1]],'unpacks',[[22,1]],'update',[[23,2],[4,1],[14,1]],'simulate',[[22,1],[24,1]],'polls',[[22,1]],'disk',[[22,4],[24,5],[18,1],[15,11],[5,1],[25,6],[12,3],[11,5]],'submission',[[12,1],[6,2]],'intact',[[19,1],[22,2],[11,1]],'gameresources',[[12,1]],'interaction',[[24,1],[10,1],[2,1],[14,2],[8,1],[9,1]],'unused',[[14,2],[8,1],[7,1]],'aren',[[5,1],[12,1],[14,1],[8,1],[11,2],[6,2]],'kind',[[4,1],[2,1],[7,1],[8,1],[6,2]],'checking',[[22,1],[18,1],[14,1],[23,2]],'disregarding',[[5,1]],'musical',[[8,1]],'imitating',[[11,1]],'with',[[22,73],[11,30],[18,6],[6,31],[15,14],[2,13],[8,12],[9,20],[3,4],[25,9],[7,8],[1,1],[13,3],[16,10],[21,3],[17,10],[24,17],[4,20],[10,9],[5,27],[19,5],[0,1],[23,10],[14,11],[12,22],[20,6]],'arbitrary',[[2,2]],'want',[[6,1],[22,1],[18,1],[16,6],[15,1],[2,1],[8,2],[9,2],[4,1],[10,1],[5,4],[19,1],[7,2],[11,6],[12,5]],'checkpoints',[[6,1]],'rough',[[10,1],[4,1],[14,1],[9,1]],'ways',[[22,2],[16,2],[15,1],[2,2],[8,1],[9,3],[3,1],[4,3],[14,5],[13,1],[7,1],[12,1],[6,2]],'lighter',[[22,1]],'000001',[[22,1]],'reside',[[23,1]],'rushing',[[20,1]],'topmost',[[22,1]],'stored',[[11,4],[22,14],[18,1],[25,3],[5,1],[17,2],[23,4],[20,4],[12,6]],'resume',[[24,2],[4,1],[7,1],[5,2]],'appending',[[22,1],[15,1],[14,1]],'speedruns',[[22,1],[20,2],[14,2]],'reverses',[[18,1]],'character',[[12,1],[22,1],[4,1],[25,1],[5,3],[2,3],[7,1],[9,1],[6,5]],'calculated',[[22,1]],'alternative',[[6,1],[22,4],[16,2],[15,1],[2,1],[8,1],[9,1],[24,1],[4,1],[5,6],[23,1],[14,1],[7,3],[11,2],[20,1]],'specifies',[[11,1]],'ebook',[[5,1]],'rename',[[17,6]],'tells',[[24,1]],'goes',[[6,1],[22,7],[4,1],[2,1],[20,3],[5,2]],'ids',[[17,1],[23,5]],'output',[[3,1],[11,3],[22,12],[5,1],[23,1],[14,10],[12,2],[20,1]],'1st',[[5,1],[22,3],[7,1],[25,3],[6,4]],'kick',[[23,1]],'passes',[[22,1]],'tangible',[[7,1]],'si_none',[[25,4]],'prepares',[[22,1]],'necessity',[[6,1],[2,1]],'knowing',[[16,1],[10,1],[23,1]],'engaging',[[10,1]],'defeating',[[6,1]],'refresh',[[4,1],[2,1]],'confirming',[[20,1]],'immediately',[[22,5],[4,1],[10,2],[16,5],[15,1],[5,1],[23,1],[2,1],[7,3],[8,1],[9,4],[6,2]],'fractional',[[14,1]],'leftmost',[[16,1],[11,1]],'drag',[[22,5],[24,2],[4,2],[16,2],[15,4],[23,1],[17,6],[7,1],[9,1],[11,2]],'epub',[[17,1],[24,1],[18,1],[14,1],[23,1]],'linearity',[[2,1]],'extend',[[12,1]],'copied',[[17,1],[19,1],[22,3],[16,1],[15,1],[5,2]],'faster',[[14,1],[20,3],[10,1],[22,1],[15,2],[23,1],[7,2],[2,2],[8,1],[12,1],[6,2]],'interactivity',[[5,1]],'openness',[[2,1]],'obviously',[[8,1],[4,1],[12,2]],'000020',[[22,1]],'unpredictable',[[14,1]],'route',[[5,1]],'below',[[5,4],[22,1],[16,2],[15,2],[9,1]],'refer',[[18,1],[20,1]],'redesigned',[[22,2]],'should',[[6,9],[20,2],[18,1],[22,13],[16,1],[17,2],[2,2],[8,2],[9,4],[4,2],[10,3],[25,2],[5,3],[19,3],[23,24],[14,1],[7,2],[11,7],[12,7]],'allows',[[22,8],[16,3],[15,3],[21,1],[2,3],[8,2],[9,1],[3,1],[24,1],[4,1],[10,2],[5,8],[14,4],[11,5],[6,3]],'situation',[[6,1],[20,1],[16,1],[19,1],[7,1],[2,1],[8,2],[12,3],[9,4]],'reverted',[[17,1],[4,2]],'attributes',[[22,3]],'manipulations',[[14,1],[2,1]],'resize',[[15,1]],'intersection',[[22,1]],'experimental',[[22,1],[23,1],[4,1],[5,1]],'sent',[[22,4],[24,2],[14,1],[7,2]],'allotted',[[14,1],[8,1],[5,1]],'undoing',[[22,1],[9,1]],'sequences',[[15,1],[22,3],[7,1],[12,5],[6,1]],'determined',[[22,1],[14,1],[2,1],[25,1]],'aid',[[6,1],[2,1]],'rotated',[[24,1]],'technically',[[8,1],[9,2]],'truncating',[[22,3],[23,3]],'crossing',[[22,4],[16,2],[15,3]],'wm_mousewheel',[[23,1]],'between',[[6,9],[20,1],[22,13],[15,3],[2,2],[8,2],[9,3],[3,1],[24,2],[4,2],[10,3],[5,7],[19,1],[23,9],[14,7],[7,6],[11,3],[12,2]],'delete',[[24,1],[18,1],[15,4],[5,6],[17,7],[14,1],[11,1],[6,1]],'motor',[[8,1]],'skipping',[[14,1]],'typical',[[15,1],[23,1],[2,1],[13,1],[12,3],[6,1]],'mario',[[12,3],[4,3],[10,2],[5,1],[7,1],[14,1],[8,1],[9,2],[6,16]],'impartiality',[[10,1]],'implementation',[[24,1],[0,1],[7,1],[21,2],[23,2]],'unimportant',[[14,1]],'won',[[6,4],[20,1],[18,3],[17,1],[2,2],[9,1],[3,1],[24,2],[4,2],[5,4],[19,2],[7,2],[11,8],[12,3]],'formalize',[[14,1],[6,1]],'whether',[[22,5],[4,1],[2,1],[11,1],[5,1]],'simplifies',[[7,1],[11,1],[5,1]],'music',[[0,1],[4,1],[14,1]],'rom',[[3,2],[15,1],[24,10],[25,1],[11,5],[12,1]],'cope',[[6,1]],'guide',[[3,2],[4,1],[10,1],[19,1],[0,1],[2,2],[1,2],[14,1],[12,1],[6,1]],'tune',[[19,1],[5,1]],'ideal',[[7,1],[6,2]],'evaluate',[[22,1],[20,2],[5,1]],'achievement',[[5,1]],'motions',[[11,1]],'emptiness',[[16,1],[15,1]],'visually',[[22,3],[20,1],[6,1]],'cheat',[[12,1]],'calculate',[[11,1],[6,1]],'bullets',[[6,1]],'currently',[[22,8],[24,3],[4,1],[18,4],[16,8],[15,5],[5,2],[17,2],[23,1],[14,1]],'postpone',[[20,1],[11,1],[6,1]],'reflected',[[4,1]],'higher',[[4,1],[2,1],[7,1],[20,1],[6,1]],'fade',[[23,1]],'submitdeleteframes',[[17,1],[22,1],[18,2]],'structuring',[[4,1],[6,1]],'formatted',[[12,1]],'intervals',[[22,2],[12,1],[6,3]],'both',[[6,4],[20,1],[22,6],[17,1],[2,2],[9,1],[24,1],[4,4],[10,1],[5,2],[19,2],[0,1],[7,5],[1,1],[11,4],[12,3]],'redone',[[2,1]],'miscellaneous',[[25,1]],'rerecording',[[24,1],[14,1],[2,1],[23,1]],'check',[[22,2],[18,1],[21,1],[15,3],[9,1],[3,1],[25,1],[5,1],[19,1],[23,1],[7,1],[11,1],[12,1]],'doing',[[6,1],[24,1],[20,1],[11,1]],'awkward',[[22,1]],'freeing',[[22,1]],'big',[[6,1],[14,1],[12,1],[11,1]],'associates',[[2,1]],'custom',[[14,2],[12,1],[2,2]],'abstraction',[[4,1]],'frame#',[[17,3],[22,1],[4,1],[24,1],[15,2]],'important',[[9,1],[6,1],[20,3],[5,1],[19,1],[7,2],[14,1],[11,1],[12,2]],'activity',[[10,2],[7,1],[14,1],[8,1],[9,1],[20,1]],'reappear',[[11,1]],'drawn',[[22,2],[4,1],[12,2],[11,1]],'seriously',[[8,1]],'mashing',[[5,1]],'welcome',[[0,1]],'attaches',[[11,1]],'mod',[[14,1]],'rerecordcount',[[25,1]],'amount',[[22,1],[16,3],[5,2],[7,1],[2,1],[14,3],[12,1],[11,4]],'gamepads',[[17,3],[25,1],[5,2]],'systematic',[[12,3],[5,1]],'meditate',[[10,1]],'link',[[3,1]],'taking',[[14,1]],'application',[[20,1],[5,1]],'binding',[[11,2],[2,1]],'wip1',[[17,1]],'unsigned',[[25,3]],'sat',[[5,1]],'assisted',[[20,1],[14,2]],'fantasy',[[2,1]],'final',[[22,4],[10,1],[21,1],[5,1],[7,2],[14,1],[20,1],[6,8]],'uniqueness',[[12,1]],'creation',[[3,1],[22,6],[21,1],[15,1],[23,5],[17,1],[9,1],[12,1]],'define',[[10,1],[8,1],[9,1],[6,2]],'granted',[[9,2],[22,1],[5,1],[17,3],[2,1],[8,1],[12,1],[6,1]],'chosen',[[12,2],[22,1],[4,3],[21,1],[5,3],[17,2],[7,1],[8,1],[11,1],[6,5]],'choice',[[11,1],[20,1]],'startup',[[22,1]],' microphone',[[24,1]],'lists',[[22,1],[24,1]],'16th',[[12,2]],'build',[[10,1],[23,1]],'resets',[[23,1],[6,1]],'status',[[23,2],[15,1],[18,1]],'was',[[6,5],[20,1],[18,3],[22,16],[16,2],[15,6],[21,1],[17,18],[2,6],[9,3],[24,3],[4,5],[10,4],[25,9],[5,10],[19,3],[23,7],[7,1],[14,3],[11,3],[12,4]],'polished',[[12,1],[6,1]],'flashes',[[17,2],[22,1],[23,2],[11,1],[5,2]],'air',[[6,1]],'progression',[[14,1]],'agrees',[[23,1]],'selected',[[22,33],[24,1],[4,9],[18,3],[15,19],[5,7],[17,8],[19,3],[23,5],[14,2],[12,6],[11,4]],'temporal',[[5,2]],'brings',[[24,1],[9,1],[11,2]],'flow',[[3,1],[11,1],[2,4],[7,2],[9,1],[6,3]],'overview',[[1,1]],'combinations',[[3,1],[5,2],[15,2],[22,2],[12,1],[6,1]],'html',[[19,1],[1,1],[21,1],[9,1],[12,1]],'laglog',[[23,5]],'prematurely',[[8,1],[10,1]],'everything',[[3,1],[22,2],[10,1],[2,1],[7,1],[12,1],[6,1]],'clears',[[23,3],[18,2],[5,2]],'stumbled',[[6,1]],'destination',[[12,1],[7,2]],'fceultra',[[21,1]],'use',[[6,4],[20,4],[18,5],[22,7],[16,23],[15,5],[21,1],[2,3],[8,6],[9,3],[24,2],[4,4],[10,3],[5,9],[19,4],[23,1],[14,6],[1,1],[7,2],[11,17],[12,13]],'masterfully',[[2,1]],'visible',[[5,2],[22,5],[23,1],[16,2],[15,4],[6,1]],'selection',[[22,69],[18,2],[16,26],[15,29],[17,4],[2,1],[9,4],[24,6],[4,17],[25,5],[5,16],[23,18],[14,7],[11,4],[12,7]],'add',[[22,4],[6,1],[4,1],[5,1],[23,2],[12,1],[11,1]],'recipient',[[12,2]],'uncompressed',[[22,3],[23,1]],'considered',[[22,3],[24,2],[4,1],[10,1],[25,4],[7,1],[14,3],[20,4],[6,3]],'occurs',[[22,4],[7,1],[8,1],[20,1],[6,2]],'suboptimally',[[7,1]],'roll',[[20,2],[22,70],[16,28],[15,42],[17,17],[2,1],[8,1],[9,3],[3,3],[24,3],[4,22],[10,2],[25,4],[5,15],[19,5],[23,12],[14,16],[7,1],[12,8],[11,20]],'spirit',[[2,1]],'determine',[[22,4],[14,1]],'fatal',[[7,1],[8,1],[6,1]],'unpausing',[[10,1],[4,1],[9,1]],'0000005',[[4,1]],'completion',[[14,2]],'impossible',[[5,3],[2,1]],'roughness',[[6,1]],'highly',[[22,1],[12,1]],'acquire',[[2,1]],'defined',[[5,1],[22,1],[14,2],[20,2],[6,1]],'opposite',[[6,1]],'again',[[9,2],[6,1],[4,2],[22,4],[24,1],[5,3],[11,4],[12,1]],'bugs',[[14,5],[6,1]],'sides',[[6,1]],'they',[[6,8],[22,8],[15,3],[2,3],[8,2],[9,3],[3,2],[24,4],[4,8],[25,1],[5,7],[23,2],[14,2],[7,5],[11,6],[12,9]],'basically',[[19,1],[7,2],[11,1],[5,2]],'day',[[22,1],[11,1]],'activating',[[12,1]],'trace',[[12,1],[15,1]],'prefix',[[23,2]],'slip',[[6,1]],'regain',[[6,1]],'relationship',[[22,1]],'resources',[[23,16],[12,1],[6,1]],'logger',[[15,2]],'present',[[11,1],[6,1]],'run',[[3,1],[12,7],[10,1],[18,4],[22,2],[15,1],[5,2],[17,5],[23,4],[8,1],[9,1],[6,1]],'clear',[[22,1],[4,1],[18,3],[15,3],[5,2],[17,6],[25,1],[2,3]],'smooth',[[23,1],[7,1]],'explicit',[[7,1]],'usability',[[11,1]],'speeding',[[3,1],[14,3],[9,1],[20,1]],'during',[[22,15],[6,2],[18,4],[2,3],[8,1],[9,1],[3,2],[24,1],[4,2],[5,6],[14,2],[11,5],[12,7]],'interrupted',[[11,1]],'enforcing',[[2,1]],'obvious',[[10,1],[7,3],[2,1],[12,2],[6,6]],'graphical',[[22,1],[20,1],[5,1]],'unless',[[25,1],[11,3],[12,1]],'determinism',[[22,1],[14,1]],'ruler',[[5,1],[2,1]],'wise',[[7,1],[6,1]],'followed',[[6,1]],'tilt',[[22,1]],'life',[[14,1],[10,1],[7,1]],'complex',[[6,4],[20,3],[2,1],[7,1],[12,1],[5,2]],'input',[[6,16],[20,3],[18,19],[22,102],[16,4],[15,27],[17,68],[2,16],[8,21],[9,16],[3,2],[24,5],[4,17],[10,16],[25,16],[5,38],[19,11],[23,38],[7,45],[1,1],[14,43],[11,59],[12,34]],'particular',[[22,2],[23,1]],'minimal',[[12,1],[6,3]],'offered',[[12,1]],'conventions',[[2,1]],'text',[[6,5],[22,12],[18,1],[16,5],[15,8],[17,16],[8,1],[3,4],[4,3],[10,2],[25,11],[5,1],[23,6],[14,2],[12,12],[11,9]],'fork',[[5,1]],'passing',[[22,1],[12,1],[6,1]],'devices',[[25,3]],'minus',[[15,1]],'editing',[[6,4],[22,8],[18,1],[15,12],[2,3],[8,6],[9,4],[24,2],[4,4],[10,8],[25,1],[5,6],[19,1],[23,8],[14,6],[7,4],[11,7],[12,5]],'hitbox',[[12,2]],'such',[[6,20],[20,2],[18,6],[22,7],[15,1],[17,2],[2,3],[8,1],[9,2],[3,1],[24,5],[4,2],[10,2],[5,5],[19,1],[23,3],[14,2],[7,6],[11,5],[12,4]],'edges',[[3,1],[6,1]],'report',[[22,1]],'force',[[6,2]],'writes',[[22,1],[25,1],[23,1]],'performance',[[10,1],[11,1]],'efficiency',[[2,1]],'continually',[[7,1]],'separation',[[22,1]],'stopping',[[22,2],[9,1],[20,1]],'removing',[[22,4],[23,1],[4,2],[14,1],[11,1],[5,2]],'subdivision',[[6,2]],'serializes',[[25,1]],'bookmark4',[[17,1]],'pattern',[[3,2],[22,8],[15,3],[5,6],[17,10],[23,2],[25,1],[14,1],[12,15],[11,5]],'bright',[[19,1],[22,1],[4,2],[11,4]],'ins',[[5,1]],'breakthrough',[[7,1],[2,1]],'pick',[[6,1]],'member',[[15,1]],'theoretically',[[22,1],[14,1]],'heatmap',[[22,6]],'loading',[[22,10],[24,12],[25,5],[5,2],[17,1],[23,5],[7,4],[2,1],[8,2],[12,3],[11,5]],'affecting',[[6,1],[7,1],[5,1]],'stroke',[[17,1],[11,1],[5,1]],'fits',[[22,2],[7,1],[11,1],[6,1]],'numpad',[[11,1]],'bookmark0',[[17,1]],'construct',[[9,1],[6,1]],'stick',[[22,2],[10,1],[14,1],[16,1],[12,1],[5,1]],'load',[[22,2],[6,1],[15,13],[17,2],[8,2],[3,1],[24,11],[25,3],[5,3],[23,2],[7,4],[12,1],[11,10]],'trap',[[6,1]],'synchronize',[[12,1]],'organism',[[2,1]],'applications',[[15,2],[7,1]],'prevent',[[3,1],[24,1],[12,1],[5,2]],'tracks',[[23,3]],'2011',[[22,2],[11,1],[18,1],[6,1],[15,1],[2,1],[8,1],[9,1],[3,1],[25,1],[7,1],[1,1],[13,1],[16,1],[21,1],[17,1],[24,1],[4,1],[10,1],[5,1],[19,1],[0,1],[23,1],[14,1],[12,1],[20,1]],'combine',[[5,2],[19,1],[11,1],[9,1]],'inferior',[[8,1]],'zapper',[[25,4]],'themselves',[[8,1],[11,1],[2,1]],'restored',[[3,1],[22,2],[11,1]],'diverse',[[20,1]],'parents',[[22,2]],'tas',[[12,11],[22,14],[18,53],[21,3],[15,8],[17,11],[2,10],[8,1],[9,2],[3,7],[24,5],[4,3],[10,1],[25,2],[5,4],[19,4],[0,5],[23,18],[7,3],[1,1],[14,9],[11,8],[6,10]],'dropped',[[9,1]],'encouraging',[[2,1]],'operations',[[3,1],[22,12],[4,1],[18,1],[15,3],[5,3],[17,3],[0,1],[23,11],[14,1],[13,2],[11,3]],'hollow',[[11,2]],'average',[[16,1]],'little',[[20,1],[22,1],[4,1],[2,1],[12,2],[6,1]],'necessary',[[6,2],[22,13],[16,1],[2,1],[8,5],[9,3],[24,2],[4,1],[10,3],[5,3],[19,1],[23,3],[14,3],[7,3],[11,5],[12,3]],'checks',[[22,1],[23,4],[14,1]],'outran',[[9,1]],'position',[[22,15],[11,3],[18,2],[16,3],[15,4],[17,1],[9,4],[3,1],[24,2],[10,2],[25,6],[5,8],[23,3],[12,5],[6,1]],'vision',[[1,1],[22,1],[23,1]],'linear',[[5,2],[12,1],[2,2]],'accessory',[[2,1]],'train',[[8,1]],'generating',[[12,1],[23,1]],'350',[[6,2]],'comma',[[15,1]],'gaining',[[8,1]],'clipboard',[[22,3],[16,3],[15,5],[5,7],[17,6],[23,5],[12,3]],'aborted',[[11,1]],'relying',[[9,1]],'now',[[22,5],[6,6],[2,5],[8,1],[9,4],[3,2],[4,2],[10,2],[25,1],[5,9],[7,5],[11,7],[12,3]],'sensitive',[[22,1]],'built',[[22,1],[14,1],[21,1],[12,1],[5,1]],'further',[[22,2],[24,1],[10,1],[2,1],[11,1],[6,1]],'dark',[[22,2],[4,3],[14,1],[5,1]],'insert#',[[17,2]],'depths',[[9,1]],'availability',[[22,1]],'appreciate',[[6,1]],'marks',[[22,2],[4,1],[14,2]],'itself',[[5,1],[22,2],[11,2],[6,1]],'away',[[22,2],[24,1],[10,1],[16,1],[15,1],[5,1],[19,1],[2,2],[7,2],[8,2],[9,1],[6,10]],'reaction',[[2,2]],'youtube',[[12,1],[14,1]],'became',[[14,1],[23,1],[5,1]],'imperfect',[[6,4]],'callback',[[18,10]],'working',[[6,6],[20,3],[2,2],[9,2],[24,1],[4,2],[10,2],[25,1],[5,6],[19,1],[23,14],[14,1],[1,1],[7,1],[11,3],[12,2]],'systematizes',[[19,1]],'intense',[[6,2],[11,1],[2,1]],'involving',[[22,2],[12,1]],'exists',[[22,1],[24,1],[4,2],[11,1]],'ans',[[22,1],[11,1],[18,1],[6,1],[15,1],[2,1],[8,1],[9,1],[3,1],[25,2],[7,1],[1,1],[13,1],[16,1],[21,1],[17,1],[24,1],[4,1],[10,1],[5,1],[19,1],[0,4],[23,1],[14,1],[12,1],[20,1]],'unselected',[[22,2],[15,1]],'intercepts',[[23,1]],'rewind',[[4,1],[16,2],[15,2],[5,4],[19,1],[14,1],[11,3],[9,3]],'corrupted',[[24,2]],'somehow',[[7,1]],'placed',[[17,1],[22,1],[14,1],[15,1],[11,1]],'finishes',[[12,1],[23,1]],'patterns',[[3,1],[22,7],[24,3],[15,1],[5,1],[23,3],[2,2],[14,1],[12,14],[11,2]],'decision',[[23,2],[10,3],[6,1]],'true',[[22,2],[18,2],[14,1],[2,1],[25,6]],'reread',[[10,1],[12,1]],'row',[[22,3],[4,3],[10,1],[18,1],[15,9],[5,1],[17,3],[23,1],[14,6],[8,1]],'quiet',[[6,1]],'distinction',[[7,1]],'checkbox',[[9,3],[22,5],[10,2],[18,2],[24,2],[16,1],[15,3],[5,13],[17,2],[8,1],[11,4],[12,5]],'turn',[[11,2],[22,1],[8,1],[9,1],[5,2]],'treat',[[5,1]],'api',[[22,2],[0,1],[18,2],[14,1],[13,1],[21,1]],'easier',[[11,2],[22,1],[5,3],[23,1],[2,3],[8,1],[12,3],[6,3]],'restore',[[12,2],[22,5],[4,1],[10,3],[15,10],[5,3],[19,1],[23,1],[7,1],[8,1],[9,5],[11,3]],'properly',[[9,1],[5,1]],'naturally',[[20,1],[12,1],[6,2]],'food',[[8,1]],'differs',[[17,2],[22,1],[24,1],[5,1]],'timestamp',[[15,1]],'might',[[5,1],[4,2],[20,1],[6,1]],'comprehension',[[5,1]],'serious',[[5,1]],'decimal',[[25,2]],'undone',[[4,1],[2,1],[12,1],[5,1]],'fancy',[[10,1]],'warning',[[24,1],[23,6]],'fading',[[23,1]],'playthrough',[[11,1],[12,1],[10,1],[14,1],[5,2],[2,2],[7,2],[8,2],[9,1],[6,11]],'simply',[[11,1],[20,2],[4,2],[22,1],[25,1],[5,2],[2,2],[7,1],[9,3],[6,4]],'sentences',[[6,1]],'redoing',[[6,1]],'juggle',[[8,1],[7,1]],'manually',[[12,2],[20,3],[4,2],[10,1],[18,1],[22,1],[19,1],[7,1],[2,1],[14,1],[9,2],[11,3]],'finished',[[11,3],[14,1],[4,1],[10,2],[22,1],[5,1],[2,1],[7,1],[8,3],[9,2],[6,3]],'practice',[[3,1],[6,1],[10,2],[1,1],[5,1]],'beyond',[[22,5],[23,1],[9,1],[6,1]],'flower',[[6,2]],'advantage',[[5,1]],'maps',[[23,1]],'architecture',[[22,1],[21,1],[23,1]],'imperfections',[[6,1],[2,1]],'tries',[[24,1],[23,1]],'predefined',[[14,1]],'~17',[[22,1]],'fingers',[[8,3]],'unrestricted',[[21,1],[14,1]],'watching',[[6,4],[20,1],[22,6],[2,1],[8,3],[9,10],[4,1],[10,5],[5,3],[19,1],[14,2],[7,5],[11,2],[12,1]],'videogame',[[6,2]],'possibilities',[[11,1],[12,1],[0,1],[7,1],[1,1],[8,2],[9,1],[6,4]],'quitting',[[23,2]],'category',[[14,1],[17,30],[5,1]],'gradient',[[23,2]],'controlling',[[22,2],[2,1],[16,1],[15,3],[5,2]],'stuff',[[22,2]],'lesser',[[19,1],[22,1]],'offer',[[22,1]],'option',[[22,2],[18,2],[16,2],[5,5],[19,4],[23,1],[7,2],[12,5],[11,33]],'origin',[[16,2]],'incites',[[10,1],[2,1]],'summary',[[13,1],[20,1]],'review',[[1,1],[13,1],[7,1]],'most',[[6,8],[20,3],[22,5],[16,2],[15,1],[2,9],[8,1],[9,2],[3,1],[4,5],[10,1],[5,3],[19,1],[23,1],[14,3],[7,3],[11,5],[12,9]],'forming',[[5,1]],'pastes',[[5,1]],'does',[[6,1],[22,16],[2,2],[25,1],[5,1]],'dividing',[[10,1],[2,1],[9,1],[6,2]],'100001000',[[11,1]],'detects',[[22,2],[25,1],[23,2]],'filled',[[22,1],[24,1],[4,1],[11,1]],'permitted',[[14,1]],'redo',[[22,2],[24,2],[10,1],[15,3],[23,2],[11,1],[6,5]],'reflexes',[[14,1]],'balanced',[[6,1]],'versa',[[22,1],[16,1],[15,1]],'desyncs',[[23,1],[14,1]],'150',[[10,2]],'mechanic',[[14,1],[6,1]],'involuntarily',[[2,1]],'fragment',[[6,1],[5,1]],'points',[[22,3],[24,2],[4,2],[15,1],[23,1],[8,3],[20,1],[9,1]],'influenced',[[6,2]],'fatigability',[[8,1]],'substituted',[[17,4]],'items',[[5,2],[19,1],[22,6],[23,4],[15,2],[11,1]],'radio',[[5,2]],'detaching',[[11,2]],'branch0',[[17,2]],'keys',[[22,8],[24,2],[4,2],[15,7],[5,7],[17,2],[19,1],[25,2],[8,1],[11,20],[9,1]],'sooner',[[5,1]],'exploiting',[[14,1]],'deleted',[[17,1],[19,1]],'historx',[[25,1]],'able',[[3,1],[11,2],[12,5],[18,1],[20,1],[22,4],[5,1],[23,5],[2,3],[7,2],[9,1],[6,1]],'energy',[[14,1],[2,1]],'office',[[22,1]],'converts',[[22,1]],'forth',[[22,1],[4,1],[7,1],[2,1]],'regardless',[[22,1],[5,1]],'imperceptibly',[[11,1]],'relevant',[[20,1],[22,2],[16,1],[11,3],[6,1]],'pass',[[22,1],[8,1],[11,1]],'doubt',[[7,1]],'distant',[[10,2],[7,1],[9,1],[5,1]],'subpixel',[[2,1]],'optimizing',[[23,1],[14,1],[13,1],[6,3]],'creative',[[6,1]],'worse',[[20,1],[9,3],[7,1]],'organization',[[5,1],[4,1],[2,1]],'whatsoever',[[6,1]],'mark',[[22,2],[24,1],[4,1],[15,1],[23,1],[19,1],[14,2],[9,5],[6,5]],'grades',[[22,1]],' movie',[[25,1]],'describing',[[1,1],[12,1],[6,1]],'chapters',[[6,2],[10,1],[2,1]],'appears',[[22,9],[11,2],[15,1],[17,3],[9,1],[3,1],[24,1],[4,1],[10,1],[19,1],[14,1],[12,1],[6,6]],'product',[[14,1]],'once',[[6,2],[22,6],[18,1],[16,1],[2,1],[8,1],[9,2],[4,1],[10,1],[5,3],[14,3],[7,3],[11,2],[12,2]],'solves',[[22,1]],'activation',[[12,1]],'close',[[3,1],[5,1],[10,2],[24,4],[11,3],[6,3]],'pagedown',[[15,3]],'noticeable',[[7,1]],'device',[[25,3],[14,1]],'traverse',[[16,1]],'highlighted',[[22,2],[14,1],[15,2],[5,2]],'follows',[[22,2],[14,1],[7,1],[25,1]],'obstruct',[[19,1]],'greenzoning',[[22,1],[11,1]],'eject',[[24,2],[15,3],[25,2]],'crossed',[[22,1]],'compression',[[11,1],[23,3]],'intentionally',[[14,1]],'clarification',[[11,1]],'operation',[[22,14],[24,1],[4,3],[16,1],[15,1],[23,3],[17,6],[19,1],[2,1],[11,1],[12,1]],'state',[[6,3],[20,7],[18,4],[22,28],[16,3],[15,25],[17,4],[2,1],[8,4],[9,1],[24,12],[4,2],[10,1],[25,5],[5,10],[23,17],[14,6],[7,1],[11,9],[12,3]],'guessed',[[22,1],[5,1]],'labels',[[15,1],[23,1]],'correspond',[[22,3]],'completed',[[7,1]],'universal',[[22,1]],'nearest',[[9,1],[22,4],[16,1],[15,1],[5,3],[2,1],[7,3],[14,1],[11,1],[6,1]],'productive',[[22,1],[11,1]],'shortest',[[20,1]],'speedrunners',[[20,1],[14,1]],'pure',[[7,1]],'equivalent',[[22,1]],'switch',[[20,1],[22,1],[18,2],[15,9],[17,3],[2,1],[8,1],[9,2],[3,1],[24,3],[10,2],[25,2],[5,4],[19,8],[14,1],[7,2],[12,1],[11,1]],'upwards',[[22,1]],'translation',[[0,1]],'seen',[[14,1],[4,1],[5,1]],'store',[[20,1],[22,7],[24,1],[5,1],[23,2],[7,1],[14,3],[8,1],[11,2],[6,1]],'impose',[[2,1]],'birth',[[22,1]],'saying',[[12,1]],'interrupting',[[16,1]],'svn',[[21,3]],'numbers',[[22,12],[4,7],[18,2],[15,1],[5,1],[2,1],[12,1],[20,2]],'helps',[[11,1],[22,1],[4,1],[5,2],[2,1],[12,1],[6,1]],'automates',[[2,1]],'undos',[[22,1],[11,1]],'own',[[6,3],[20,1],[18,1],[15,1],[17,1],[2,3],[8,1],[9,1],[4,2],[10,1],[25,2],[5,2],[23,1],[14,2],[7,1],[11,1],[12,3]],'parabola',[[22,1]],'leaves',[[22,1],[11,1]],'autosave',[[22,2],[24,1],[11,4],[23,2]],'emu',[[12,1],[18,1]],'equal',[[6,1],[22,10],[18,3],[2,1],[5,2]],'abilities',[[2,1]],'location',[[22,2],[2,1]],'instrument',[[8,1]],'ignoring',[[22,1],[23,1]],'horizontally',[[22,2]],'landed',[[6,1]],'transparent',[[23,1]],'worsening',[[9,1]],'straight',[[4,1]],'format',[[22,8],[24,5],[21,1],[25,15],[23,1],[0,1],[2,1],[12,9]],'heartedly',[[6,1]],'recognize',[[11,1]],'definitely',[[14,1],[4,1],[10,1]],'authoring',[[22,1],[10,1],[11,1]],'make',[[6,7],[20,1],[18,1],[22,4],[16,1],[15,2],[17,1],[2,1],[8,3],[3,1],[4,1],[5,12],[19,1],[23,3],[14,2],[7,6],[12,5],[11,6]],'distracting',[[3,1],[7,1]],'equalizing',[[6,1]],'refuses',[[25,2]],'were',[[22,4],[6,3],[18,2],[16,1],[17,4],[2,4],[24,1],[4,5],[25,4],[5,2],[7,1],[14,1],[12,1],[11,4]],'jumps',[[6,1],[22,1],[15,2],[5,3],[7,1],[11,2],[9,1]],'populated',[[3,1]],'written',[[22,1],[23,1],[14,1],[6,1]],'unmarked',[[22,3]],'due',[[22,2],[10,1],[12,1],[5,1]],'lands',[[6,2]],'mini',[[13,1],[12,1]],'spacebar',[[11,2],[23,1],[24,1],[25,1],[15,2],[9,1]],'global',[[12,1]],'sure',[[3,1],[11,2],[10,1],[12,2],[18,1],[20,1],[5,2],[19,1],[7,2],[9,1],[6,1]],'efforts',[[6,2]],'tracking',[[22,2],[16,2]],'assigned',[[22,1],[18,1],[5,2],[17,5],[7,1],[11,5],[9,1]],'exact',[[22,2],[4,1],[16,1],[12,3]],'resync',[[7,1],[6,2]],'watch',[[20,5],[22,2],[16,3],[15,3],[2,1],[8,1],[9,6],[3,1],[4,1],[10,2],[5,1],[14,2],[7,3],[12,5],[6,6]],'can',[[6,32],[20,9],[18,17],[22,88],[16,9],[15,18],[21,1],[17,3],[2,14],[8,7],[9,22],[3,6],[24,16],[4,27],[10,11],[25,5],[5,48],[19,9],[23,6],[14,22],[7,17],[11,33],[12,32]],'keeping',[[10,1],[2,1],[8,2],[9,1]],'turbo',[[10,6],[15,3],[5,2],[23,2],[2,1],[14,3],[9,5]],'intuitive',[[22,3],[8,1]],'cards',[[4,1],[5,1]],'topic',[[19,1]],'desirable',[[22,2]],'attract',[[22,1]],'giving',[[10,1],[2,2]],'essential',[[7,1],[12,2],[2,1]],'too',[[11,7],[22,7],[10,1],[24,1],[15,1],[5,2],[23,2],[2,1],[14,1],[8,2],[9,1],[6,8]],'excessive',[[14,1]],'slot',[[22,8],[6,1],[15,33],[17,6],[8,5],[9,3],[24,8],[10,2],[5,4],[23,1],[7,6],[11,2],[20,6]],'slowest',[[4,1],[15,1]],'newppu',[[25,1]],'bit0',[[25,2]],'keyword',[[25,3]],'compare',[[6,2],[20,5],[10,2],[22,2],[5,2],[19,1],[14,2],[8,3],[11,1],[9,2]],'gets',[[22,1],[4,1],[10,1],[14,1],[8,1],[12,1],[6,1]],'grants',[[6,1]],'orange',[[4,2]],'version',[[22,3],[24,2],[14,1],[2,1],[11,1],[25,9]],'erase',[[17,3],[22,1],[4,1],[10,1],[11,2],[15,1]],'modifier',[[22,4],[24,1]],'discover',[[6,2]],'redefine',[[15,1]],'lets',[[6,1]],'reaching',[[23,1],[8,2],[6,3]],'sound',[[23,1],[14,1],[15,4],[12,1]],'mismatch',[[24,1],[23,1]],'uncontrollable',[[14,1]],'faded',[[6,1]],'facilitate',[[19,2],[4,1],[5,1]],'remap',[[11,1]],'bear',[[6,1]],'fashion',[[22,1]],'reports',[[25,2]],'displayed',[[20,1],[22,27],[4,2],[15,1],[5,4],[25,4],[14,2],[12,1],[11,2]],'indicators',[[6,1]],'smb',[[12,1],[6,1]],'exit',[[22,1],[23,3],[15,3],[6,1]],'branch3',[[17,2]],'guess',[[6,1],[9,2],[2,1]],'0000010',[[4,1]],'shaping',[[12,1],[6,1]],'duties',[[8,1]],'bind',[[22,1],[11,1],[18,2]],'path',[[2,1]],'weeks',[[10,1]],'wide',[[22,1],[4,1]],'either',[[6,4],[20,1],[18,2],[22,6],[15,1],[17,3],[2,2],[9,2],[24,5],[4,2],[25,3],[5,6],[23,2],[7,5],[14,4],[11,3],[12,1]],'mistake',[[21,1],[15,1],[8,5],[9,2],[24,2],[10,2],[5,1],[23,1],[0,1],[7,21],[14,1],[11,1],[6,2]],'noticing',[[12,1],[6,1]],'past',[[10,1],[8,1],[9,1],[5,1]],'post',[[19,1],[7,1],[2,1],[12,1]],'fire',[[22,2],[12,1],[15,3]],'accordance',[[22,1]],'inside',[[9,1],[22,5],[4,1],[21,2],[5,1],[17,1],[0,1],[19,1],[11,1],[12,3]],'library',[[22,1],[18,2],[13,1],[12,1],[23,2]],'interpreted',[[22,1],[18,1],[2,1],[25,1]],'screen',[[20,3],[22,14],[6,3],[2,1],[8,1],[9,3],[4,4],[10,9],[25,2],[5,4],[14,3],[11,1],[12,6]],'busy',[[6,1]],'plays',[[7,2]],'exist',[[18,2],[11,1],[12,1]],'fundamentals',[[1,1]],'code ',[[25,1]],'mouse',[[20,1],[22,34],[16,17],[15,53],[17,3],[2,4],[8,1],[9,14],[3,1],[24,7],[4,11],[10,6],[25,6],[5,18],[19,4],[0,1],[23,5],[14,1],[7,6],[12,3],[11,13]],'longer',[[7,1],[4,1],[2,1]],'super',[[5,1],[4,1],[14,1],[12,1],[6,3]],'assign',[[2,1]],'provide',[[22,3],[18,3],[8,1],[12,2],[23,2]],'accomplished',[[22,2]],'miss',[[3,1],[24,1]],'join',[[6,2]],'exempt',[[7,1]],'retype',[[2,1]],'aimed',[[14,1]],'insert',[[6,1],[22,3],[10,3],[18,2],[24,4],[15,15],[5,12],[17,12],[19,1],[25,2],[11,2],[9,2]],'omit',[[4,1]],'implementing',[[22,1],[6,2]],'quick',[[22,1],[10,2],[7,1],[8,1],[9,1],[11,1]],'subtitle',[[25,4]],'dozen',[[6,2],[22,2],[5,1]],'walks',[[6,1]],'2008',[[22,1]],'reconfiguring',[[11,1]],'detail',[[3,1],[5,1]],'viewers',[[12,2],[6,1]],'fun',[[12,1],[11,1],[6,1]],'replacing',[[24,2],[20,2]],'discard',[[8,2],[10,2],[18,1]],'ride',[[5,1]],'why',[[11,1],[4,2],[10,1],[19,4],[2,1],[7,1],[8,1],[9,1],[6,1]],'then',[[6,13],[20,6],[18,1],[22,25],[16,1],[15,2],[17,25],[2,4],[8,2],[9,2],[24,1],[4,7],[10,2],[25,7],[5,10],[19,2],[23,3],[14,3],[7,6],[11,14],[12,13]],'subtask',[[14,1],[6,2]],'discretion',[[6,1]],'todo',[[12,2]],'0x3ad',[[12,2]],'wouldn',[[14,1]],'branching',[[19,1],[22,1],[11,1]],'superimposed',[[22,1]],'mind',[[12,4],[20,4],[4,4],[10,1],[22,1],[5,1],[2,2],[7,1],[8,1],[9,1],[6,8]],'misconception',[[24,1]],'orientation',[[12,1]],'bottom',[[22,3],[16,1],[12,1],[5,1]],'concept',[[22,1],[14,1],[12,1],[23,1]],'moved',[[22,3],[23,2],[5,1]],'limit',[[9,1],[6,2]],'delivered',[[7,1]],'outrun',[[8,1]],'choose',[[6,7],[20,3],[4,2],[15,1],[5,3],[17,18],[19,3],[7,2],[12,7],[11,4]],'analyzing',[[22,1],[6,2]],'tools',[[3,1],[18,2],[5,1],[23,1],[2,7],[14,3],[8,2],[12,2],[6,1]],'means',[[6,5],[20,3],[18,1],[22,3],[16,1],[2,2],[8,2],[9,1],[4,1],[25,2],[23,2],[19,2],[14,1],[7,3],[11,2],[12,1]],'walkthrough',[[14,6],[6,3]],'dispatch',[[23,1]],'minimized',[[12,1]],'fm3',[[22,5],[24,9],[21,1],[25,10],[23,1],[17,1],[0,1],[19,2],[2,2],[11,6],[12,17]],'drawbox',[[12,2]],'emerging',[[20,1]],'transposed',[[19,1]],'closest',[[16,2],[6,1]],'buttonpress',[[11,3],[9,6],[10,6],[22,1],[16,1],[12,1],[20,1]],'recorded',[[22,7],[25,1],[5,4],[7,1],[8,2],[12,1],[11,1]],'immensely',[[5,1]],'reality',[[10,1]],'programmers',[[2,1]],'serving',[[12,1]],'middleclick',[[24,3]],'author',[[22,1],[25,3],[23,1],[19,2],[0,2],[1,1],[12,1],[6,4]],'denying',[[14,2]],'encourages',[[2,1]],'branch2',[[17,2]],'erasing',[[11,1],[15,2],[4,1],[9,1],[5,2]],'images',[[23,1],[14,1],[12,1],[5,1]],'calculations',[[23,1],[7,1]],'playarounds',[[14,1]],'ensures',[[22,1],[23,2],[15,1],[6,1]],'accepted',[[22,2],[12,1]],'versatile',[[22,1]],'popup',[[23,6]],'simplistic',[[14,1]],'docopy',[[12,3]],'may',[[6,19],[20,3],[18,5],[22,11],[2,3],[8,5],[9,8],[24,1],[4,9],[10,4],[25,2],[5,9],[23,4],[14,2],[7,4],[11,16],[12,12]],'detect',[[22,1],[10,1],[7,1],[14,1],[9,1]],'imported',[[17,2],[19,1]],'stands',[[5,1]],'client',[[21,1]],'descriptions',[[6,1],[22,1],[15,1],[11,4]],'spent',[[4,1],[2,1],[14,1],[9,1],[6,1]],'burst',[[12,1]],'labor',[[22,1]],'violet',[[4,1]],'jumpprevmarker',[[24,1]],'export',[[19,1],[2,1],[12,3],[23,1]],'offers',[[2,1]],'anything',[[7,1],[15,1],[6,1]],'srt',[[12,2]],'network',[[12,1]],'animations',[[23,2]],'seekng',[[23,1]],'sifc_none',[[25,1]],'follow',[[22,1],[10,2],[16,3],[15,5],[5,2],[23,1],[2,1],[8,1],[11,2],[9,4]],'course',[[22,2],[10,1],[5,1],[0,1],[2,1],[1,1],[7,3],[11,1],[6,3]],'small',[[6,12],[22,3],[24,2],[5,3],[7,2],[14,1],[20,1],[11,2]],'divide',[[4,1],[6,3]],'access',[[22,1],[23,3],[14,1],[11,2],[12,1]],'deserialize',[[25,1]],'however',[[6,1],[12,1],[10,1],[22,4],[5,1],[14,1],[8,2],[11,2],[9,3]],'black',[[19,1],[22,1],[4,1],[11,3]],'approaches',[[11,3],[20,16],[10,7],[5,3],[7,2],[14,2],[8,7],[9,5],[6,4]],'representing',[[24,1],[18,6],[14,1],[23,1]],'finishing',[[8,1],[14,1]],'committed',[[7,1]],'skipped',[[24,1]],'reaches',[[22,1],[6,1]],'developers',[[14,1],[6,1]],'moves',[[5,8],[22,6],[10,2],[25,1],[6,2]],'movie',[[6,23],[20,3],[18,12],[22,85],[16,26],[15,19],[17,23],[2,4],[8,14],[9,8],[3,1],[24,23],[4,24],[10,4],[25,14],[5,53],[19,9],[23,30],[7,12],[13,2],[14,27],[11,33],[12,22]],'held',[[22,2],[24,2],[4,2],[16,1],[15,2],[5,1],[23,1],[2,1],[6,1]],'popup_display',[[23,1]],'about',[[6,7],[20,2],[18,1],[22,16],[16,2],[15,1],[2,2],[8,1],[9,3],[3,1],[24,5],[4,5],[5,5],[23,10],[0,1],[14,5],[7,2],[11,9],[12,1]],'vertical',[[22,2],[4,2],[16,2],[12,1],[23,1]],'fixed',[[19,1],[22,3],[7,5],[14,3],[25,1],[6,1]],'bit6',[[25,2]],'informative',[[22,1]],'users',[[19,1],[22,1],[4,1],[5,1]],'sorts',[[7,1]],'being',[[15,1],[20,1],[7,3],[2,2],[12,2],[5,1]],'transition',[[22,1],[12,1]],'relative',[[22,3]],'pdf',[[19,1],[0,1],[25,1],[16,1],[9,1],[21,1]],'extraordinary',[[14,1],[2,2]],'specifically',[[22,2],[4,1]],'suppose',[[12,1],[10,1],[8,1],[9,1],[6,1]],'mute',[[15,1],[23,1]],'callbacks',[[18,8]],'pays',[[10,1]],'processes',[[23,1]],'concentrates',[[14,1]],'division',[[6,1]],'naked',[[14,1]],'combination',[[12,2],[4,1],[10,3],[15,1],[2,1],[7,1],[11,1],[6,1]],'few',[[5,2],[22,3],[4,2],[7,1],[9,1],[6,1]],'comfort',[[11,2],[10,1],[2,1]],'contains',[[3,2],[22,4],[4,3],[24,1],[16,2],[5,4],[17,1],[19,2],[23,1],[14,3],[12,3],[11,1]],'lot',[[12,1],[22,3],[10,1],[11,3],[6,2]],'array',[[22,9],[18,1],[23,13]],'advantageous',[[10,1],[7,2],[8,1],[20,1]],'repetitive',[[6,1]],'unintended',[[24,1],[14,1]],'multitude',[[5,1],[22,1],[20,1],[6,2]],'xxx',[[25,2]],'reproduce',[[19,1],[8,1],[7,2]],'scale',[[3,1],[5,1],[22,1],[14,1],[23,2],[6,3]],'deliberately',[[14,1]],'silently',[[11,2]],'memorize',[[20,1],[7,1]],'hardcore',[[6,1]],'editors',[[3,1],[2,1]],'tag',[[12,1],[6,1]],'snowslide',[[6,1]],'ended',[[11,1]],'supported',[[19,1],[24,2],[25,3]],'prompts',[[19,1],[23,1],[5,1]],'near',[[17,3],[22,2],[4,1],[9,1],[6,1]],'applies',[[23,1],[18,1],[14,1],[15,1],[5,1]],'deterministic',[[23,1],[14,2]],'partial',[[23,3],[12,1],[20,1]],'understand',[[10,1],[7,1],[21,1],[12,2]],'improvable',[[7,1]],'optimality',[[12,1],[20,2],[10,6],[22,2],[5,1],[7,4],[14,1],[8,3],[9,5],[6,18]],'moreover',[[22,1],[4,1],[15,1],[6,1]],'draw',[[9,2],[22,2],[4,2],[10,4],[15,1],[5,2],[17,1],[14,1],[11,6],[12,1]],'registering',[[18,4]],'touch',[[22,1],[6,1]],'mode',[[22,7],[18,2],[15,9],[17,2],[8,2],[9,1],[3,1],[24,5],[10,1],[5,3],[23,2],[7,9],[14,2],[11,2]],'pointers',[[25,1],[14,1]],'timesavers',[[14,2]],'conversion',[[23,1]],'toggle',[[5,1],[22,1],[23,3],[24,3],[15,15],[11,2]],'statistics',[[22,1]],'killed',[[8,1]],'hampered',[[6,1]],'chm',[[21,1],[9,1],[12,1]],'them',[[6,9],[20,1],[18,2],[22,9],[16,1],[15,1],[17,1],[2,1],[8,3],[9,4],[24,1],[4,9],[10,1],[25,1],[5,4],[19,2],[23,3],[14,3],[11,10],[12,5]],'farther',[[15,1]],'cpp',[[23,22]],'numbering',[[22,1]],'thin',[[22,1]],'2gb',[[22,1]],'occupied',[[15,2],[17,3],[4,2],[11,2],[6,1]],'getmarker',[[18,2]],' two',[[20,2]],'icons',[[20,1],[22,11],[4,1],[24,1],[16,3],[15,2],[5,1],[12,1],[11,1]],'motivate',[[12,1]],'rather',[[11,1],[12,3],[4,1],[10,1],[24,1],[5,2],[2,2],[7,2],[9,1],[6,2]],'improved',[[22,1],[6,1]],'evaluated',[[14,1],[6,1]],'limited',[[22,2],[14,2],[8,1],[6,2]],'extensions',[[12,1]],'2012',[[22,1]],'psx',[[22,1]],'respectively',[[15,2],[20,1]],'keypresses',[[7,1],[11,2],[5,1]],'actual',[[22,2],[4,2],[18,5],[21,1],[5,3],[2,1],[14,1],[12,2],[6,2]],'searching',[[6,1],[20,1],[10,2],[22,3],[16,4],[5,1],[23,4],[14,1],[12,2],[11,2]],'backups',[[8,2]],'suddenly',[[6,1]],'white',[[15,2],[22,1],[4,1],[11,1],[5,1]],'voltage',[[22,1]],'know',[[3,1],[12,5],[10,3],[18,1],[22,1],[0,1],[2,1],[7,2],[9,1],[6,2]],'entire',[[9,1],[22,3],[4,1],[25,1],[5,1],[19,1],[2,1],[11,2],[12,1]],'player',[[11,3],[12,4],[4,1],[15,1],[5,6],[23,2],[25,4],[2,2],[7,4],[14,14],[9,1],[6,7]],'useless',[[24,1],[10,1],[14,1],[9,2]],'volume',[[9,1],[15,3]],'strokes',[[2,1]],'evil',[[19,1]],'whitish',[[4,1]],'their',[[6,2],[20,1],[22,2],[15,1],[2,1],[8,2],[9,1],[24,2],[4,1],[25,2],[5,3],[23,1],[14,2],[1,1],[7,1],[11,2],[12,6]],'cut',[[17,5],[15,2],[5,1]],'column',[[20,1],[22,30],[4,8],[24,3],[16,5],[15,8],[5,2],[19,1],[25,2],[12,4],[11,5]],'acceleration',[[7,1],[8,2],[12,6],[6,5]],'somebody',[[14,1]],'bookmarks',[[6,2],[20,10],[22,52],[16,3],[15,8],[17,3],[8,11],[9,3],[24,3],[4,1],[25,5],[5,27],[19,3],[23,15],[7,3],[14,4],[11,8],[12,3]],' submitinsertframes',[[22,1]],'way',[[6,9],[20,1],[22,9],[16,2],[15,7],[2,7],[8,3],[9,5],[24,1],[4,9],[10,5],[5,6],[19,4],[23,1],[14,6],[7,4],[11,17],[12,7]],'nil',[[22,1],[12,1],[18,7]],'copies',[[17,1],[7,1],[12,1],[5,3]],'specified',[[22,1],[25,2]],'existing',[[3,1],[22,2],[18,1],[15,2],[5,4],[19,1],[7,1],[14,2],[8,3],[12,1],[9,1]],'locked',[[24,1]],'grasp',[[6,1]],'aloof',[[6,1]],'playback',[[20,2],[22,61],[18,8],[16,25],[15,30],[17,4],[2,1],[8,3],[9,16],[24,8],[4,17],[10,12],[5,33],[19,3],[23,12],[14,6],[7,5],[12,6],[11,16]],'variations',[[10,1]],'expands',[[8,1],[5,1]],'reverts',[[5,1]],'creates',[[22,2],[24,1],[10,1],[25,2],[23,2],[7,2],[12,3]],'vibrating',[[14,1]],'improvements',[[22,2],[7,1],[14,1],[6,2]],'accomplishment',[[8,1]],'somewhere',[[17,1],[8,1],[15,1],[16,1]],'accordingly',[[22,2],[4,1]],'bros',[[5,1],[4,1],[14,1],[12,1],[6,3]],'fit',[[22,3],[16,1],[18,3]],'rows',[[22,8],[23,4],[14,1],[15,4],[5,2]],'unobvious',[[21,1],[7,1]],'string',[[25,4],[18,13],[20,1]],'term',[[22,1],[2,1],[14,2],[12,1],[6,2]],'suggests',[[24,2]],'bytes',[[25,13]],'comments',[[22,1],[4,1],[2,3]],'avoids',[[6,1]],'abstracting',[[2,1]],'thrill',[[6,1]],'enemies',[[20,2],[6,3]],'wasn',[[22,2],[18,2],[23,1]],'authors',[[14,1],[6,1]],'reconfigure',[[11,1]],'twice',[[22,3],[4,2],[16,2],[15,2],[12,3]],'decomposed',[[2,1]],'responses',[[10,1]],'happens',[[20,1],[4,2],[7,1]],'resized',[[22,2]],'couple',[[4,1],[7,1],[8,1],[12,1],[5,1]],'peculiarities',[[14,1]],'illuminate',[[15,1]],'segmentation',[[6,1],[2,1]],'nice',[[12,1],[2,1]],'need',[[6,5],[20,2],[22,14],[16,21],[15,5],[21,2],[2,4],[8,5],[9,5],[24,1],[4,3],[10,8],[25,1],[5,8],[23,1],[0,1],[7,9],[11,15],[12,18]],'conduct',[[10,1]],'dissect',[[14,1]],'accompany',[[6,1]],'accustomed',[[22,1],[6,1]],'platformer',[[6,1]],'total',[[22,1],[25,1],[11,2],[5,1]],'require',[[22,2],[24,1],[14,2],[12,1],[6,4]],'writing',[[6,1],[25,2],[12,3],[23,2]],'entertainment',[[20,2],[14,2]],'efficiently',[[2,1]],'edit',[[6,1],[20,1],[22,11],[16,2],[15,4],[17,13],[2,1],[9,3],[3,2],[4,8],[10,1],[5,4],[7,1],[14,3],[11,5],[12,2]],'trajectory',[[10,1],[7,1]],'dashes',[[11,1]],'automated',[[22,1]],'useful',[[12,5],[20,1],[10,2],[22,5],[15,4],[5,1],[2,1],[1,1],[14,2],[11,5],[6,5]],'finger',[[8,1],[4,2],[6,1]],'card',[[5,4]],'spends',[[2,1]],'consecutive',[[19,1],[18,2],[11,2],[6,1]],'act',[[12,1],[2,1]],'generated',[[25,1]],'execution',[[12,2],[2,1]],'understood',[[11,1]],'trembling',[[11,1]],'compatible',[[5,1]],'basis',[[22,1]],'emuversion',[[25,1]],'operational',[[22,1]],'replaying',[[11,1],[6,1],[25,1],[5,2],[8,1],[12,2],[20,2]],' in',[[7,1]],'compared',[[14,1],[6,1]],'typing',[[15,1],[4,1],[7,1],[8,1],[11,1],[12,2]],'serve',[[8,1]],'looking',[[22,1],[8,1],[4,1]],'has',[[20,1],[11,5],[18,2],[22,23],[16,1],[17,1],[9,1],[24,1],[4,2],[10,1],[25,1],[5,10],[14,2],[12,1],[6,5]],'software',[[5,1]],'incorrect',[[8,1],[10,1]],'motion',[[10,1],[14,1]],'optimum',[[14,1]],'ebooks',[[13,1],[4,1]],'inserting',[[19,1],[22,2],[23,1],[9,1],[11,1]],'streamlines',[[23,2]],'download',[[21,1]],'irrelevant',[[22,2],[4,1],[25,2],[5,1],[23,1],[2,1],[9,1],[6,1]],'spectrum',[[10,1]],'decreases',[[11,1],[6,1]],'otherwise',[[22,2],[4,1],[18,1],[15,1],[5,1],[17,1],[11,2]],'highlighting',[[22,3]],'regularities',[[9,1],[6,1]],'value',[[11,3],[20,5],[18,1],[22,20],[25,14],[5,1],[23,2],[2,1],[14,1],[12,1],[6,8]],'700',[[8,1]],'behave',[[9,1]],'additionally',[[24,1],[10,1],[7,1]],'visualizes',[[22,1]],'foresee',[[9,1]],'strings',[[20,1]],'here',[[6,3],[20,3],[22,2],[17,1],[2,2],[8,1],[9,3],[3,2],[10,3],[5,3],[19,1],[0,1],[23,5],[14,1],[7,2],[11,3],[12,4]],'fledged',[[10,1],[6,1]],'operate',[[14,2]],'signals',[[23,1]],'length',[[23,2],[25,5],[5,1]],'recurring',[[2,1]],'land',[[10,1],[6,1]],'sprite',[[10,1],[14,2]],'step',[[20,2],[10,4],[15,2],[5,4],[7,1],[2,2],[8,10],[9,3],[14,2]],'advanced',[[22,4],[18,1],[16,1],[5,1],[19,1],[0,1],[14,4],[1,1],[12,2]],'subject',[[25,1],[14,1]],'rarefied',[[22,1]],'setnote',[[17,2],[18,2]],'scripts',[[22,2],[18,4],[2,1],[12,8]],'changes',[[6,1],[22,32],[18,14],[16,2],[15,6],[17,1],[2,1],[9,1],[3,1],[24,1],[4,6],[10,3],[5,6],[19,1],[23,20],[7,2],[14,1],[11,14],[12,3]],'trial',[[14,1],[9,1],[10,2]],'consequence',[[6,1]],'default',[[22,3],[18,1],[16,1],[15,3],[8,1],[3,1],[24,3],[4,2],[25,2],[5,7],[23,5],[11,30],[6,1]],'consequences',[[10,1],[2,1]],'looped',[[12,1]],'convention',[[25,2]],'indicates',[[25,1]],'words',[[12,6],[25,1]],'modified',[[15,1],[10,1],[18,1],[12,1],[11,2]],'habits',[[19,1],[22,1],[2,1],[8,1]],'examples',[[17,29],[18,1],[14,8]],'integer',[[20,2],[25,6]],'process',[[6,12],[20,4],[22,5],[17,2],[2,6],[8,2],[9,2],[4,1],[10,4],[5,7],[19,1],[0,1],[23,3],[7,5],[1,2],[14,6],[11,4],[12,5]],'page',[[22,2],[24,3],[16,6],[15,2],[5,9]],'unequal',[[22,1]],'afraid',[[4,1],[9,1]],'newly',[[22,6],[8,2],[11,1],[5,1]],'dialog ',[[23,1]],'speak',[[5,1]],'mentioned',[[23,1]],'tool',[[22,3],[5,1],[23,6],[14,3],[1,1],[20,1],[12,3]],'shooting',[[5,1],[12,2],[9,4],[6,1]],'ready',[[10,2],[2,1],[11,1],[5,1]],'executed',[[22,2],[23,1],[9,1],[12,5]],'selectively',[[22,2]],'painting',[[22,1]],'overtakes',[[6,1]],'polish',[[10,2],[9,1],[7,3]],'obtained',[[22,1]],'soft',[[25,2]],'walkthroughs',[[14,1]],'wants',[[22,2]],'tell',[[10,1],[4,1],[5,1]],'engine',[[23,2],[14,1],[11,1],[6,2]],'branch9',[[17,2]],'eof',[[25,1]],'optimally',[[8,1],[12,1],[6,1]],'compensating',[[2,1]],'physical',[[5,1]],'perfectness',[[7,1],[6,3]],'used',[[6,1],[22,12],[15,5],[17,30],[2,2],[8,9],[9,2],[3,3],[24,8],[4,2],[10,1],[25,16],[5,9],[23,4],[7,8],[13,1],[14,12],[11,9],[12,5]],'submenu',[[11,3]],'trick',[[6,9],[14,1],[2,3]],'menus',[[19,1],[15,1]],'missing',[[22,1],[5,1]],'calls',[[22,3],[25,2]],'master',[[8,2],[12,3]],'aware',[[11,1],[7,1],[9,1],[6,1]],'expected',[[20,1],[2,1],[13,1],[14,1],[12,2],[6,2]],'functionality',[[22,2],[2,2],[21,1],[5,1]],'label',[[15,1],[4,6],[16,2],[12,2],[5,2]],'numeric',[[5,1],[22,2],[12,1],[11,2]],'general',[[9,1],[14,1],[4,1],[10,2],[20,2],[22,1],[2,1],[1,1],[7,1],[8,1],[6,1]],'bit7',[[25,2]],'convenience',[[19,1],[4,1],[2,1],[5,1]],'exhausted',[[20,2]],'careful',[[14,1]],'this',[[22,74],[11,57],[18,11],[6,20],[15,20],[2,9],[8,15],[9,17],[3,3],[25,6],[7,18],[1,1],[13,1],[16,7],[21,1],[17,3],[24,10],[4,24],[10,14],[5,36],[19,4],[0,2],[23,2],[14,11],[12,29],[20,9]],'excel',[[6,1]],'says',[[22,2]],'emulated',[[6,1],[22,6],[4,1],[16,1],[15,1],[5,2],[23,2],[14,4],[12,1],[11,2]],'temporarily',[[8,1],[4,1],[11,1]],'primarily',[[22,1]],'straightforwardly',[[5,1]],'three',[[22,2],[7,2],[20,1],[5,2]],'branches',[[11,1],[22,17],[18,1],[16,2],[15,4],[17,3],[2,4],[24,4],[5,12],[19,2],[23,11],[7,2],[14,3],[20,1],[12,1]],'causing',[[12,1]],'shrink',[[22,1],[23,1],[6,1]],'byte',[[22,1],[18,1],[25,9]],'algorithm',[[22,2],[12,2],[14,1]],'bits',[[18,1],[25,3]],'light',[[22,6],[24,1],[4,5],[10,1],[16,1],[15,1],[5,15],[14,2],[8,1],[11,3],[6,2]],'distributing',[[23,1]],'leave',[[6,1],[12,5],[4,1],[10,3],[20,1],[16,1],[15,1],[22,3],[8,1],[11,5],[9,1]],'pasteinsert',[[17,5],[15,1]],'inspects',[[23,1]],'whose',[[17,1],[22,8]],'fresh',[[6,1]],'reasonable',[[8,1],[11,1],[6,2]],'screenshot',[[22,6],[15,4],[5,1],[19,1],[23,5],[14,3],[11,3]],'configure',[[11,5]],'caring',[[24,1],[2,1],[11,1],[5,1]],'performing',[[5,1]],'bird',[[2,1]],'graph',[[5,3]],'absolute',[[6,1]],'sequencers',[[14,1]],'believe',[[6,1]],'based',[[22,5],[23,1],[4,1],[6,2]],'skips',[[11,1]],'condition',[[24,1]],'сохраняются',[[22,1]],'let',[[3,1],[12,2],[4,2],[22,2],[5,1],[7,1],[9,2],[6,2]],'provides',[[22,5],[23,3],[5,1]],'semi',[[12,1]],'responsible',[[3,1],[22,2],[4,1],[8,2],[15,3]],'criteria',[[20,2],[7,1]],'subfolder',[[12,2],[18,1]],'representation',[[22,1],[25,1],[14,1]],'inaccuracy',[[14,1]],'maximizing',[[6,2]],'accompanying',[[14,1]],'overwritten',[[17,1],[7,1],[11,1],[5,1]],'beautiful',[[22,1],[7,1]],'integrated',[[0,1],[12,1]],'head',[[22,6],[11,2],[12,1]],'coincide',[[14,1]],'reverting',[[11,1]],'premise',[[23,2],[6,1]],'apply',[[6,1],[22,2],[10,1],[18,1],[15,2],[23,2],[7,2],[8,1],[12,4],[11,1]],'hedgehog',[[14,1]],'immediate',[[22,1],[5,2]],'rewrite',[[8,2],[7,1]],'difficulties',[[6,1]],'claim',[[12,1]],'requirement',[[20,1]],'another',[[20,1],[6,7],[22,3],[21,1],[15,2],[17,4],[9,2],[24,1],[4,1],[10,1],[5,5],[23,2],[7,4],[14,5],[11,5],[12,6]],'reflects',[[19,1],[22,1],[12,1],[23,1]],'#selection_table',[[12,1]],'emphasizes',[[14,1]],'efficient',[[10,1]],'letter',[[4,2]],'applychanges',[[23,1]],'observing',[[19,1],[16,1]],'trends',[[1,1]],'runs',[[6,2],[22,1],[4,1],[10,1],[18,2],[5,1],[23,1],[12,3],[11,5]],'usage',[[2,1],[1,1],[8,1],[12,6],[5,1]],'dragged',[[17,1]],'named',[[17,1],[22,1],[2,1],[23,1]],'backslash',[[15,1]],'registers',[[22,1],[12,2],[18,2]],'behavior',[[6,3],[24,3],[16,1],[2,1],[14,1],[12,1],[11,4]],'depicted',[[14,1]],'dummy',[[25,2]],'projected',[[22,1]],'caused',[[17,1],[14,1]],'piano_roll',[[25,1],[23,1]],'resend',[[23,1]],'adapt',[[8,1],[10,1],[11,1]],'relaxation',[[6,1]],'attempting',[[9,1]],'unfinished',[[6,1]],'backspace',[[15,2],[11,1],[5,1]],'releasing',[[24,1],[12,1]],'script',[[17,5],[22,2],[18,7],[12,16],[15,2]],'mood',[[12,1]],'recreate',[[19,1],[12,1]],'reacts',[[23,3]],'simultaneous',[[10,1]],'ensure',[[5,1],[24,1],[7,1],[6,1]],'forums',[[12,1],[2,2]],'repetition',[[12,1]],'window',[[6,2],[20,1],[18,1],[22,25],[16,3],[15,7],[2,1],[3,12],[24,9],[4,6],[10,6],[5,8],[19,3],[23,11],[14,1],[12,11],[11,11]],'line',[[22,20],[24,1],[4,11],[25,3],[5,7],[17,3],[14,1],[12,4],[11,3]],'averts',[[6,1]],'justify',[[2,1]],'reveals',[[21,1],[6,1]],'modification',[[22,1],[10,6],[21,1],[5,1],[17,3],[23,4],[7,4],[14,2],[9,3]],'cursors',[[22,2],[4,1]],'porting',[[22,1],[21,1],[24,1]],'you',[[6,120],[20,33],[18,23],[22,101],[16,42],[15,46],[21,3],[17,2],[2,43],[8,49],[9,65],[3,13],[24,3],[4,71],[10,45],[25,1],[5,99],[19,14],[0,3],[7,55],[14,8],[11,141],[12,102]],'above',[[9,2],[20,3],[4,9],[22,9],[16,6],[15,2],[5,6],[19,1],[11,7],[12,2]],'taseditor_window',[[23,1]],'thorough',[[14,1]],'parameter',[[17,1],[11,1]],'striving',[[16,1],[6,1]],'achieved',[[20,1],[2,2]],'patience',[[2,1]],'must',[[22,4],[6,2],[18,1],[16,1],[2,1],[8,1],[24,1],[25,6],[5,2],[19,1],[23,3],[7,1],[12,1],[11,3]],'response',[[23,1]],'removed',[[19,1],[22,3],[4,2],[24,1],[11,2]],'contradict',[[24,1],[6,3]],'piano',[[20,2],[22,68],[16,23],[15,33],[17,17],[2,1],[8,1],[9,3],[3,3],[24,3],[4,20],[10,2],[25,4],[5,13],[19,5],[23,12],[14,17],[7,1],[12,8],[11,20]],'invalidation',[[18,1]],'arising',[[13,1]],'examined',[[20,1]],'unnatural',[[4,1]],'span',[[11,1]],'look',[[12,1],[22,1],[4,1],[10,3],[5,2],[0,1],[2,1],[7,1],[8,1],[11,2],[6,1]],'express',[[6,1]],'neighbor',[[11,1],[5,1]],'strategies',[[22,1],[24,1],[7,1],[14,1],[8,1],[11,3]],'rely',[[20,2],[9,1],[6,1]],'redrawn',[[22,1],[12,1]],'ascii',[[25,1]],'wasted',[[6,1]],'stays',[[4,1],[9,1]],'recovered',[[22,2]],'scenes',[[9,1],[10,1]],'nameless',[[24,3]],'sensibly',[[12,1],[6,1]],'ago',[[22,1],[4,1],[2,1],[11,4]],'eventually',[[4,1],[6,1]],'confine',[[12,1],[2,1]],'notice',[[6,4],[24,1],[4,1],[2,3],[11,1],[5,2]],'ctrl',[[22,19],[16,11],[15,43],[17,6],[9,3],[3,2],[24,11],[4,5],[10,3],[5,18],[14,1],[12,5],[11,5]],'first',[[6,8],[20,2],[18,3],[22,20],[16,1],[17,14],[2,4],[8,5],[9,6],[24,2],[4,9],[10,7],[25,5],[5,6],[19,2],[0,1],[23,4],[7,5],[11,10],[12,14]],'shoot',[[5,2],[20,1],[9,1],[6,2]],'resyincing',[[6,1]],'etc',[[3,1],[6,1],[22,6],[5,1],[23,2],[14,5],[8,2],[12,1],[9,1]],'regard',[[6,2]],'prohibit',[[23,1]],'fixing',[[7,8],[8,1],[6,2]],'instant',[[11,4],[12,1],[10,2],[22,3],[9,2],[5,1]],'deleting',[[17,2],[19,1],[14,1],[23,3]],'dramatically',[[22,1],[12,2],[6,1]],'rendering',[[8,1]],'rerecords',[[22,4],[7,1],[2,1],[14,1],[6,1]],'100',[[22,1],[25,2],[10,2],[11,5],[6,2]],'except',[[17,1],[25,1],[4,1],[16,2],[15,1],[12,2]],'triggers',[[5,1]],'stopseeking',[[18,2]],'unset',[[17,3],[22,1],[11,2],[15,1]],'simple',[[20,2],[6,5],[22,3],[2,2],[8,2],[9,1],[3,1],[10,2],[25,1],[5,2],[14,1],[7,1],[11,2],[12,4]],'hello',[[17,1]],'tired',[[8,1],[20,3],[2,1]],'zone',[[14,1],[23,1],[2,1]],'despite',[[5,1],[22,1],[12,1],[6,1]],'1200',[[22,4]],'modules',[[25,7],[23,4]],'sequencing',[[4,1]],'alone',[[6,1]],'joyful',[[6,1]],'insignificant',[[4,1]],'slots',[[22,2],[24,2],[5,2],[7,6],[14,1],[8,6],[20,1],[11,1]],'interact',[[22,1]],'priority',[[22,1]],'recalling',[[12,1]],'revise',[[6,1]],'manner',[[19,1],[12,1],[15,1]],'builds',[[2,1]],'questions',[[13,1],[19,1]],'storing',[[22,2],[6,1],[23,1],[14,3],[8,4],[11,1],[9,1]],'showing',[[4,1]],'tweaking',[[22,2],[10,1]],'specifics',[[22,1],[11,1]],'relations',[[23,2]],'canceled',[[22,1]],'calculates',[[23,1]],'symbolizes',[[22,1],[5,1]],'loops',[[12,1]],'clearly',[[22,1],[7,1],[12,1],[6,1]],'least',[[22,5],[4,1],[15,1],[5,1],[17,3],[23,1],[14,1],[12,3],[6,1]],'spontaneous',[[6,1]],'file',[[22,18],[21,1],[17,3],[8,1],[3,6],[24,26],[25,15],[5,1],[19,4],[23,24],[14,1],[12,42],[11,4]],'prepare',[[4,1],[7,1],[8,1],[12,1]],'infinite',[[12,1]],'resist',[[2,1]],'additional',[[22,5],[10,1],[5,1],[19,1],[23,1],[1,1],[8,1],[11,3],[6,1]],'whereas',[[22,1]],'man',[[6,1],[2,1]],'emotional',[[6,1],[7,1],[2,1]],'armed',[[12,1]],'compound',[[20,1]],'formula',[[20,2]],'stereotypes',[[2,2]],'consuming',[[2,1]],'disabling',[[24,1],[11,1]],'matter',[[6,1],[15,1],[2,1],[11,1],[5,1]],'routine',[[12,1],[5,1]],'dumped',[[15,1]],'neighboring',[[22,1]],'featured',[[24,1],[18,1]],'agreement',[[24,1]],'3rd',[[22,4],[25,1],[10,2],[20,1],[5,1]],'putting',[[9,1]],'brainer',[[12,1]],'modifications',[[6,1],[10,1],[23,3],[17,1],[7,2],[11,1],[9,1]],'accounting',[[5,1]],'dictate',[[2,1]],'pixels',[[22,7],[6,1]],'encourage',[[21,1]],'property',[[20,3]],'emulates',[[5,1]],'chain',[[9,1]],'got',[[8,1],[12,1]],'sets',[[22,1],[18,2],[23,1]],'quarter',[[17,1]],'ignore',[[6,1],[18,6],[2,1]],'appearance',[[3,1],[22,1],[12,2],[23,2]],'become',[[14,1],[22,3],[4,5],[10,2],[18,1],[15,3],[5,1],[2,2],[7,1],[8,2],[11,3],[6,2]],'nearby',[[16,2],[11,1],[23,1]],'area',[[22,6],[24,1],[16,2],[15,4],[5,1],[23,1],[12,1],[11,3]],'meaning',[[5,1],[23,1],[12,1],[6,1]],'direction',[[5,1],[22,1],[10,1],[7,1],[24,1],[6,1]],'attribute',[[22,1]],'very',[[6,6],[20,1],[22,3],[16,1],[17,8],[2,3],[8,2],[9,2],[3,1],[4,4],[10,3],[5,3],[23,2],[14,1],[7,4],[11,2],[12,4]],'windows',[[3,1],[22,6],[4,1],[23,5],[11,1],[15,3]],'cheats',[[15,1]],'convenient',[[5,1],[22,1],[12,1],[6,1]],'provided',[[17,1],[22,1],[18,2],[16,2],[9,1]],'logic',[[23,1],[10,1],[2,1],[14,1],[8,1],[6,2]],'literally',[[11,1]],'root',[[22,1],[5,1]],'info',[[23,9],[11,1],[5,4]],'constructed',[[14,1]],'9px',[[22,2]],'tapping',[[4,2],[12,1]],'criticize',[[6,1]],'increments',[[22,3]],'opens',[[24,1],[11,1]],'applied',[[5,1],[17,1],[23,1],[14,1],[12,2],[6,2]],'searches',[[22,2],[23,1]],'getsuperimpose',[[18,2]],'sense',[[22,2],[7,1],[12,1],[11,1]],'think',[[6,4],[22,3],[10,2],[19,2],[7,1],[8,2],[12,2],[9,3]],'shouldn',[[23,2],[10,1],[8,1],[6,1]],'satisfying',[[9,1]],'guid',[[25,1]],'fields',[[22,2],[25,1],[10,1],[15,1],[11,1]],'laziness',[[6,1]],'occurred',[[24,1],[4,1],[18,1]],'font',[[22,1],[4,1]],'identify',[[22,1]],'cleans',[[11,1]],'odd',[[11,1]],'proper',[[12,1]],'kindle',[[13,1],[4,1],[15,1]],'detached',[[22,3],[11,1]],'exactly',[[9,1],[6,3],[22,1],[16,1],[7,2],[2,1],[11,2],[12,2]],'orderly',[[8,1]],'highest',[[22,1],[5,1]],'interpret',[[25,1],[4,1],[18,1]],'pits',[[6,1]],'september',[[22,1]],'depend',[[22,2],[18,1],[25,1]],'switched',[[11,1],[2,1]],'tasvideos',[[19,2],[2,2],[12,5],[6,1]],'isn',[[11,1],[12,1],[4,1],[10,1],[18,2],[5,1],[7,1],[8,1],[9,1],[6,1]],'license',[[21,2]],'until',[[20,8],[6,5],[18,5],[22,6],[8,3],[9,3],[3,1],[10,4],[5,1],[7,1],[14,1],[11,6],[12,1]],'logically',[[8,1],[4,1]],'faq',[[13,1],[0,1],[19,2]],'containing',[[24,1],[4,1],[18,1],[16,1],[15,4],[5,1],[17,2],[14,3],[12,1],[6,1]],'mutual',[[2,1]],'similarly',[[22,2],[24,1],[4,1],[12,1]],'objects',[[14,3],[6,1]],'distinguish',[[22,1],[11,1],[23,1]],'processor',[[14,1]],'include',[[25,1]],'unskippable',[[6,1]],'confirms',[[22,1],[11,1]],'attack',[[12,1],[14,1]],'recharge',[[6,1]],'choosing',[[5,1],[24,1],[20,1],[6,1]],'travels',[[4,1]],'literary',[[6,1]],'taseditor_config',[[23,4]],'main',[[6,1],[22,1],[16,1],[15,2],[2,2],[9,2],[3,2],[24,1],[4,1],[10,2],[5,4],[19,2],[23,3],[14,2],[11,5],[12,6]],'shortly',[[20,1]],'markings',[[8,1]],'disappears',[[17,1],[22,2],[11,2]],'engaged',[[24,8],[18,27],[15,1],[23,3],[19,1],[12,1],[11,2]],'devote',[[4,1],[10,1]],'write',[[22,1],[18,1],[25,2],[5,1],[17,1],[7,6],[2,1],[8,2],[12,6]],'fortunately',[[10,1],[7,1]],'mass',[[22,1],[23,1],[4,4],[11,2],[6,1]],'unrelated',[[4,1]],'high',[[4,1],[10,3],[2,1],[14,1],[8,1],[11,1],[12,1]],'short',[[6,2],[22,1],[4,1],[16,2],[5,3],[8,1],[12,2],[11,1]],'repeat',[[22,1],[7,1],[8,3],[12,2]],'all',[[6,14],[14,11],[18,4],[20,7],[22,42],[16,2],[15,5],[21,1],[17,5],[2,5],[8,1],[9,5],[3,2],[24,6],[4,12],[10,6],[25,6],[5,18],[23,23],[7,13],[1,1],[13,2],[11,18],[12,18]],'lack',[[9,1]],'caption',[[3,2],[22,3],[24,1],[15,1],[5,1],[23,5],[12,1],[11,1]],'subconsciously',[[9,1]],'suffixes',[[23,1]],'releases',[[22,1],[12,2],[5,1]],'material',[[2,1]],'preceding',[[22,1],[5,1]],'grid',[[14,1]],'ones',[[22,1],[4,1],[2,1],[20,1]],'selects',[[22,1],[6,2]],'skim',[[12,1]],'platform',[[19,1],[22,1],[6,1]],'alternately',[[7,2]],'resave',[[11,1]],'ungreenzone',[[15,1]],'registerauto',[[18,3]],'lights',[[23,2]],'avoid',[[6,2],[22,1],[24,2],[14,1],[12,1],[11,2]],'range',[[22,4],[24,1],[4,1],[18,8],[5,1],[2,1],[12,4],[11,2]],'factum',[[7,1]],'amusement',[[6,1]],' the',[[15,1]],'break',[[22,1],[6,1],[4,1],[23,1],[8,1],[12,1],[11,1]],'closing',[[6,1]],'misses',[[8,1]],'duplicate',[[2,1]],'settings',[[22,4],[2,1],[3,2],[24,2],[4,1],[25,1],[5,1],[19,1],[23,9],[14,1],[1,1],[11,7],[12,1]],'manager',[[22,1],[23,9]],'session',[[4,1],[11,1]],'infinitely',[[11,1]],'several',[[6,6],[22,3],[18,3],[15,2],[17,9],[2,2],[8,1],[4,5],[10,2],[25,2],[5,3],[7,5],[12,6],[11,4]],'tremendous',[[7,1]],'enough',[[6,6],[12,5],[4,2],[20,3],[22,3],[24,1],[2,3],[7,3],[11,3],[9,1]],'give',[[22,1],[6,2]],'algorithms',[[14,2]],'keyframe',[[17,1],[22,4],[23,1]],'his',[[6,4],[22,1],[4,1],[10,2],[24,1],[2,6],[14,2],[12,2],[9,1]],'hundred',[[5,1],[11,3],[10,1],[22,1],[9,1],[6,1]],'two',[[6,6],[20,4],[18,2],[22,6],[15,2],[17,1],[2,1],[8,2],[9,1],[4,2],[10,2],[25,2],[5,2],[19,2],[23,4],[14,1],[7,3],[11,1],[12,4]],'background',[[5,2],[22,6],[15,2],[11,1]],'basics',[[2,1]],'convince',[[7,1]],'puts',[[22,2]],'box',[[12,1]],'revokes',[[8,1]],'http',[[21,1],[12,1]],'computer',[[24,1],[10,1],[14,2],[11,3],[5,1]],'spatial',[[5,2]],'skillful',[[6,1]],'minimum',[[14,1],[22,6],[7,1]],'filesystem',[[23,1]],'remaining',[[3,1],[22,1],[25,3],[8,1],[11,1],[6,2]],'disabled',[[11,13],[22,1],[10,1],[24,2],[9,3],[5,1]],'extends',[[22,1]],'disadvantage',[[9,1]],'unsuccessful',[[6,1]],'protection',[[24,1]],'difference',[[22,9],[4,1],[10,1],[5,1],[19,1],[23,3],[2,1],[14,1],[11,1]],'principal',[[7,1]],'arguments',[[22,1]],'pause',[[22,4],[4,3],[15,7],[5,3],[23,3],[11,4],[9,3]],'please',[[0,1]],'threshold',[[7,1],[2,1]],'depending',[[9,2],[6,2],[4,2],[22,3],[16,1],[25,1],[5,1],[17,2],[11,3],[12,2]],'autoscroll',[[5,1]],'getcurrentbranch',[[18,2]],'megaman',[[12,1]],'distract',[[8,1]],'partially',[[22,3],[24,1],[11,2],[12,1]],'yourself',[[6,1],[12,2],[2,1],[7,1],[9,1],[5,1]],'killing',[[9,1],[2,1]],'options',[[6,1],[12,1],[10,1],[5,1],[19,1],[7,1],[11,3],[9,1]],'rest',[[3,1],[22,2],[24,3],[11,3],[6,1]],'corresponding',[[22,11],[4,4],[16,1],[25,1],[5,5],[17,1],[12,2],[11,6]],'jumpnextmarker',[[24,1]],'purple',[[22,3],[4,1],[11,2],[5,3]],'coherent',[[2,1]],'haven',[[4,1],[10,1]],'cultivate',[[8,1]],'special',[[6,1],[22,2],[16,2],[23,1],[2,1],[14,1],[12,1],[9,1]],'fires',[[22,2],[15,3]],'compressing',[[23,1]],'watches',[[5,1],[22,2],[7,1],[6,1]],'gate',[[23,2]],'projects',[[3,1],[22,1],[24,2],[25,1],[23,1],[7,1],[2,3],[11,3],[12,5]],'seek',[[25,1],[10,2],[9,2],[5,3]],'append',[[15,1],[6,1]],'cutscene',[[6,1]],'confirm',[[9,1],[11,1]],'register',[[22,1],[12,1],[18,3]],'hints',[[3,1],[9,1]],'consistent',[[22,2],[6,1]],'adjusting',[[11,1]],'needs',[[12,3],[20,1],[4,1],[10,1],[22,4],[24,1],[5,1],[23,1],[2,2],[7,1],[11,2],[6,2]],'controlled',[[15,2],[2,1]],'drastically',[[2,1]],'paths',[[3,1]],'prudence',[[7,1]],'gaps',[[22,8],[23,1],[16,2],[11,2],[15,2]],'win',[[12,1]],'cached_timelines',[[23,1]],'detailed',[[1,1],[2,1]],'release',[[22,3],[24,1],[10,1],[15,7],[25,1],[17,3],[12,1],[6,2]],'manuals',[[19,1]],'finish',[[22,1],[4,1],[2,1],[15,1],[6,2]],'maybe',[[6,1],[5,1]],'brighter',[[5,1]],'spending',[[6,1]],'grow',[[6,2]],'integral',[[2,1]],'txt',[[24,1],[12,1]],'dispirit',[[6,1]],'dissipate',[[2,1]],'mean',[[4,1],[11,2]],'traps',[[6,1]],'removemarker',[[17,2],[18,2]],'sitting',[[22,1],[5,1]],'attach',[[19,1],[24,1],[9,1]],'implication',[[22,1]],'informational',[[10,1],[4,1],[2,1]],'capacity',[[24,3],[11,5],[23,1]],'profitable',[[7,1]],'probably',[[4,1],[2,1],[8,1],[12,3],[6,1]],'skills',[[14,1],[16,1],[21,1],[6,2]],'shiny',[[7,1]],'func',[[18,4]],'goal',[[14,1],[20,1],[10,1],[7,5],[2,2],[8,1],[9,1],[6,23]],'bool',[[25,5],[18,4],[20,1]],'evaluating',[[14,1],[22,1],[7,1]],'button',[[6,13],[22,39],[18,6],[16,10],[15,41],[17,6],[2,2],[8,1],[9,10],[24,7],[4,23],[10,11],[25,6],[5,38],[19,1],[23,6],[14,5],[7,2],[11,9],[12,25]],'calling',[[22,1],[18,2],[12,1],[25,1]],'submitinputchange',[[17,1],[22,1],[18,2],[12,1]],'whenever',[[22,1]],'idle',[[11,1]],'untouched',[[11,1]],'name',[[22,3],[11,1],[18,9],[15,1],[17,4],[3,3],[24,11],[25,1],[5,1],[19,1],[23,1],[14,1],[12,5],[6,1]],'documented',[[2,1]],'full',[[22,2],[18,2],[15,2],[9,1],[24,1],[10,2],[25,1],[5,1],[19,1],[23,4],[14,3],[11,1],[6,1]],'bug',[[19,1],[14,2]],'lua',[[22,18],[11,2],[18,5],[15,3],[17,18],[3,1],[24,1],[5,4],[23,9],[0,1],[14,5],[13,2],[20,2],[12,14]],'come',[[7,1],[2,1],[8,1],[12,1]],'vertically',[[22,1],[4,1],[6,1]],'net',[[21,1]],'supports',[[12,1],[2,2],[11,2],[5,1]],'comprehending',[[6,1]],'emphasis',[[9,1],[10,1]],'provokes',[[8,1],[10,1]],'paints',[[22,1]],'quicker',[[8,1],[2,1]],'system',[[22,4],[0,1],[14,2],[15,3],[25,1]],'component',[[22,1],[5,1]],'hidden',[[20,1],[22,1],[14,2],[12,2],[6,2]],'rise',[[6,1]],'wall',[[9,2],[6,3]],'narrows',[[10,1]],'shows',[[17,2],[22,3],[4,4],[10,2],[24,2],[23,1]],'backup',[[22,1],[8,1],[24,1]],'meant',[[22,1],[4,1]],'timers',[[12,1]],'hovering',[[22,1],[24,1]],'english',[[0,1]],'glitch',[[14,1],[6,1]],'discoveries',[[6,2]],'commands',[[22,3],[24,4],[18,1],[15,3],[23,7],[19,2],[5,1],[25,3]],'bookmark',[[11,18],[20,5],[22,62],[16,3],[15,17],[17,13],[8,9],[9,5],[24,6],[10,3],[5,52],[19,3],[23,7],[14,3],[12,1],[6,7]],'adheres',[[8,1]],'table',[[3,1],[22,2],[4,2],[18,6],[15,1],[23,1],[14,1]],'meaningless',[[25,1],[14,1]],'saturated',[[22,1]],'flashings',[[23,4]],'compact',[[22,2],[25,1],[12,14],[23,1]],'nowadays',[[14,1]],'listbox',[[24,3],[11,1]],'edition',[[22,1],[11,1],[18,1],[6,1],[15,1],[2,1],[8,1],[9,1],[3,1],[25,1],[7,1],[1,1],[13,1],[16,1],[21,1],[17,1],[24,1],[4,1],[10,1],[5,1],[19,1],[0,1],[23,1],[14,1],[12,1],[20,1]],'preferences',[[3,1]],'economy',[[11,1]],'section',[[6,1],[22,3],[16,1],[15,1],[21,1],[17,1],[2,2],[4,2],[25,2],[5,18],[7,1],[14,1],[12,1],[11,1]],'objectivity',[[9,1],[2,1]],'deploying',[[23,1]],'represented',[[22,1],[25,2]],'assistance',[[0,1]],'shades',[[22,1],[11,1]],'disclose',[[22,1]],'rolled',[[22,2],[15,1]],'factors',[[12,2],[20,2],[10,3],[5,1],[7,4],[8,1],[9,2],[6,23]],'decompression',[[23,4]],'letters',[[4,3]],'shifts',[[22,2]],'famicom',[[15,2],[25,1]],'abused',[[14,1]],'tortoisesvn',[[21,1]],'animates',[[23,1]],'where',[[6,8],[20,5],[18,2],[22,5],[16,5],[15,4],[17,14],[9,6],[24,1],[4,4],[10,4],[25,1],[5,10],[19,1],[7,1],[14,1],[11,4],[12,7]],'scrollbar',[[22,1],[4,1],[16,4],[15,1]],'standards',[[12,1]],'unparalleled',[[2,1]],'save',[[20,4],[22,4],[15,14],[17,1],[2,2],[8,3],[9,3],[24,16],[10,2],[25,4],[5,4],[19,2],[23,8],[14,2],[7,3],[12,16],[11,9]],'uploading',[[2,1]],'insistent',[[8,1],[10,1]],'yyy',[[25,2]],'worked',[[10,1]],'retrieved',[[22,1]],'gamepad',[[15,3],[5,3],[17,3],[2,2],[14,3],[11,10],[6,1]],'data',[[6,1],[20,1],[18,1],[22,51],[16,9],[15,1],[17,7],[2,1],[8,1],[9,1],[3,1],[24,6],[4,4],[25,25],[5,11],[19,1],[23,51],[14,12],[7,3],[11,9],[12,10]],'f10',[[24,1],[15,2],[5,3],[17,3],[7,1],[8,1],[11,3]],'track',[[22,3],[20,1],[14,1]],'interface',[[3,3],[22,3],[4,1],[23,6],[19,1],[0,1],[2,3],[1,1],[14,1],[11,1]],'macro',[[22,3],[12,1]],'improving',[[9,1],[6,1]],'pixel',[[22,2]],'caches',[[23,1]],'affects',[[7,1],[16,1],[11,1],[6,1]],'race',[[14,1]],'figuring',[[2,1]],'language',[[2,1],[14,1],[12,2],[5,1]],'resyncing',[[10,1]],'fear',[[9,1]],'unsatisfactory',[[7,1]],'literature',[[12,1]],'bullet',[[9,4],[6,1]],'question',[[6,1],[24,1],[2,1],[7,2],[15,1],[5,1]],'facts',[[2,1]],'started',[[22,3],[9,1],[11,1]],'stretching',[[24,1]],'bit2',[[25,2]],'fds',[[24,2],[18,2],[15,4],[25,2]],'minor',[[22,1],[23,1],[7,1],[6,1]],'created',[[22,5],[11,3],[18,2],[6,1],[15,1],[2,2],[8,2],[9,2],[3,1],[25,2],[7,4],[1,1],[13,1],[16,1],[21,1],[17,32],[24,1],[4,1],[10,1],[5,4],[19,1],[0,1],[23,1],[14,4],[12,5],[20,1]],'craftily',[[2,1]],'side',[[22,7],[24,2],[18,1],[15,7],[25,2],[7,1],[6,2]],'monstrous',[[5,1]],'subdivide',[[6,1]],'scenarios',[[5,1]],'details',[[22,6],[24,1],[4,1],[21,2],[15,1],[19,1],[0,1],[20,3],[12,2]],'freely',[[11,1],[15,1]],'account',[[22,1]],'pops',[[9,1],[5,1]],'beginning',[[6,14],[22,11],[16,21],[15,6],[8,8],[9,6],[24,2],[4,3],[10,5],[25,3],[5,7],[23,3],[7,4],[14,1],[11,1],[12,8]],'critic',[[6,1]],'relieved',[[12,1]],'bookmark2',[[17,1]],'number',[[6,3],[20,5],[18,21],[22,60],[16,2],[15,7],[17,21],[2,1],[8,1],[9,2],[3,1],[24,2],[4,10],[10,1],[25,10],[5,12],[19,2],[23,1],[14,1],[11,6],[12,2]],'%03d',[[25,2]],'knows',[[4,1]],'adding',[[22,1],[4,1],[14,1],[12,1],[23,1]],'safely',[[24,1],[9,1]],'added',[[3,1],[22,3],[4,1],[25,4],[17,12],[19,1],[12,2]],'indulge',[[6,1]],'allowed',[[6,2]],'automatically',[[20,2],[22,13],[16,4],[15,3],[17,1],[9,2],[3,1],[24,1],[4,6],[10,2],[5,6],[23,1],[7,2],[14,2],[12,3],[11,4]],'trail',[[4,2]],'tutorial',[[19,1],[2,1]],'doc',[[19,1],[21,1],[9,1]],'mention',[[22,1]],'counter',[[22,14],[18,1],[15,4],[2,3],[14,1],[11,1],[6,6]],'selection_table',[[12,3]],'boolean',[[22,1]],'pushing',[[14,1]],'always',[[6,6],[20,3],[22,12],[16,2],[15,2],[2,2],[8,2],[9,3],[24,4],[4,3],[10,1],[25,5],[5,5],[23,2],[14,1],[7,6],[11,4],[12,3]],'mostly',[[3,1],[19,1],[7,1],[11,1],[6,1]],'imply',[[4,1]],'excessively',[[6,1]],'learning',[[3,1],[10,1],[2,2],[1,1]],'almost',[[22,3],[4,3],[10,1],[7,3],[2,2],[14,1],[9,1],[11,1]],'records',[[6,1],[22,2],[4,1],[25,2],[5,1],[17,1],[7,2],[12,1],[11,1]],'respective',[[22,2],[15,1],[5,1],[23,3],[25,1],[14,2],[20,1],[11,3]],'seconds',[[4,1],[7,1],[10,1],[14,1],[11,1],[6,1]],'significantly',[[22,2],[24,1],[11,2]],'codebase',[[23,1]],'today',[[12,1]],'transpose',[[24,1],[16,1],[15,1]],'ability',[[22,8],[24,1],[7,1],[2,2],[6,1]],'delivers',[[12,1]],'sequence',[[6,3],[22,6],[4,2],[10,1],[18,1],[16,1],[17,2],[7,2],[14,7],[12,12],[11,2]],'players',[[12,2],[4,1],[5,1],[19,1],[2,1],[7,2],[14,1],[11,1],[6,2]],'chapter',[[3,3],[12,1],[10,1],[16,1],[15,2],[5,1],[2,1],[7,1],[11,5],[6,2]],'workspace',[[3,1],[4,1]],'teleporter',[[6,1]],'there',[[6,6],[20,3],[18,5],[22,21],[16,1],[15,3],[17,8],[2,3],[8,5],[9,3],[3,3],[4,9],[10,7],[25,4],[5,5],[19,4],[23,5],[14,1],[7,6],[11,9],[12,8]],'platforms',[[22,4],[21,1],[24,1]],'specific',[[3,1],[20,1],[18,1],[22,1],[16,2],[23,3],[17,1],[14,1],[12,1],[6,2]],'auto',[[22,6],[18,6],[15,2],[2,3],[8,1],[9,1],[3,1],[24,2],[4,1],[10,2],[5,3],[23,3],[12,2],[11,2]],'explain',[[19,1],[2,1]],'logical',[[12,1],[4,1],[2,1],[9,2],[6,2]],'along',[[22,3],[4,1],[5,1],[7,1],[8,1],[12,1],[11,3]],'screenshots',[[15,1],[22,7],[20,3],[11,6]],'rooms',[[6,1]],'peculiarity',[[6,1]],'luck',[[10,1],[14,3],[9,1],[20,1]],'fm3s',[[25,1]],'flag',[[22,1]],'speed',[[22,5],[6,9],[15,9],[2,1],[8,2],[9,3],[24,1],[10,2],[5,5],[23,1],[14,9],[7,2],[11,4],[12,3]],'urging',[[3,1]],'view',[[3,1],[22,3],[24,2],[16,2],[5,7],[19,2],[2,2],[14,1],[11,9]],'newlines',[[25,2]],'updating',[[23,1],[14,1]],'slowing',[[14,1],[2,1]],'excluding',[[22,1]],'pair',[[22,1],[20,1]],'fcexp',[[25,1]],'dissection',[[1,1]],'obligatory',[[11,1]],'getinput',[[12,1],[18,2]],'expanded',[[22,1]],'unpaused',[[22,1],[18,2],[7,1],[15,1],[5,1]],'boost',[[14,1]],'emulating',[[22,2],[16,1],[11,1]],'real',[[12,1],[14,5],[4,3],[10,2],[22,5],[15,1],[5,1],[2,1],[7,4],[8,1],[11,4],[6,3]],'cleaned',[[11,1]],'500kb',[[12,1]],'forget',[[4,1],[18,1],[8,1],[9,1],[6,2]],'selecting',[[22,2],[24,1],[18,1],[12,1],[15,2]],'building',[[23,1]],'bookmark7',[[17,1]],'continuum',[[2,1]],'glance',[[3,1],[4,1],[9,2]],'spontaneously',[[6,1]],'hacks',[[2,1]],'cases',[[11,4],[12,5],[10,2],[22,7],[24,1],[5,1],[23,1],[2,1],[7,2],[14,1],[9,1],[6,3]],'pastel',[[22,2]],'unsystematic',[[2,1]],'pressing',[[6,1],[12,4],[4,1],[10,2],[22,3],[24,1],[15,7],[5,6],[23,1],[14,2],[11,6],[9,7]],'early',[[22,1],[10,1],[2,1],[6,2]],'navigating',[[10,1],[7,3],[8,1],[16,1]],'love',[[7,1]],'effective',[[4,1],[19,1],[7,1],[14,1],[8,2],[12,2],[6,1]],'fills',[[22,1]],'share',[[12,7],[2,1]],'storage',[[14,3]],'pauses',[[3,1],[18,2],[20,1],[5,1]],'field',[[22,6],[4,6],[16,2],[15,5],[5,1],[17,4],[23,6],[25,8],[11,2]],'backtrack',[[11,1]],'semiautomatic',[[14,1],[10,5],[7,1]],'well',[[9,1],[12,1],[20,1],[22,3],[21,1],[5,3],[17,2],[23,1],[2,2],[8,1],[11,2],[6,5]],'scrolled',[[22,2],[4,1]],'under',[[22,16],[24,2],[4,1],[18,1],[21,2],[15,1],[5,2],[11,1]],'overlapping',[[15,1]],'moderately',[[17,7]],'indicated',[[22,2]],'cooling',[[11,1]],'lower',[[22,5],[4,5],[16,2],[15,3],[5,3],[17,1],[23,4],[2,1],[11,2]],'saving',[[22,7],[6,1],[15,1],[17,1],[2,1],[9,1],[3,2],[24,7],[25,1],[5,3],[23,6],[7,1],[11,9],[12,8]],'measured',[[14,1]],'subclasses',[[23,1]],'authorship',[[6,1],[12,1],[2,1]],'did',[[22,2],[11,1],[14,1]],'unregistered',[[6,1]],'wrong',[[5,1],[10,1],[7,1],[8,1],[12,1],[6,2]],'optimize',[[8,1]],'hands',[[11,1],[5,1]],'midi',[[14,1]],'mariox',[[12,3]],'hide',[[5,1],[22,3],[24,1],[15,3],[12,1]],'clicked',[[22,2],[5,1]],'capabilities',[[22,1]],'versions',[[22,2],[24,1],[5,2],[19,1],[2,2],[7,1],[6,2]],'ups',[[22,3]],'pausing',[[9,1]],'thinking',[[2,3],[8,1],[9,1],[6,2]],'occurring',[[22,1],[10,1]],'addition',[[22,10],[4,1],[5,2],[2,4],[7,1],[8,1],[11,1],[20,1]],'non',[[22,1],[15,1],[5,2],[17,2],[2,2],[7,1],[12,2],[6,1]],'jumped',[[6,2]],'returns',[[22,5],[23,1],[18,35],[7,2],[5,1]],'trackers',[[14,1]],'closer',[[22,1],[7,1],[14,1],[6,2]],'nonlinear',[[10,2],[7,1],[14,2],[8,1],[9,3]],'ideally',[[16,1],[10,1]],'start',[[6,5],[20,1],[18,2],[22,4],[15,2],[2,1],[8,1],[9,3],[24,3],[4,2],[10,11],[25,3],[5,2],[19,1],[23,3],[7,3],[11,3],[12,8]],'handle',[[24,1],[18,1],[5,1]],'proofing',[[23,1],[0,1],[24,2],[21,1],[11,1],[15,1]],'feedback',[[10,2],[7,2],[8,2],[9,1]],'bored',[[10,1],[12,1]],'analyze',[[6,1],[12,1],[2,1],[9,1],[5,1]],'jobs',[[22,2]],'layer',[[23,1]],'entering',[[7,1],[8,1],[15,1],[5,1]],'methodical',[[6,1],[23,1],[2,1]],'gradual',[[11,1],[23,2]],'difficult',[[22,1],[7,2],[2,1],[6,4]],'accelerator',[[23,1],[15,3],[5,1]],'registermanual',[[12,2],[18,4]],'remember',[[6,1],[22,2],[4,2],[16,1],[5,1],[7,1],[12,3],[11,1]],'mushroom',[[6,1]],'himself',[[6,1],[2,1]],'rewatching',[[8,1]],'complicates',[[8,1]],'memory',[[20,9],[6,5],[22,6],[16,1],[15,1],[8,2],[9,1],[24,2],[10,1],[5,1],[23,2],[7,1],[14,2],[11,9],[12,8]],'reassign',[[11,2]],'solution',[[12,2],[7,1],[14,6],[9,1],[6,1]],'selectiox',[[25,1]],'some',[[6,15],[20,2],[18,3],[22,12],[16,3],[15,5],[21,1],[17,25],[2,8],[8,7],[9,2],[24,2],[4,5],[10,5],[5,11],[19,1],[23,3],[14,7],[13,1],[7,4],[11,8],[12,11]],'briefly',[[17,2]],'overlooked',[[6,2]],'kilobytes',[[11,1]],'accept',[[10,2],[5,1]],'hand',[[24,1],[10,1],[4,1],[15,2],[6,1]],'initialize',[[12,2]],'hotkey',[[9,3],[22,5],[4,1],[24,1],[16,3],[15,9],[5,8],[17,3],[8,1],[11,8],[12,1]],'other',[[6,4],[20,1],[18,2],[22,17],[16,6],[15,7],[17,5],[2,2],[8,3],[9,1],[3,2],[24,3],[4,4],[10,1],[25,1],[5,12],[19,5],[23,2],[14,2],[7,1],[11,2],[12,5]],'reviews',[[13,1]],'like',[[6,9],[22,6],[18,2],[16,3],[21,1],[2,2],[9,3],[3,2],[24,2],[4,2],[10,1],[5,4],[23,2],[7,2],[14,1],[11,4],[12,6]],'bound',[[16,1]],'interest',[[22,3],[4,1],[7,1],[10,1],[8,1]],'red',[[22,6],[4,4],[15,1],[5,4],[19,1],[14,1],[12,1],[11,6]],'rendered',[[5,1]],'given',[[22,5],[18,33],[16,3],[15,1],[23,3],[25,1],[7,2],[2,1],[14,2],[11,2],[12,1]],'deletion',[[18,1],[23,1]],'scenario',[[2,1]],'structure',[[22,1],[6,2]],'retry',[[7,1],[6,1]],'gamers',[[7,1]],'topical',[[12,1]],'met',[[6,2]],'needed',[[6,2],[20,1],[22,5],[16,3],[15,3],[8,4],[9,2],[4,2],[10,1],[25,1],[5,4],[19,1],[23,2],[7,4],[14,2],[11,5],[12,6]],'better',[[6,9],[20,5],[16,1],[2,2],[8,4],[9,6],[3,1],[10,3],[5,2],[14,3],[7,2],[11,2],[12,2]],'postponed',[[22,3],[12,1],[6,1]],'fail',[[8,1],[7,1]],'correctly',[[11,2],[7,1]],'levels',[[3,1],[12,1],[22,2],[24,1],[5,1],[2,2],[8,1],[11,4],[6,5]],'intricate',[[6,1]],'produced',[[9,1]],'closes',[[24,1]],'notes',[[3,1],[12,12],[4,3],[22,4],[15,1],[5,2],[23,7],[0,1],[14,1],[11,6],[6,2]],'edits',[[22,1],[23,1],[4,1],[2,1],[11,3],[5,1]],'supersaturated',[[6,1]],'terms',[[3,1],[6,2],[22,1],[7,1],[13,1],[14,3],[12,1],[9,1]],'confidently',[[7,1]],'differently',[[25,1],[5,1]],'sprouted',[[6,1]],'its',[[6,7],[22,12],[18,1],[16,3],[15,2],[17,4],[2,3],[9,4],[3,1],[24,4],[4,2],[10,2],[25,3],[5,9],[19,1],[23,2],[7,4],[14,5],[11,10],[12,6]],'viewing',[[22,2]]];window.bSearchDataLoaded=true; \ No newline at end of file diff --git a/web/help/taseditor/js/hndse.min.js b/web/help/taseditor/js/hndse.min.js new file mode 100644 index 00000000..890ceed6 --- /dev/null +++ b/web/help/taseditor/js/hndse.min.js @@ -0,0 +1,6 @@ +"use strict";/*! + * HND JavaScript search engine + * Copyright (C) IBE Software - All rights reserved. + * Can only be used in documentation generated by HelpNDoc: http://www.helpndoc.com + */ +var Score;!function(r){r[r.TopicNumber=0]="TopicNumber",r[r.TopicScore=1]="TopicScore"}(Score||(Score={}));var HndJsSeWordList=function(){function r(){this.words=[]}return r.prototype.AddWord=function(r){this.words.push(r.toLowerCase())},r.prototype.Clear=function(){this.words=[]},r.prototype.Count=function(){return this.words.length},r.prototype.FindExact=function(r){return r=r.toLowerCase(),this.words.indexOf(r)},r.prototype.FindPartial=function(r){r=r.toLowerCase();for(var o=0;o-1?o.scores[i][Score.TopicScore]=o.scores[i][Score.TopicScore]+t:o.scores.push([e,t])})},r.prototype.Clear=function(){this.scores=[]},r.prototype.ExcludeTopics=function(r){var o=this;if(!r||!r.forEach)return void console.error("Invalid ExcludeTopics call");r.forEach(function(r){if(!r||!Array.isArray(r)||2!==r.length)return void console.error("Invalid data in ExcludeTopics");var e=r[Score.TopicNumber];if("number"!=typeof e||e<0)return void console.error("Invalid topic data in ExcludeTopics");var t=o.FindTopicIndex(e);t>-1&&o.scores.splice(t,1)})},r.prototype.SortByScore=function(){this.scores.sort(function(r,o){return r[Score.TopicScore]>o[Score.TopicScore]?-1:r[Score.TopicScore]0&&'"'===t[0];)t=t.substr(1);for(;t.length>0&&'"'===t[t.length-1];)t=t.substr(0,t.length-1);switch(i){case"-":this.inputWordsExcluded.AddWord(t);break;case"+":this.inputWordsIncluded.AddWord(t);break;default:this.inputWordsMandatory.AddWord(t)}}}},r.prototype.PerformSearch=function(r){var o=this;if(this.resultScoreIncluded=new HndJsSeResultScore,this.resultScoreMandatory=new HndJsSeResultScore,this.resultScoreExcluded=new HndJsSeResultScore,!r||!r.length)return console.error("Invalid word list data"),[];var e;r.forEach(function(r){if("string"==typeof r)e=r.trim().toLowerCase();else{if(!Array.isArray(r))return void console.error("Invalid element in word list data:",r);if(""==e)return void console.warn("Empty word should not be included in list");-1!==o.inputWordsIncluded.FindPartial(e)&&o.resultScoreIncluded.AddTopics(r),-1!==o.inputWordsMandatory.FindPartial(e)&&o.resultScoreMandatory.AddTopics(r),-1!==o.inputWordsExcluded.FindPartial(e)&&o.resultScoreExcluded.AddTopics(r)}});var t=this.resultScoreIncluded;return t.AddTopics(this.resultScoreMandatory.scores),t.ExcludeTopics(this.resultScoreExcluded.scores),t.SortByScore(),t.scores},r}(); \ No newline at end of file diff --git a/web/help/taseditor/js/polyfill.object.min.js b/web/help/taseditor/js/polyfill.object.min.js new file mode 100644 index 00000000..5b0e41ba --- /dev/null +++ b/web/help/taseditor/js/polyfill.object.min.js @@ -0,0 +1 @@ +"use strict";"function"!=typeof Object.assign&&Object.defineProperty(Object,"assign",{value:function(e){for(var r=[],t=1;t7#$5;U7lmOYZ0L;Arl-U4&&j0}6Gyv9Q R0Op1O-l9$@cRdV|U6F$}7H$9l delta 59 zcmV-B0L1_90qy~iEHO1e02opjG+bT)O@IIcx;OyQauTzv0J^XMZ^8gKx(ooxEC9b# R0MBv&$BR7W!2m~*U6DhB6#xJL diff --git a/web/help/taseditor/vendors/bootstrap-3.4.1/css/bootstrap-theme.min.css b/web/help/taseditor/vendors/bootstrap-3.4.1/css/bootstrap-theme.min.css new file mode 100644 index 00000000..3c07dd4c --- /dev/null +++ b/web/help/taseditor/vendors/bootstrap-3.4.1/css/bootstrap-theme.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x;background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x;background-color:#2e6da4}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} \ No newline at end of file diff --git a/web/help/taseditor/vendors/bootstrap-3.4.1/css/bootstrap.min.css b/web/help/taseditor/vendors/bootstrap-3.4.1/css/bootstrap.min.css new file mode 100644 index 00000000..455de954 --- /dev/null +++ b/web/help/taseditor/vendors/bootstrap-3.4.1/css/bootstrap.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:"Glyphicons Halflings";src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\00A0 \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*=col-]{padding-right:0;padding-left:0}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:"\2039"}.carousel-control .icon-next:before{content:"\203a"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/web/help/taseditor/vendors/bootstrap-3.4.1/css/ie10-viewport-bug-workaround.css b/web/help/taseditor/vendors/bootstrap-3.4.1/css/ie10-viewport-bug-workaround.css new file mode 100644 index 00000000..8f7d32b0 --- /dev/null +++ b/web/help/taseditor/vendors/bootstrap-3.4.1/css/ie10-viewport-bug-workaround.css @@ -0,0 +1,15 @@ +/*! + * IE10 viewport hack for Surface/desktop Windows 8 bug + * Copyright 2014-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/* + * See the Getting Started docs for more information: + * http://getbootstrap.com/getting-started/#support-ie10-width + */ +@-webkit-viewport { width: device-width; } +@-moz-viewport { width: device-width; } +@-ms-viewport { width: device-width; } +@-o-viewport { width: device-width; } +@viewport { width: device-width; } \ No newline at end of file diff --git a/web/help/taseditor/vendors/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot b/web/help/taseditor/vendors/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000000000000000000000000000000000000..b93a4953fff68df523aa7656497ee339d6026d64 GIT binary patch literal 20127 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web/help/taseditor/vendors/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf b/web/help/taseditor/vendors/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1413fc609ab6f21774de0cb7e01360095584f65b GIT binary patch literal 45404 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 G`u_lkUM?>H literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff2 b/web/help/taseditor/vendors/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..64539b54c3751a6d9adb44c8e3a45ba5a73b77f0 GIT binary patch literal 18028 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 literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/bootstrap-3.4.1/js/bootstrap.min.js b/web/help/taseditor/vendors/bootstrap-3.4.1/js/bootstrap.min.js new file mode 100644 index 00000000..eb0a8b41 --- /dev/null +++ b/web/help/taseditor/vendors/bootstrap-3.4.1/js/bootstrap.min.js @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under the MIT license + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");!function(t){"use strict";var e=jQuery.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||3this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(idocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},s.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},s.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
    ',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:t},m.prototype.init=function(t,e,i){if(this.enabled=!0,this.type=t,this.$element=g(e),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&g(document).find(g.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var s=o[n];if("click"==s)this.$element.on("click."+this.type,this.options.selector,g.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",r="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,g.proxy(this.enter,this)),this.$element.on(r+"."+this.type,this.options.selector,g.proxy(this.leave,this))}}this.options.selector?this._options=g.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},m.prototype.getDefaults=function(){return m.DEFAULTS},m.prototype.getOptions=function(t){var e=this.$element.data();for(var i in e)e.hasOwnProperty(i)&&-1!==g.inArray(i,o)&&delete e[i];return(t=g.extend({},this.getDefaults(),e,t)).delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t.sanitize&&(t.template=n(t.template,t.whiteList,t.sanitizeFn)),t},m.prototype.getDelegateOptions=function(){var i={},o=this.getDefaults();return this._options&&g.each(this._options,function(t,e){o[t]!=e&&(i[t]=e)}),i},m.prototype.enter=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusin"==t.type?"focus":"hover"]=!0),e.tip().hasClass("in")||"in"==e.hoverState)e.hoverState="in";else{if(clearTimeout(e.timeout),e.hoverState="in",!e.options.delay||!e.options.delay.show)return e.show();e.timeout=setTimeout(function(){"in"==e.hoverState&&e.show()},e.options.delay.show)}},m.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},m.prototype.leave=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusout"==t.type?"focus":"hover"]=!1),!e.isInStateTrue()){if(clearTimeout(e.timeout),e.hoverState="out",!e.options.delay||!e.options.delay.hide)return e.hide();e.timeout=setTimeout(function(){"out"==e.hoverState&&e.hide()},e.options.delay.hide)}},m.prototype.show=function(){var t=g.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var e=g.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!e)return;var i=this,o=this.tip(),n=this.getUID(this.type);this.setContent(),o.attr("id",n),this.$element.attr("aria-describedby",n),this.options.animation&&o.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,o[0],this.$element[0]):this.options.placement,a=/\s?auto?\s?/i,r=a.test(s);r&&(s=s.replace(a,"")||"top"),o.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?o.appendTo(g(document).find(this.options.container)):o.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var l=this.getPosition(),h=o[0].offsetWidth,d=o[0].offsetHeight;if(r){var p=s,c=this.getPosition(this.$viewport);s="bottom"==s&&l.bottom+d>c.bottom?"top":"top"==s&&l.top-dc.width?"left":"left"==s&&l.left-ha.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;ha.right&&(n.left=a.left+a.width-d)}return n},m.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},m.prototype.getUID=function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},m.prototype.tip=function(){if(!this.$tip&&(this.$tip=g(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},m.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},m.prototype.enable=function(){this.enabled=!0},m.prototype.disable=function(){this.enabled=!1},m.prototype.toggleEnabled=function(){this.enabled=!this.enabled},m.prototype.toggle=function(t){var e=this;t&&((e=g(t.currentTarget).data("bs."+this.type))||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e))),t?(e.inState.click=!e.inState.click,e.isInStateTrue()?e.enter(e):e.leave(e)):e.tip().hasClass("in")?e.leave(e):e.enter(e)},m.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})},m.prototype.sanitizeHtml=function(t){return n(t,this.options.whiteList,this.options.sanitizeFn)};var e=g.fn.tooltip;g.fn.tooltip=function i(o){return this.each(function(){var t=g(this),e=t.data("bs.tooltip"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.tooltip",e=new m(this,i)),"string"==typeof o&&e[o]())})},g.fn.tooltip.Constructor=m,g.fn.tooltip.noConflict=function(){return g.fn.tooltip=e,this}}(jQuery),function(n){"use strict";var s=function(t,e){this.init("popover",t,e)};if(!n.fn.tooltip)throw new Error("Popover requires tooltip.js");s.VERSION="3.4.1",s.DEFAULTS=n.extend({},n.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),((s.prototype=n.extend({},n.fn.tooltip.Constructor.prototype)).constructor=s).prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();if(this.options.html){var o=typeof i;this.options.sanitize&&(e=this.sanitizeHtml(e),"string"===o&&(i=this.sanitizeHtml(i))),t.find(".popover-title").html(e),t.find(".popover-content").children().detach().end()["string"===o?"html":"append"](i)}else t.find(".popover-title").text(e),t.find(".popover-content").children().detach().end().text(i);t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},s.prototype.hasContent=function(){return this.getTitle()||this.getContent()},s.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var t=n.fn.popover;n.fn.popover=function e(o){return this.each(function(){var t=n(this),e=t.data("bs.popover"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.popover",e=new s(this,i)),"string"==typeof o&&e[o]())})},n.fn.popover.Constructor=s,n.fn.popover.noConflict=function(){return n.fn.popover=t,this}}(jQuery),function(s){"use strict";function n(t,e){this.$body=s(document.body),this.$scrollElement=s(t).is(document.body)?s(window):s(t),this.options=s.extend({},n.DEFAULTS,e),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",s.proxy(this.process,this)),this.refresh(),this.process()}function e(o){return this.each(function(){var t=s(this),e=t.data("bs.scrollspy"),i="object"==typeof o&&o;e||t.data("bs.scrollspy",e=new n(this,i)),"string"==typeof o&&e[o]()})}n.VERSION="3.4.1",n.DEFAULTS={offset:10},n.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},n.prototype.refresh=function(){var t=this,o="offset",n=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),s.isWindow(this.$scrollElement[0])||(o="position",n=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var t=s(this),e=t.data("target")||t.attr("href"),i=/^#./.test(e)&&s(e);return i&&i.length&&i.is(":visible")&&[[i[o]().top+n,e]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},n.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),o<=e)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e=n[t]&&(n[t+1]===undefined||e .active"),n=i&&r.support.transition&&(o.length&&o.hasClass("fade")||!!e.find("> .fade").length);function s(){o.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),n?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),i&&i()}o.length&&n?o.one("bsTransitionEnd",s).emulateTransitionEnd(a.TRANSITION_DURATION):s(),o.removeClass("in")};var t=r.fn.tab;r.fn.tab=e,r.fn.tab.Constructor=a,r.fn.tab.noConflict=function(){return r.fn.tab=t,this};var i=function(t){t.preventDefault(),e.call(r(this),"show")};r(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',i).on("click.bs.tab.data-api",'[data-toggle="pill"]',i)}(jQuery),function(l){"use strict";var h=function(t,e){this.options=l.extend({},h.DEFAULTS,e);var i=this.options.target===h.DEFAULTS.target?l(this.options.target):l(document).find(this.options.target);this.$target=i.on("scroll.bs.affix.data-api",l.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",l.proxy(this.checkPositionWithEventLoop,this)),this.$element=l(t),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};function i(o){return this.each(function(){var t=l(this),e=t.data("bs.affix"),i="object"==typeof o&&o;e||t.data("bs.affix",e=new h(this,i)),"string"==typeof o&&e[o]()})}h.VERSION="3.4.1",h.RESET="affix affix-top affix-bottom",h.DEFAULTS={offset:0,target:window},h.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return ns.tolerance[a.direction],e(a),l=t,i=!1}function h(){i||(i=!0,n=requestAnimationFrame(c))}var u=!!o&&{passive:!0,capture:!1};return t.addEventListener("scroll",h,u),c(),{destroy:function(){cancelAnimationFrame(n),t.removeEventListener("scroll",h,u)}}}function o(t,n){n=n||{},Object.assign(this,o.options,n),this.classes=Object.assign({},o.options.classes,n.classes),this.elem=t,this.tolerance=function(t){return t===Object(t)?t:{down:t,up:t}}(this.tolerance),this.initialised=!1,this.frozen=!1}return o.prototype={constructor:o,init:function(){return o.cutsTheMustard&&!this.initialised&&(this.addClass("initial"),this.initialised=!0,setTimeout(function(t){t.scrollTracker=n(t.scroller,{offset:t.offset,tolerance:t.tolerance},t.update.bind(t))},100,this)),this},destroy:function(){this.initialised=!1,Object.keys(this.classes).forEach(this.removeClass,this),this.scrollTracker.destroy()},unpin:function(){!this.hasClass("pinned")&&this.hasClass("unpinned")||(this.addClass("unpinned"),this.removeClass("pinned"),this.onUnpin&&this.onUnpin.call(this))},pin:function(){this.hasClass("unpinned")&&(this.addClass("pinned"),this.removeClass("unpinned"),this.onPin&&this.onPin.call(this))},freeze:function(){this.frozen=!0,this.addClass("frozen")},unfreeze:function(){this.frozen=!1,this.removeClass("frozen")},top:function(){this.hasClass("top")||(this.addClass("top"),this.removeClass("notTop"),this.onTop&&this.onTop.call(this))},notTop:function(){this.hasClass("notTop")||(this.addClass("notTop"),this.removeClass("top"),this.onNotTop&&this.onNotTop.call(this))},bottom:function(){this.hasClass("bottom")||(this.addClass("bottom"),this.removeClass("notBottom"),this.onBottom&&this.onBottom.call(this))},notBottom:function(){this.hasClass("notBottom")||(this.addClass("notBottom"),this.removeClass("bottom"),this.onNotBottom&&this.onNotBottom.call(this))},shouldUnpin:function(t){return"down"===t.direction&&!t.top&&t.toleranceExceeded},shouldPin:function(t){return"up"===t.direction&&t.toleranceExceeded||t.top},addClass:function(t){this.elem.classList.add.apply(this.elem.classList,this.classes[t].split(" "))},removeClass:function(t){this.elem.classList.remove.apply(this.elem.classList,this.classes[t].split(" "))},hasClass:function(t){return this.classes[t].split(" ").every(function(t){return this.classList.contains(t)},this.elem)},update:function(t){t.isOutOfBounds||!0!==this.frozen&&(t.top?this.top():this.notTop(),t.bottom?this.bottom():this.notBottom(),this.shouldUnpin(t)?this.unpin():this.shouldPin(t)&&this.pin())}},o.options={tolerance:{up:0,down:0},offset:0,scroller:t()?window:null,classes:{frozen:"headroom--frozen",pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",bottom:"headroom--bottom",notBottom:"headroom--not-bottom",initial:"headroom"}},o.cutsTheMustard=!!(t()&&function(){}.bind&&"classList"in document.documentElement&&Object.assign&&Object.keys&&requestAnimationFrame),o}); \ No newline at end of file diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/0.png b/web/help/taseditor/vendors/helpndoc-5/icons/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0189cda7da0a425f8cc153e19433a2e83cc06b51 GIT binary patch literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px{+c z7sn8b-no-+Z#=BPs*|QxYfypeg_F;elh@7tF_Gmj!zH;R2b9h!3$eaf z^{l^nqQ|Qe8Tr?4-0oW)Gt^m5JlTH8=^=+ui(YH_1c6SitpRJ}y3Q*EFArXubk&Y2 z<PRnv1Nqa1x>@h1&xLhFq@Z4p`R7AL*ift10`tNW5&r#{+SIM^}if~)`m_J>Fhc(*WAx{3)7vy n0TrA#tR_mEzdQ5gbOnRI$(`V>4>r#QdXT}>)z4*}Q$iB}aQSuO literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/1.png b/web/help/taseditor/vendors/helpndoc-5/icons/1.png new file mode 100644 index 0000000000000000000000000000000000000000..01335b024d28c0edafb8ef321d4804332e9cdb40 GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px_=) z7sn8b-m?=O`;HiJuykMibNbJj55{%Zsy%F8AGxMgeA~?~VZoIf9rrsp&i@8~ueH@#+(uSqy;MeAVGn==>NIg4v=Ez2BR0px`o3 z7sn8b-no+l`C1fsT;k2|&92&9wdp2*O!Cql#}s+nE<7|`#mTtg*Dd+HD|>EkSW&xU z_cJF!#q#MV9vja~t}dKq9h04_QtPJhR?q#e(2R*(4nmVUI=1XK5D;4V>FXvr!5bIN z_pNw(>kj9dJ25YlF3di2EY0^%mv%$SWSM_y3G4??^Ozi*n{M<|X#EbYYg|paw;LGF qeU3Dg`~F+HSLv5DXQWZZYJJArbIyk>`ke`MF@vY8pUXO@geCxlC}O?< literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/11.png b/web/help/taseditor/vendors/helpndoc-5/icons/11.png new file mode 100644 index 0000000000000000000000000000000000000000..60da1797743690efc6c5b9a414f7c2e2ca7dcabb GIT binary patch literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px_Qq z7sn8b-noGng$^rlc<=dJes})E>8bpexm@?&z4Um?6bC0w2L^@?hTpOk*Skd5RT-+V zI5zYtdN!T$*&4?Ane+PYAC58x#-3ch7P>hLe$MoH6}j)8yHCLvRl|x{zB6yuY4<7F z2OiqX%Gw*~`cc2`b4s6L&EVhaYKJMjlD}%FdCL@qypY_2P2YLhkdmKtC{ey85}S Ib4q9e0Mc4!{{R30 literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/12.png b/web/help/taseditor/vendors/helpndoc-5/icons/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7977cad23ca5b54510debd5438c9e122f7f5bb88 GIT binary patch literal 328 zcmV-O0k{5%P)LlTmVnFbqSVcY3e*W|*7FCsRKl5Vq6(Xw5KWa4buT z6UO`}zJ5!z+L9jsGLw-bJ_1~YItnre)P5oi084!Xd3hwcs%+bmY}*uu^E=nnk;la9 z!Ct$!ZKJzMiTa?usxXcVU{cRa#u&sN6veh}OIgq@rZ<_%Yo^xX?uPQCkW(;lfl7Ls zm=Xdq2U2q%f{B=oAmToV*9xHN`U$pnx4{m^7}&mKJOEO;xHPpNv?CzmX7YnUW*)lh zZO6&NzFDksd2kHI?x%S(*3QPumZt|wVE-F~$wI=JH%NB_0(!Pt);ve~eXKbg{P@Oy auk$x--@n{dGl5qC0000DlUr`ZFbG5sRrh6f7P7PP%BCN=ex!;bwL~b$h5-f~ z#w-bgRQfpB!8pcA9#cs<+HuL;2l;l)(AF3Pu$Y&Rih9cR)ZNX*QdEmG7SLlR=KeAP@tK)&7hA8O_h!FY_J}GBDE4Wr$D^qzi1E zX3RJ3_rHZwS<*2V5%lQoBj732RS?l3=S}DUmg)ua_DFJO+O{Rxwn+^4dyUC!9n*FX zW=@YWs47AtKWNWPjN1cPM~?`4@3h%Sk}<|s)~FK8n~30NE$zis1?i)ZTQKlIC7mXQ zgn)>SRP2|~=4GTJXzg_oKRZCn^&9poPCNz)L|hVH;QGQ(UzxD+O@Hzs$$$?Nr66Jg=kWpTHP>Lv&H?Drn}jdO)v5{* pP-~lQ{3hW&*7sH)d;9ix{sTox+lpT$6VCtu002ovPDHLkV1jZUl-mFR literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/15.png b/web/help/taseditor/vendors/helpndoc-5/icons/15.png new file mode 100644 index 0000000000000000000000000000000000000000..58f205ff8ab016b81bf4b374ff430be3f8a1be3f GIT binary patch literal 344 zcmV-e0jK_nP)5li6*=FbqT=gYC=g%%jez$|fJOY$;i65E_ID9>Y^% z%tK*tj6V$dGlgMsjvK94QB|9BW^&}QgBoM-Cq^24sjAApBk>MmdzH~;5|4~-kfnw9 z)TFn1Nf<}WA@=G%GN0iHJYzj`1ie4A$xOaxz#TlD<&oV6=G=zuJWl|siq~3JNL23} zKvid5LbNu5GKqK=aaYhJDwE8Ez~mAgP53+!kU3hIZQK9=Sh7svjb|4-j)w(VkfrK(K;00002BR0px|~- z7sn8b-no+l`3@`aIL9x$yV_lOujHIFzd7D6II!#Nil&H(k0&HKF}&G#{2}usb!m^Q zPv5`Q9}jOKWiJZxZjr@I#YA%wDpAv_Wzi;8Dqa`|6kg?@likDnv?w# z&&ld6S6JD-f0mOb>j{U<8_N4Wh5oDPZM(bgn3&Tw&OhDan!(e$>v^+SfnH$nboFyt I=akR{06igUk^lez literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/17.png b/web/help/taseditor/vendors/helpndoc-5/icons/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e450e6b6e53655dd12aa52684150f1aa037b78d8 GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px|*& z7sn8b-l>xV`C1eNoa4>!onG8&et2@JJ&UBk**sw;zd752Lyno8sP@XyWZW>_HpzST zuBL;}i!2@sm)cJ(F7sNsC))bhv71^hmg%?Od04IUww%+rdEuPLS}gBheSNwrZf-~u ztBg~i_Z2qI=?2$J_p(Mg)krMl-gtj;v%iY;dS50_58pf&1&+l#d@njDFDw^epRK*m zYKCTSSG`rh9{J2y36*6DHLU@&->aB6J+^4zky#iu|G1ULzuqqSOZ*1YY-YZeuVI|U X@@a+U*Q!@QFEMz!`njxgN@xNA8%1cJ literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/18.png b/web/help/taseditor/vendors/helpndoc-5/icons/18.png new file mode 100644 index 0000000000000000000000000000000000000000..fae8d06624fff2e02587a66f1c7678dd406567c1 GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px_!$ z7sn8b-no+l`C1fsT$azaonfB6Q_}Y4oAyPzO}qFEja09=>pBVe9zB()78LBs*p`@f z#;Is)*euD%^UnXU-n9I@T)Idh*T8O>oMT2fcNwzo$CH$4STm-Ob?X>gTe~DWM4f=%!v@ literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/19.png b/web/help/taseditor/vendors/helpndoc-5/icons/19.png new file mode 100644 index 0000000000000000000000000000000000000000..557aa37bc44252f4dfff10de86e17e16ddf74996 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px{wY z7sn8b-nl{1d@PC_+3Lj`c1l(m+eUtOKFe?}P2QKoV~JQxQ$h2pr3bti8LqsvT_fS_ z)X;YF=!FBHnAe(44SIGrbRzfs9HFh(R5T}i$ZJ%dz~DDED8M`Is}k#xXim{WJ~ij} zve!!;1^6BIoW0B+=glIyTzJRU3GwxZ1fT56U%ke0+etgY9b$Jv+!WLIXj^UbN#l54 zdoQ13hKlh|ebE^?=N|F1a@Vo>bDf*>VlQ(B!>-foiq9QhZ**WQcYM;iPyVLTaqlnA VtJg6<^A6}C22WQ%mvv4FO#liYXD0vv literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/2.png b/web/help/taseditor/vendors/helpndoc-5/icons/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3887079419a97afe276df2028fe21aa5615a5f0c GIT binary patch literal 332 zcmV-S0ki&zP)Dli_W}APj^*q7DL+#G_=BI-6t^GD)(@^+y5^!c+TH zTNWUE=fg6H)}yW!3B(8SS)dsU1om7n3bVpZ3B5F!wy z$|wj|vGrC^Y-8i8WPfHCnt%dN>D0g%foY8^WyFt9AOd)8(Wu@Ee}dspqjP^aUBv#3rh#GY}nl! zcgM__=b3%qF*72OZYUyAj@JO>?vkXOb6q2`4%RSPEeX(pTVV0GAEb~J1@C~r5)=|X e_>HxR|Fs{)%?rH4Jngao00002BR0px|mx z7sn8b-o3%M1rICmOfHt~IlCq&O|7`TVy45TKOr*Z5fX|#9fu7cJ(28WouZ}tVdcax z94#l#%vo~%PxAi$ExJiOE3(ReU2_b4v-ipYPpgw=fs@_q?7X&$tG$*i=jLep!N4$S zI@g*VqIq3Eq_;8E7k^mEJhAS48r!53mdZ;@v=ubM6VrNS#CvN*%f74Wv0Trezf^z0 uy4ZxTGw0>>`{^?=RsQK!tQV{3*8jHT5u;(}ggT(J89ZJ6T-G@yGywp_7+!V& literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/21.png b/web/help/taseditor/vendors/helpndoc-5/icons/21.png new file mode 100644 index 0000000000000000000000000000000000000000..bfb11c9138b824054fdfe24b48ab59cfe6220d3f GIT binary patch literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px`l2 z7sn8b-lLNP`;I8^ILEKDjL3J}5m{yQo?XO|F1nms+A(4G_o{Y zKill*>QQ{YF(t@uf2%5QVX;kp+ZE@2-mX(375{w#_P#Q|ee5lVP%hAP|GIo!*PR8OzP$$?|^4BGl6M#c>42e1;5~ zAf#F}xjRT=_pDJ3vou{KwF=9Oq#{DI=P|=b_K^+zItOa4Xwk0Ny9B^`pKDm|j|o=$ znV|0pBoPq+faeTw_mRt%s?-6vX#fr$a(77ivP~WAwIqlLm>DF&>~2nICUv?VuKDQQM8fFbt!L?q!e0ZpKW;`*7q(;}q925UeN`MJh1n z2bN?5HeiyLw4CdG19>@Ld)T(~Y}k?D(zuJ0NRn+YBnwxceCCqg%2?vf!rk=GRvv(3 z#K0l7BmxmeEMEtnBMk#h7$Q(gZTYG97V{2Bp5FG((n{_?(r9lB%f;d1I|0DtAb8Ab zNTQSqNt5ScJ|aK@wW`-H1b|UW0ofXI1H0xMg23w)s8yY0ZkFmo@VpX?DUBra+G{gO r_>_3)u=3yk10*47uizVW1;64C9A8SvY1~-Y00000NkvXXu0mjfzUX?f literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/24.png b/web/help/taseditor/vendors/helpndoc-5/icons/24.png new file mode 100644 index 0000000000000000000000000000000000000000..e91b518c4f968ad0c84c25d2e185647520ea18d4 GIT binary patch literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px^~h z7sn8b-l@USLPr!hxUKh2zjLO-*hcbqp#0QZcQyIs6PBioql!0BW+q@g@sD3 zsLr&RmY(lF&VO!Y9R`~(zb+6FQ|Fx2U-0+bUzW97ok9!0 zFc>$ldXyr$qa#5q;{9>qATI;sjuU2)p@%OsIj}2QI=nksk;cHVRAj{~hL%u-THGZ~8iw=qrCdua=dRx#6)^w1IJjc>b1X_eW-2 hPu`pTW2w-Nk1n|X=-muWpeGp^JYD@<);T3K0RRrEZRP*~ literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/25.png b/web/help/taseditor/vendors/helpndoc-5/icons/25.png new file mode 100644 index 0000000000000000000000000000000000000000..00d2d5d3fccff326da36a2964ec6f082e72f39a8 GIT binary patch literal 313 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px|py z7sn8b-l>x=@*XzeaFGxFzR8^XCXavF-wksUmdn5O)JQm3DB#l}z3lSb!?F#|541UPZdg~Gc5|)VgR9)S=^K89 zHy_kg5fq&4a7`)WapI${vl(j>&33Qn5?FM8^0U-f8HIB3m$phQFSeH7O*b*VGdJqB zk=Lz*QNDb22WQ% Jmvv4FO#nl0e~AD9 literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/26.png b/web/help/taseditor/vendors/helpndoc-5/icons/26.png new file mode 100644 index 0000000000000000000000000000000000000000..4952af636c1ea7673c115d36b46d0b656f4d4c21 GIT binary patch literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px`Y} z7sn8b-l>yc^By+fXzACgzB;=#r)=JvUx(K_#DuDLY4q{Rr)M=4Y(Kqz$A*oU{bx5` zdi<`dO<>}b-Pv#I-)hZ>U9t6?P;IH;oaahsuQE<&Vbq(%-!!jqUvyK(#0BXrC*Mn% zbnRtRR?}p#a+`ZIr* zGCRC$f2?|g8T&hiGtbS8%U$rhX1AWQh>FVdQ&MBb@0JG0`O8@`> literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/27.png b/web/help/taseditor/vendors/helpndoc-5/icons/27.png new file mode 100644 index 0000000000000000000000000000000000000000..a61fe9bd9453f76f7a5564753905148f4fd79e81 GIT binary patch literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px`4< z7sn8b-l>x#C$$*xILGh$6<1(<eb=$2 z+FLshTH5v$_7~>3x2R67J6yJ5iAuAKpm4z4aDkrm37a^J-bpyV@!9p9eNu6l^d+sG zc_}AnatQ|7emIvjVT1d0rXSY#7!C*@tYljuw2QIB!m@9%fqYU;wVUoO8)8TRX>f*8~z`YUuff*&-Ni|3edLzopr0JK?q AlK=n! literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/28.png b/web/help/taseditor/vendors/helpndoc-5/icons/28.png new file mode 100644 index 0000000000000000000000000000000000000000..52160f07602a031beead8000aaf7fe7d7f701860 GIT binary patch literal 309 zcmV-50m}Y~P)5lTogOAPhxMUuIvrvtD*qR@V0+BA`w(H6%dn>Fot9 zNyaED^TtEC-1;JyPg2gow2Fw7l;{6{?{%z~nAhO$m(p(vBobx?jo8Plf>Lalm#(1o zL_`2Qw@`}Vo=8W++KSl)e*g&g#LR}|%L6l}{m(h6Q8Qx4Jpn^vft=8}TvsqA14s}N zgWMCA&wx?p2)H6CrC?^w)V_TkACS^vbSu@4Q;!#l`z=UL$N|a$kPXNL_^?EhX0im> z_sX_ylLxDjH$aDA8L5lR*-MFbD)2YyYJ`3;7woZ1#{y5_J!YMTseCVL%gN zn5nu`+ySWlez)Sq@CYK`ITSBVUzJS@#aGNK9l*wi`C6g7Hv7CRd;EW)u zQHlV=og3tWt|QF~B92T3aEFMP%DrHE2h3&8fMKH6ikWp$^SE8^F8b)&fX4{k{dJ+3 zw;;EnLmEgEKpn^e_;52JGjDrw94Gs}FB;s1d;k)HDdGT{4(A!bnZl+%&nBMjz;Czp bcmChLmW@Q;yqRV800000NkvXXu0mjfhDVCz literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/3.png b/web/help/taseditor/vendors/helpndoc-5/icons/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b1c94138390db17cca3cd25087fef2a68be1c3df GIT binary patch literal 283 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px{|g z7sn8b-l-F!g<2GNSgfagpEP^oogUkpZ`c(cC7+f(J;~$JnFJ@EnGRw51FrAidL=Em zBE#Vx@Af>|ws|Vj><-^-9_Th*iO*ak_)f1peEM$ho^;mBC3|G&&Munwj-z0WrPwCc z6gC#S^w|x2R~dL#FzZ&Yp=H6b{V7z4Y6erE6Wd;1pgVz~9nJ%-R$?A#d e!*d7s|6;1us{Io1;CU_3V+@|IelF{r5}E+6lydU` literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/30.png b/web/help/taseditor/vendors/helpndoc-5/icons/30.png new file mode 100644 index 0000000000000000000000000000000000000000..7b52276d950b18d86a3bb5daf0f99f99dd33f34c GIT binary patch literal 338 zcmV-Y0j>UtP)5lTmWSAPhsFJGoc58RBN*WbOxngxzjuRvA8=#Ih`# zNRlU-+Wz7XRMl8PzC4n02U}!2CFT78=X0G{CH5FCUx&` zmfF5#$NpjLfl?YS&M^TgDQ&MaEZ7wsHfwJ`CdCjp_-CHw9~fp8d@pZQql*{P^gBZ6bm(F?J=bfduxoR1Zh~ kyN!|-`Sj!!Zv@}s7j~*fcGZN4e*gdg07*qoM6N<$f(Is!EdT%j literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/31.png b/web/help/taseditor/vendors/helpndoc-5/icons/31.png new file mode 100644 index 0000000000000000000000000000000000000000..02283dbb0600eccf63e421260ab68d468f4e76dd GIT binary patch literal 363 zcmV-x0hIoUP)5lR=KfAPhqvqu#6BtmbCsWS#|-w!eQC6Dewfa47=qRfRWMpnNx#C_Ywj*io54?ci@;1nJlB^-+x>wO00h2f(h_;y8FQA_UtR zWmZahhzG3upIQL<87CNSj=A@jb+#w%rv}3V6loZ8+5|*WY_H^I@7ZtHD4_-wgM@8r zt+$hx4-XBtiKW&$r~;N&Uu|-T)-KNX*d`v^97E=%K8(S=8y!37H2A}X`Iuf$*7oJh z)ZCmWcoW literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/32.png b/web/help/taseditor/vendors/helpndoc-5/icons/32.png new file mode 100644 index 0000000000000000000000000000000000000000..875843c5c990a5ffc682d813c32542de6e907ed8 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px`A> z7sn8b-l>xVi;gJpIL|LHTK_ApW45JwvAvkahLdHBdhC6ACT!TKGBYsrdMmexsI+I^ z{3S65C%L+Kor?Rv%l`N=!EC;zQ|y=ei<%r0>=!k0Q(|hk{&(ryOZICSW-MVT_a#tKKQ|}5{GXTHU#YjNRlj))--W9l%#|^fw&#U89?S{*zUS`g je^R`^znj*nR&>R0?-VfG!N6<`^c{nztDnm{r-UW|rjT+2 literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/33.png b/web/help/taseditor/vendors/helpndoc-5/icons/33.png new file mode 100644 index 0000000000000000000000000000000000000000..d64f1371ecb9f25a7350f77157394be8466d95aa GIT binary patch literal 310 zcmV-60m=S}P)5l39+#KnO!0qrTU0v%t-`ndc+5kfdj`ghDCCn4(OG z4O2#NL;#TEd&d!nt%E>ksO4y*=TcQEA_iaZD0~-9sH!AsiP#>&&O`zm4kf@&pOa%ho#_#{ocQ zGWqV#3m`_dQ{bl;c~5U{s;8ZxV(tK-M<|HxVV`3=!efH zFvYs4q=x|WNlu$T#r;VGGTqjak@{_v?(!jE{Z;+}4}t&U3t^t{kpJ@|?f?J)07*qo IM6N<$g43jj=>Px# literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/34.png b/web/help/taseditor/vendors/helpndoc-5/icons/34.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d94c5de5b72e44926377c49dbdd2e698e810fa GIT binary patch literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px`D? z7sn8b-l>xV`Hm=XxTKp^uYY^CW%k39H~O=*w_FoRJ|iJJZ$*j4v4D#fg~F~}{0~=l zb{uyINPDLAsP=FAymp1}BC+x;OXn;xW=eQJbAhE?t=EHl#%@i|IE0oneEP)5l2H=EFbG5+j`z}=mE4S;Z2d^uK&+!~hY57TvOr9T z2~%@ta|fV}bH(PHoq<5zlzcRieJLX3?&H4TE%C|{QA9}6Nn*1F>y8B06&gaauJgEM zQ$4_~CtALd+RMo{_=O}Q;vkSsOOOhoStUve&eE!rw>bqEtx(!o2%xGE`@W}&UlpWe ziPjp==Y!UKNvsOc^0|9o+SnfT8I*MbT3SfNW1Bh){xpM$W1I85p27XIg8G1FToqgr s^yvq%r@w1F^k`wU{3?II8^OPL0jMX`;M#54X8-^I07*qoM6N<$g6qG33jhEB literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/36.png b/web/help/taseditor/vendors/helpndoc-5/icons/36.png new file mode 100644 index 0000000000000000000000000000000000000000..ce6235b2e4d8d8d777bd801b0600eb3b8fa15704 GIT binary patch literal 314 zcmV-A0mc4_P)`6pHR5*>5lUtGnAqYc{w`O0uGjV6Ivdl-f&)d~ggI{0~l88x& zHNrzVXHo(QB4XURI{?*c8b#d)Bq7{gdmxyZyUWbf`#uwhi3-eANNWzYR+_b|`Xpha zTkV4H_Yss*W`mYvW|A1xb!)q1u?cf`0U8pTHO*;@N9t@ki(Tnw%g}H=!bjE2Hcwsv z5;AHom?BL%-P+d5T`+=ZQgUhMC>&?;q-nuT@T@bL4A$0sJ?90qrE_qA7Ery#N3J M07*qoM6N<$f~~`Z8~^|S literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/37.png b/web/help/taseditor/vendors/helpndoc-5/icons/37.png new file mode 100644 index 0000000000000000000000000000000000000000..01203304840a71dca8498d9210ac1ab1d59ee52e GIT binary patch literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px`4< z7sn8b-l@USlUNivxPy!J_e4HE`yu5fzlgl?>ubwSZ@Q?~5}?assF?HaLXeWm#i-NK zlCQ2BR0px}8= z7sn8b-l@U2d5zBJ)uQ0RQUOF?lB z>$eAg*UB(VD0Vwn$+4>4UABz>)w%HFllhYONAt27<{z#9ALOO^?KbnTL5l3TKaFbqSFnC^@0tnSXt%5*=-le8b#Gad|BiY!OQ zjF3MOydwbk)aNta@m7B^_)bqX9x>N;W;!BjzhMJ@%ZVs6ZM&0bjG())K~$2!q@`n%eyk9+-%&d+-ZHDta`~P-t2` R5jOw;002ovPDHLkV1nQOgS7wv literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/4.png b/web/help/taseditor/vendors/helpndoc-5/icons/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6e5cfc09476cbc46c79c2143243daa90dc2a77e1 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0pkS+~ zi(`mI@6+Ieye$Si#eQ#CXCJ-0X6Bh1y$&(HuMavuZ}`;lIASg5A>kT1U*;L#d=o8i z6z+=EdJ(On>bUh0*xFp_-()Y?Y~11!5l2LAiFbqVWS9`DR%`)7~KH2mmn~(rf)rpY6n1?-f z7_;iou?HU1)M7sPdT!c7nQ2KL`P;`JOENrgzM#ys?For%3qcqgBCrhvEIARe<-Y(b z%R!j_Ylr~*o9u}m?`@NrCjdYaK{z6iG-FjY-C9966Z@^t>*mGXOu+926cJ%by#jmo z+`U*UI6aww0jZy|NBPQyP75N7CjxV>-)3fH{T73aW~#q^i0n+hTqF8I3-!@`Kjp+VZb}|LPaYR4R?B ST(6M;00005lTnU?FbqVWtKO@7vkW)0Pd59Jgaq1EwMK}5?8kVV zgfT0^heVSAIL7lHO)btBgZu4mjaTezJ2Ne5!iE?MZ6LbN znH5Vtz@ry##iL{;pFbEW#x|Kb0glS#kcbE(0!f68B&uq;b-|yXhYR2nZyU*cF%$4} z14Tqw5|UOs5!k*dSe~4K38|m5?cV zgQ@O2pi7nnt)b)SurZ~*@5?3W;yQCW+eCnK3Lh0z6;(-9bx($&Q@XwF%2BR0px{PN z7sn8b-ldaI7alR-ah`AVGW)XR!E-B4O=z~yzUgIlu8F;ek3}OO>)4*={_VRO&p%e2 zI=#^8VqNHms7W@>DzoRWmYnS6&T`?!-U^$2Wo(mY27eCNa&YgeoZ?58Dv}=r9$ox- zvUYCH6W-j=U9B7wHC1$@Bi{X&iWb`|9&q3T-@4>^mPv(cSEb+Haj3YVnC+Xu{|&9$ z@htB;ZnUQr+_t;?Msk0XN?D`ov9jnCfgk+)7zLTNJNq6Tr~o>i!PC{xWt~$(69B6R BXcYhe literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/6.png b/web/help/taseditor/vendors/helpndoc-5/icons/6.png new file mode 100644 index 0000000000000000000000000000000000000000..947d9c40f0bef24c768d61ad5df2514ef1dda1e3 GIT binary patch literal 229 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px|^* z7sn8b-n)|nxegofIM1*CXl3s0x2$$YWb7-`2BR0px|Lo z7sn8b-l>xl*Bw^iY2NR%JG?)vcyoc#e)%=AyUG@y4@%YQ*x1-&nBQ{HP~zAR^Fsk* z?t!z#_p_YY_<`&GQMu);>(qQEr}6#RyW2PWZBf=$DGBA1+um;c|0Cvjx`)w&AR z`kdFbXUv%y%vQ$E-e`SPPXE2e2YJEWBF)L!%c`Wy6+2hlmAE|5LfNMBr12ldtGpJ! UqmBwK0D6bP)78&qol`;+0H#ZB7XSbN literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/8.png b/web/help/taseditor/vendors/helpndoc-5/icons/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5bcd3ecaceb78c94e91991fc1694a54b05329933 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px_cu z7sn8b-no+_`3@`axXfRD&-&ci2Pv2Nr#UpF89F5eq*b^bX<@ig>)+jdt7dbabLEcR zzmhJz(<`5DaZDw_3DVb;Jh>FI%=qPm>deiY+?O%*y>QkMoHYM8t-OJ$V>gTe~DWM4fp`Bk{ literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/helpndoc-5/icons/9.png b/web/help/taseditor/vendors/helpndoc-5/icons/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3b4991d8de2e2b750b2d681533f1b7e1a3f66765 GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GGLLkg|>2BR0px_=) z7sn8b-no+>3N)Gfbv(dqJ%4jwiJ?vU#n)@qkWTys4h zb?nF?&6=F<+-U1bUJl9|9e0VyIW666dCaRiF+hM%L9y}4EU|4TE$6#mdiVE-Q|{Z0 zme!yT-(s7gX;yW*?UM~GopeUa%a8bl2@~4;M z?wj@^XFBTxHbiH9?6^KdV=05AhNAVcg;P82&mCSYm9VDof&3oE*%479@v+<20sXFVdQ&MBb@0CrGl*#H0l literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/html5shiv-3.7.3/html5shiv.min.js b/web/help/taseditor/vendors/html5shiv-3.7.3/html5shiv.min.js new file mode 100644 index 00000000..355afd10 --- /dev/null +++ b/web/help/taseditor/vendors/html5shiv-3.7.3/html5shiv.min.js @@ -0,0 +1,4 @@ +/** +* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed +*/ +!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document); \ No newline at end of file diff --git a/web/help/taseditor/vendors/imageMapResizer-1.0.10/imageMapResizer.min.js b/web/help/taseditor/vendors/imageMapResizer-1.0.10/imageMapResizer.min.js new file mode 100644 index 00000000..09ad956e --- /dev/null +++ b/web/help/taseditor/vendors/imageMapResizer-1.0.10/imageMapResizer.min.js @@ -0,0 +1,8 @@ +/*! Image Map Resizer (imageMapResizer.min.js ) - v1.0.10 - 2019-04-10 + * Desc: Resize HTML imageMap to scaled image. + * Copyright: (c) 2019 David J. Bradshaw - dave@bradshaw.net + * License: MIT + */ + +!function(){"use strict";function r(){function e(){var r={width:u.width/u.naturalWidth,height:u.height/u.naturalHeight},a={width:parseInt(window.getComputedStyle(u,null).getPropertyValue("padding-left"),10),height:parseInt(window.getComputedStyle(u,null).getPropertyValue("padding-top"),10)};i.forEach(function(e,t){var n=0;o[t].coords=e.split(",").map(function(e){var t=1==(n=1-n)?"width":"height";return a[t]+Math.floor(Number(e)*r[t])}).join(",")})}function t(e){return e.coords.replace(/ *, */g,",").replace(/ +/g,",")}function n(){clearTimeout(d),d=setTimeout(e,250)}function r(e){return document.querySelector('img[usemap="'+e+'"]')}var a=this,o=null,i=null,u=null,d=null;"function"!=typeof a._resize?(o=a.getElementsByTagName("area"),i=Array.prototype.map.call(o,t),u=r("#"+a.name)||r(a.name),a._resize=e,u.addEventListener("load",e,!1),window.addEventListener("focus",e,!1),window.addEventListener("resize",n,!1),window.addEventListener("readystatechange",e,!1),document.addEventListener("fullscreenchange",e,!1),u.width===u.naturalWidth&&u.height===u.naturalHeight||e()):a._resize()}function e(){function t(e){e&&(!function(e){if(!e.tagName)throw new TypeError("Object is not a valid DOM element");if("MAP"!==e.tagName.toUpperCase())throw new TypeError("Expected tag, found <"+e.tagName+">.")}(e),r.call(e),n.push(e))}var n;return function(e){switch(n=[],typeof e){case"undefined":case"string":Array.prototype.forEach.call(document.querySelectorAll(e||"map"),t);break;case"object":t(e);break;default:throw new TypeError("Unexpected data type ("+typeof e+").")}return n}}"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&"object"==typeof module.exports?module.exports=e():window.imageMapResize=e(),"jQuery"in window&&(window.jQuery.fn.imageMapResize=function(){return this.filter("map").each(r).end()})}(); +//# sourceMappingURL=imageMapResizer.map \ No newline at end of file diff --git a/web/help/taseditor/vendors/interactjs-1.9.22/interact.min.js b/web/help/taseditor/vendors/interactjs-1.9.22/interact.min.js new file mode 100644 index 00000000..420f876f --- /dev/null +++ b/web/help/taseditor/vendors/interactjs-1.9.22/interact.min.js @@ -0,0 +1,3 @@ +/* interact.js 1.9.22 | https://raw.github.com/taye/interact.js/master/LICENSE */ +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).interact=t()}}((function(){var t={};Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default=function(t){return!(!t||!t.Window)&&t instanceof t.Window};var e={};Object.defineProperty(e,"__esModule",{value:!0}),e.init=o,e.getWindow=function(e){if((0,t.default)(e))return e;return(e.ownerDocument||e).defaultView||r.window},e.window=e.realWindow=void 0;var n=void 0;e.realWindow=n;var r=void 0;function o(t){e.realWindow=n=t;var o=t.document.createTextNode("");o.ownerDocument!==t.document&&"function"==typeof t.wrap&&t.wrap(o)===o&&(t=t.wrap(t)),e.window=r=t}e.window=r,"undefined"!=typeof window&&window&&o(window);var i={};function a(t){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}Object.defineProperty(i,"__esModule",{value:!0}),i.default=void 0;var s=function(t){return!!t&&"object"===a(t)},l=function(t){return"function"==typeof t},u={window:function(n){return n===e.window||(0,t.default)(n)},docFrag:function(t){return s(t)&&11===t.nodeType},object:s,func:l,number:function(t){return"number"==typeof t},bool:function(t){return"boolean"==typeof t},string:function(t){return"string"==typeof t},element:function(t){if(!t||"object"!==a(t))return!1;var n=e.getWindow(t)||e.window;return/object|function/.test(a(n.Element))?t instanceof n.Element:1===t.nodeType&&"string"==typeof t.nodeName},plainObject:function(t){return s(t)&&!!t.constructor&&/function Object\b/.test(t.constructor.toString())},array:function(t){return s(t)&&void 0!==t.length&&l(t.splice)}};i.default=u;var c={};function f(t){var e=t.interaction;if("drag"===e.prepared.name){var n=e.prepared.axis;"x"===n?(e.coords.cur.page.y=e.coords.start.page.y,e.coords.cur.client.y=e.coords.start.client.y,e.coords.velocity.client.y=0,e.coords.velocity.page.y=0):"y"===n&&(e.coords.cur.page.x=e.coords.start.page.x,e.coords.cur.client.x=e.coords.start.client.x,e.coords.velocity.client.x=0,e.coords.velocity.page.x=0)}}function d(t){var e=t.iEvent,n=t.interaction;if("drag"===n.prepared.name){var r=n.prepared.axis;if("x"===r||"y"===r){var o="x"===r?"y":"x";e.page[o]=n.coords.start.page[o],e.client[o]=n.coords.start.client[o],e.delta[o]=0}}}Object.defineProperty(c,"__esModule",{value:!0}),c.default=void 0;var p={id:"actions/drag",install:function(t){var e=t.actions,n=t.Interactable,r=t.defaults;n.prototype.draggable=p.draggable,e.map.drag=p,e.methodDict.drag="draggable",r.actions.drag=p.defaults},listeners:{"interactions:before-action-move":f,"interactions:action-resume":f,"interactions:action-move":d,"auto-start:check":function(t){var e=t.interaction,n=t.interactable,r=t.buttons,o=n.options.drag;if(o&&o.enabled&&(!e.pointerIsDown||!/mouse|pointer/.test(e.pointerType)||0!=(r&n.options.drag.mouseButtons)))return t.action={name:"drag",axis:"start"===o.lockAxis?o.startAxis:o.lockAxis},!1}},draggable:function(t){return i.default.object(t)?(this.options.drag.enabled=!1!==t.enabled,this.setPerAction("drag",t),this.setOnEvents("drag",t),/^(xy|x|y|start)$/.test(t.lockAxis)&&(this.options.drag.lockAxis=t.lockAxis),/^(xy|x|y)$/.test(t.startAxis)&&(this.options.drag.startAxis=t.startAxis),this):i.default.bool(t)?(this.options.drag.enabled=t,this):this.options.drag},beforeMove:f,move:d,defaults:{startAxis:"xy",lockAxis:"xy"},getCursor:function(){return"move"}},v=p;c.default=v;var h={};Object.defineProperty(h,"__esModule",{value:!0}),h.default=void 0;var g={init:function(t){var e=t;g.document=e.document,g.DocumentFragment=e.DocumentFragment||y,g.SVGElement=e.SVGElement||y,g.SVGSVGElement=e.SVGSVGElement||y,g.SVGElementInstance=e.SVGElementInstance||y,g.Element=e.Element||y,g.HTMLElement=e.HTMLElement||g.Element,g.Event=e.Event,g.Touch=e.Touch||y,g.PointerEvent=e.PointerEvent||e.MSPointerEvent},document:null,DocumentFragment:null,SVGElement:null,SVGSVGElement:null,SVGElementInstance:null,Element:null,HTMLElement:null,Event:null,Touch:null,PointerEvent:null};function y(){}var m=g;h.default=m;var b={};Object.defineProperty(b,"__esModule",{value:!0}),b.default=void 0;var x={init:function(t){var n=h.default.Element,r=e.window.navigator;x.supportsTouch="ontouchstart"in t||i.default.func(t.DocumentTouch)&&h.default.document instanceof t.DocumentTouch,x.supportsPointerEvent=!1!==r.pointerEnabled&&!!h.default.PointerEvent,x.isIOS=/iP(hone|od|ad)/.test(r.platform),x.isIOS7=/iP(hone|od|ad)/.test(r.platform)&&/OS 7[^\d]/.test(r.appVersion),x.isIe9=/MSIE 9/.test(r.userAgent),x.isOperaMobile="Opera"===r.appName&&x.supportsTouch&&/Presto/.test(r.userAgent),x.prefixedMatchesSelector="matches"in n.prototype?"matches":"webkitMatchesSelector"in n.prototype?"webkitMatchesSelector":"mozMatchesSelector"in n.prototype?"mozMatchesSelector":"oMatchesSelector"in n.prototype?"oMatchesSelector":"msMatchesSelector",x.pEventTypes=x.supportsPointerEvent?h.default.PointerEvent===t.MSPointerEvent?{up:"MSPointerUp",down:"MSPointerDown",over:"mouseover",out:"mouseout",move:"MSPointerMove",cancel:"MSPointerCancel"}:{up:"pointerup",down:"pointerdown",over:"pointerover",out:"pointerout",move:"pointermove",cancel:"pointercancel"}:null,x.wheelEvent="onmousewheel"in h.default.document?"mousewheel":"wheel"},supportsTouch:null,supportsPointerEvent:null,isIOS7:null,isIOS:null,isIe9:null,isOperaMobile:null,prefixedMatchesSelector:null,pEventTypes:null,wheelEvent:null};var w=x;b.default=w;var _={};function S(t){var e=t.parentNode;if(i.default.docFrag(e)){for(;(e=e.host)&&i.default.docFrag(e););return e}return e}function P(t,n){return e.window!==e.realWindow&&(n=n.replace(/\/deep\//g," ")),t[b.default.prefixedMatchesSelector](n)}Object.defineProperty(_,"__esModule",{value:!0}),_.nodeContains=function(t,e){if(t.contains)return t.contains(e);for(;e;){if(e===t)return!0;e=e.parentNode}return!1},_.closest=function(t,e){for(;i.default.element(t);){if(P(t,e))return t;t=S(t)}return null},_.parentNode=S,_.matchesSelector=P,_.indexOfDeepestElement=function(t){for(var n,r=[],o=0;o=m&&(n=o);else n=o}else n=o}var v,g,y,m;return n},_.matchesUpTo=function(t,e,n){for(;i.default.element(t);){if(P(t,e))return!0;if((t=S(t))===n)return P(t,e)}return!1},_.getActualElement=function(t){return t.correspondingUseElement||t},_.getScrollXY=T,_.getElementClientRect=M,_.getElementRect=function(t){var n=M(t);if(!b.default.isIOS7&&n){var r=T(e.getWindow(t));n.left+=r.x,n.right+=r.x,n.top+=r.y,n.bottom+=r.y}return n},_.getPath=function(t){var e=[];for(;t;)e.push(t),t=S(t);return e},_.trySelector=function(t){if(!i.default.string(t))return!1;return h.default.document.querySelector(t),!0};var O=function(t){return t.parentNode||t.host};function E(t,e){for(var n,r=[],o=t;(n=O(o))&&o!==e&&n!==o.ownerDocument;)r.unshift(o),o=n;return r}function T(t){return{x:(t=t||e.window).scrollX||t.document.documentElement.scrollLeft,y:t.scrollY||t.document.documentElement.scrollTop}}function M(t){var e=t instanceof h.default.SVGElement?t.getBoundingClientRect():t.getClientRects()[0];return e&&{left:e.left,right:e.right,top:e.top,bottom:e.bottom,width:e.width||e.right-e.left,height:e.height||e.bottom-e.top}}var j={};Object.defineProperty(j,"__esModule",{value:!0}),j.default=function(t,e){for(var n in e)t[n]=e[n];return t};var k={};function I(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=Array(e);n1?q(e):e[0];U(r,t.page),N(r,t.client),t.timeStamp=n},W.getTouchPair=V,W.pointerAverage=q,W.touchBBox=function(t){if(!t.length)return null;var e=V(t),n=Math.min(e[0].pageX,e[1].pageX),r=Math.min(e[0].pageY,e[1].pageY),o=Math.max(e[0].pageX,e[1].pageX),i=Math.max(e[0].pageY,e[1].pageY);return{x:n,y:r,left:n,top:r,right:o,bottom:i,width:o-n,height:i-r}},W.touchDistance=function(t,e){var n=e+"X",r=e+"Y",o=V(t),i=o[0][n]-o[1][n],a=o[0][r]-o[1][r];return(0,R.default)(i,a)},W.touchAngle=function(t,e){var n=e+"X",r=e+"Y",o=V(t),i=o[1][n]-o[0][n],a=o[1][r]-o[0][r];return 180*Math.atan2(a,i)/Math.PI},W.getPointerType=function(t){return i.default.string(t.pointerType)?t.pointerType:i.default.number(t.pointerType)?[void 0,void 0,"touch","pen","mouse"][t.pointerType]:/touch/.test(t.type)||t instanceof h.default.Touch?"touch":"mouse"},W.getEventTargets=function(t){var e=i.default.func(t.composedPath)?t.composedPath():t.path;return[_.getActualElement(e?e[0]:t.target),_.getActualElement(t.currentTarget)]},W.newCoords=function(){return{page:{x:0,y:0},client:{x:0,y:0},timeStamp:0}},W.coordsToEvent=function(t){return{coords:t,get page(){return this.coords.page},get client(){return this.coords.client},get timeStamp(){return this.coords.timeStamp},get pageX(){return this.coords.page.x},get pageY(){return this.coords.page.y},get clientX(){return this.coords.client.x},get clientY(){return this.coords.client.y},get pointerId(){return this.coords.pointerId},get target(){return this.coords.target},get type(){return this.coords.type},get pointerType(){return this.coords.pointerType},get buttons(){return this.coords.buttons},preventDefault:function(){}}},Object.defineProperty(W,"pointerExtend",{enumerable:!0,get:function(){return F.default}});var $={};function G(t,e){for(var n=0;ns.left&&f.xs.top&&f.y=s.left&&h<=s.right&&g>=s.top&&g<=s.bottom}if(v&&i.default.number(u)){var y=Math.max(0,Math.min(s.right,v.right)-Math.max(s.left,v.left))*Math.max(0,Math.min(s.bottom,v.bottom)-Math.max(s.top,v.top))/(v.width*v.height);l=y>=u}t.options.drop.checker&&(l=t.options.drop.checker(e,n,l,t,a,r,o));return l}(this,t,e,n,r,o,a)},n.dynamicDrop=function(e){return i.default.bool(e)?(t.dynamicDrop=e,n):t.dynamicDrop},(0,j.default)(e.phaselessTypes,{dragenter:!0,dragleave:!0,dropactivate:!0,dropdeactivate:!0,dropmove:!0,drop:!0}),e.methodDict.drop="dropzone",t.dynamicDrop=!1,o.actions.drop=vt.defaults},listeners:{"interactions:before-action-start":function(t){var e=t.interaction;"drag"===e.prepared.name&&(e.dropState={cur:{dropzone:null,element:null},prev:{dropzone:null,element:null},rejected:null,events:null,activeDrops:[]})},"interactions:after-action-start":function(t,e){var n=t.interaction,r=(t.event,t.iEvent);if("drag"===n.prepared.name){var o=n.dropState;o.activeDrops=null,o.events=null,o.activeDrops=ut(e,n.element),o.events=ft(n,0,r),o.events.activate&&(lt(o.activeDrops,o.events.activate),e.fire("actions/drop:start",{interaction:n,dragEvent:r}))}},"interactions:action-move":pt,"interactions:after-action-move":function(t,e){var n=t.interaction,r=t.iEvent;"drag"===n.prepared.name&&(dt(n,n.dropState.events),e.fire("actions/drop:move",{interaction:n,dragEvent:r}),n.dropState.events={})},"interactions:action-end":function(t,e){if("drag"===t.interaction.prepared.name){var n=t.interaction,r=t.iEvent;pt(t,e),dt(n,n.dropState.events),e.fire("actions/drop:end",{interaction:n,dragEvent:r})}},"interactions:stop":function(t){var e=t.interaction;if("drag"===e.prepared.name){var n=e.dropState;n&&(n.activeDrops=null,n.events=null,n.cur.dropzone=null,n.cur.element=null,n.prev.dropzone=null,n.prev.element=null,n.rejected=!1)}}},getActiveDrops:ut,getDrop:ct,getDropEvents:ft,fireDropEvents:dt,defaults:{enabled:!1,accept:null,overlap:"pointer"}},ht=vt;st.default=ht;var gt={};function yt(t){var e=t.interaction,n=t.iEvent,r=t.phase;if("gesture"===e.prepared.name){var o=e.pointers.map((function(t){return t.pointer})),a="start"===r,s="end"===r,l=e.interactable.options.deltaSource;if(n.touches=[o[0],o[1]],a)n.distance=W.touchDistance(o,l),n.box=W.touchBBox(o),n.scale=1,n.ds=0,n.angle=W.touchAngle(o,l),n.da=0,e.gesture.startDistance=n.distance,e.gesture.startAngle=n.angle;else if(s){var u=e.prevEvent;n.distance=u.distance,n.box=u.box,n.scale=u.scale,n.ds=0,n.angle=u.angle,n.da=0}else n.distance=W.touchDistance(o,l),n.box=W.touchBBox(o),n.scale=n.distance/e.gesture.startDistance,n.angle=W.touchAngle(o,l),n.ds=n.scale-e.gesture.scale,n.da=n.angle-e.gesture.angle;e.gesture.distance=n.distance,e.gesture.angle=n.angle,i.default.number(n.scale)&&n.scale!==1/0&&!isNaN(n.scale)&&(e.gesture.scale=n.scale)}}Object.defineProperty(gt,"__esModule",{value:!0}),gt.default=void 0;var mt={id:"actions/gesture",before:["actions/drag","actions/resize"],install:function(t){var e=t.actions,n=t.Interactable,r=t.defaults;n.prototype.gesturable=function(t){return i.default.object(t)?(this.options.gesture.enabled=!1!==t.enabled,this.setPerAction("gesture",t),this.setOnEvents("gesture",t),this):i.default.bool(t)?(this.options.gesture.enabled=t,this):this.options.gesture},e.map.gesture=mt,e.methodDict.gesture="gesturable",r.actions.gesture=mt.defaults},listeners:{"interactions:action-start":yt,"interactions:action-move":yt,"interactions:action-end":yt,"interactions:new":function(t){t.interaction.gesture={angle:0,distance:0,scale:1,startAngle:0,startDistance:0}},"auto-start:check":function(t){if(!(t.interaction.pointers.length<2)){var e=t.interactable.options.gesture;if(e&&e.enabled)return t.action={name:"gesture"},!1}}},defaults:{},getCursor:function(){return""}},bt=mt;gt.default=bt;var xt={};function wt(t,e,n,r,o,a,s){if(!e)return!1;if(!0===e){var l=i.default.number(a.width)?a.width:a.right-a.left,u=i.default.number(a.height)?a.height:a.bottom-a.top;if(s=Math.min(s,Math.abs(("left"===t||"right"===t?l:u)/2)),l<0&&("left"===t?t="right":"right"===t&&(t="left")),u<0&&("top"===t?t="bottom":"bottom"===t&&(t="top")),"left"===t)return n.x<(l>=0?a.left:a.right)+s;if("top"===t)return n.y<(u>=0?a.top:a.bottom)+s;if("right"===t)return n.x>(l>=0?a.right:a.left)-s;if("bottom"===t)return n.y>(u>=0?a.bottom:a.top)-s}return!!i.default.element(r)&&(i.default.element(e)?e===r:_.matchesUpTo(r,e,o))}function _t(t){var e=t.iEvent,n=t.interaction;if("resize"===n.prepared.name&&n.resizeAxes){var r=e;n.interactable.options.resize.square?("y"===n.resizeAxes?r.delta.x=r.delta.y:r.delta.y=r.delta.x,r.axes="xy"):(r.axes=n.resizeAxes,"x"===n.resizeAxes?r.delta.y=0:"y"===n.resizeAxes&&(r.delta.x=0))}}Object.defineProperty(xt,"__esModule",{value:!0}),xt.default=void 0;var St={id:"actions/resize",before:["actions/drag"],install:function(t){var e=t.actions,n=t.browser,r=t.Interactable,o=t.defaults;St.cursors=function(t){return t.isIe9?{x:"e-resize",y:"s-resize",xy:"se-resize",top:"n-resize",left:"w-resize",bottom:"s-resize",right:"e-resize",topleft:"se-resize",bottomright:"se-resize",topright:"ne-resize",bottomleft:"ne-resize"}:{x:"ew-resize",y:"ns-resize",xy:"nwse-resize",top:"ns-resize",left:"ew-resize",bottom:"ns-resize",right:"ew-resize",topleft:"nwse-resize",bottomright:"nwse-resize",topright:"nesw-resize",bottomleft:"nesw-resize"}}(n),St.defaultMargin=n.supportsTouch||n.supportsPointerEvent?20:10,r.prototype.resizable=function(e){return function(t,e,n){if(i.default.object(e))return t.options.resize.enabled=!1!==e.enabled,t.setPerAction("resize",e),t.setOnEvents("resize",e),i.default.string(e.axis)&&/^x$|^y$|^xy$/.test(e.axis)?t.options.resize.axis=e.axis:null===e.axis&&(t.options.resize.axis=n.defaults.actions.resize.axis),i.default.bool(e.preserveAspectRatio)?t.options.resize.preserveAspectRatio=e.preserveAspectRatio:i.default.bool(e.square)&&(t.options.resize.square=e.square),t;if(i.default.bool(e))return t.options.resize.enabled=e,t;return t.options.resize}(this,e,t)},e.map.resize=St,e.methodDict.resize="resizable",o.actions.resize=St.defaults},listeners:{"interactions:new":function(t){t.interaction.resizeAxes="xy"},"interactions:action-start":function(t){!function(t){var e=t.iEvent,n=t.interaction;if("resize"===n.prepared.name&&n.prepared.edges){var r=e,o=n.rect;n._rects={start:(0,j.default)({},o),corrected:(0,j.default)({},o),previous:(0,j.default)({},o),delta:{left:0,right:0,width:0,top:0,bottom:0,height:0}},r.edges=n.prepared.edges,r.rect=n._rects.corrected,r.deltaRect=n._rects.delta}}(t),_t(t)},"interactions:action-move":function(t){!function(t){var e=t.iEvent,n=t.interaction;if("resize"===n.prepared.name&&n.prepared.edges){var r=e,o=n.interactable.options.resize.invert,i="reposition"===o||"negate"===o,a=n.rect,s=n._rects,l=s.start,u=s.corrected,c=s.delta,f=s.previous;if((0,j.default)(f,u),i){if((0,j.default)(u,a),"reposition"===o){if(u.top>u.bottom){var d=u.top;u.top=u.bottom,u.bottom=d}if(u.left>u.right){var p=u.left;u.left=u.right,u.right=p}}}else u.top=Math.min(a.top,l.bottom),u.bottom=Math.max(a.bottom,l.top),u.left=Math.min(a.left,l.right),u.right=Math.max(a.right,l.left);for(var v in u.width=u.right-u.left,u.height=u.bottom-u.top,u)c[v]=u[v]-f[v];r.edges=n.prepared.edges,r.rect=u,r.deltaRect=c}}(t),_t(t)},"interactions:action-end":function(t){var e=t.iEvent,n=t.interaction;if("resize"===n.prepared.name&&n.prepared.edges){var r=e;r.edges=n.prepared.edges,r.rect=n._rects.corrected,r.deltaRect=n._rects.delta}},"auto-start:check":function(t){var e=t.interaction,n=t.interactable,r=t.element,o=t.rect,a=t.buttons;if(o){var s=(0,j.default)({},e.coords.cur.page),l=n.options.resize;if(l&&l.enabled&&(!e.pointerIsDown||!/mouse|pointer/.test(e.pointerType)||0!=(a&l.mouseButtons))){if(i.default.object(l.edges)){var u={left:!1,right:!1,top:!1,bottom:!1};for(var c in u)u[c]=wt(c,l.edges[c],s,e._latestPointer.eventTarget,r,o,l.margin||St.defaultMargin);u.left=u.left&&!u.right,u.top=u.top&&!u.bottom,(u.left||u.right||u.top||u.bottom)&&(t.action={name:"resize",edges:u})}else{var f="y"!==l.axis&&s.x>o.right-St.defaultMargin,d="x"!==l.axis&&s.y>o.bottom-St.defaultMargin;(f||d)&&(t.action={name:"resize",axes:(f?"x":"")+(d?"y":"")})}return!t.action&&void 0}}}},defaults:{square:!1,preserveAspectRatio:!1,axis:"xy",margin:NaN,edges:null,invert:"none"},cursors:null,getCursor:function(t){var e=t.edges,n=t.axis,r=t.name,o=St.cursors,i=null;if(n)i=o[r+n];else if(e){for(var a="",s=["top","bottom","left","right"],l=0;l=1){var c={x:zt.x*u,y:zt.y*u};if(c.x||c.y){var f=Rt(a);i.default.window(a)?a.scrollBy(c.x,c.y):a&&(a.scrollLeft+=c.x,a.scrollTop+=c.y);var d=Rt(a),p={x:d.x-f.x,y:d.y-f.y};(p.x||p.y)&&e.fire({type:"autoscroll",target:n,interactable:e,delta:p,interaction:t,container:a})}zt.prevTime=s}zt.isScrolling&&(Mt.default.cancel(zt.i),zt.i=Mt.default.request(zt.scroll))},check:function(t,e){var n=t.options;return n[e].autoScroll&&n[e].autoScroll.enabled},onInteractionMove:function(t){var e=t.interaction,n=t.pointer;if(e.interacting()&&zt.check(e.interactable,e.prepared.name))if(e.simulation)zt.x=zt.y=0;else{var r,o,a,s,l=e.interactable,u=e.element,c=e.prepared.name,f=l.options[c].autoScroll,d=Ct(f.container,l,u);if(i.default.window(d))s=n.clientXd.innerWidth-zt.margin,a=n.clientY>d.innerHeight-zt.margin;else{var p=_.getElementClientRect(d);s=n.clientXp.right-zt.margin,a=n.clientY>p.bottom-zt.margin}zt.x=o?1:s?-1:0,zt.y=a?1:r?-1:0,zt.isScrolling||(zt.margin=f.margin,zt.speed=f.speed,zt.start(e))}}};function Ct(t,n,r){return(i.default.string(t)?(0,k.getStringOptionResult)(t,n,r):t)||(0,e.getWindow)(r)}function Rt(t){return i.default.window(t)&&(t=window.document.body),{x:t.scrollLeft,y:t.scrollTop}}var Ft={id:"auto-scroll",install:function(t){var e=t.defaults,n=t.actions;t.autoScroll=zt,zt.now=function(){return t.now()},n.phaselessTypes.autoscroll=!0,e.perAction.autoScroll=zt.defaults},listeners:{"interactions:new":function(t){t.interaction.autoScroll=null},"interactions:destroy":function(t){t.interaction.autoScroll=null,zt.stop(),zt.interaction&&(zt.interaction=null)},"interactions:stop":zt.stop,"interactions:action-move":function(t){return zt.onInteractionMove(t)}}};At.default=Ft;var Xt={};Object.defineProperty(Xt,"__esModule",{value:!0}),Xt.warnOnce=function(t,n){var r=!1;return function(){return r||(e.window.console.warn(n),r=!0),t.apply(this,arguments)}},Xt.copyAction=function(t,e){return t.name=e.name,t.axis=e.axis,t.edges=e.edges,t};var Yt={};function Wt(t){return i.default.bool(t)?(this.options.styleCursor=t,this):null===t?(delete this.options.styleCursor,this):this.options.styleCursor}function Lt(t){return i.default.func(t)?(this.options.actionChecker=t,this):null===t?(delete this.options.actionChecker,this):this.options.actionChecker}Object.defineProperty(Yt,"__esModule",{value:!0}),Yt.default=void 0;var Bt={id:"auto-start/interactableMethods",install:function(t){var e=t.Interactable;e.prototype.getAction=function(e,n,r,o){var i=function(t,e,n,r,o){var i=t.getRect(r),a=e.buttons||{0:1,1:4,3:8,4:16}[e.button],s={action:null,interactable:t,interaction:n,element:r,rect:i,buttons:a};return o.fire("auto-start:check",s),s.action}(this,n,r,o,t);return this.options.actionChecker?this.options.actionChecker(e,n,i,this,o,r):i},e.prototype.ignoreFrom=(0,Xt.warnOnce)((function(t){return this._backCompatOption("ignoreFrom",t)}),"Interactable.ignoreFrom() has been deprecated. Use Interactble.draggable({ignoreFrom: newValue})."),e.prototype.allowFrom=(0,Xt.warnOnce)((function(t){return this._backCompatOption("allowFrom",t)}),"Interactable.allowFrom() has been deprecated. Use Interactble.draggable({allowFrom: newValue})."),e.prototype.actionChecker=Lt,e.prototype.styleCursor=Wt}};Yt.default=Bt;var Ut={};function Nt(t,e,n,r,o){return e.testIgnoreAllow(e.options[t.name],n,r)&&e.options[t.name].enabled&&Gt(e,n,t,o)?t:null}function Vt(t,e,n,r,o,i,a){for(var s=0,l=r.length;s=s)return!1;if(d.interactable===t){if((u+=p===n.name?1:0)>=i)return!1;if(d.element===e&&(c++,p===n.name&&c>=a))return!1}}}return s>0}function Ht(t,e){return i.default.number(t)?(e.autoStart.maxInteractions=t,this):e.autoStart.maxInteractions}function Kt(t,e,n){var r=n.autoStart.cursorElement;r&&r!==t&&(r.style.cursor=""),t.ownerDocument.documentElement.style.cursor=e,t.style.cursor=e,n.autoStart.cursorElement=e?t:null}function Zt(t,e){var n=t.interactable,r=t.element,o=t.prepared;if("mouse"===t.pointerType&&n&&n.options.styleCursor){var a="";if(o.name){var s=n.options[o.name].cursorChecker;a=i.default.func(s)?s(o,n,r,t._interacting):e.actions.map[o.name].getCursor(o)}Kt(t.element,a||"",e)}else e.autoStart.cursorElement&&Kt(e.autoStart.cursorElement,"",e)}Object.defineProperty(Ut,"__esModule",{value:!0}),Ut.default=void 0;var Jt={id:"auto-start/base",before:["actions"],install:function(t){var e=t.interactStatic,n=t.defaults;t.usePlugin(Yt.default),n.base.actionChecker=null,n.base.styleCursor=!0,(0,j.default)(n.perAction,{manualStart:!1,max:1/0,maxPerElement:1,allowFrom:null,ignoreFrom:null,mouseButtons:1}),e.maxInteractions=function(e){return Ht(e,t)},t.autoStart={maxInteractions:1/0,withinInteractionLimit:Gt,cursorElement:null}},listeners:{"interactions:down":function(t,e){var n=t.interaction,r=t.pointer,o=t.event,i=t.eventTarget;n.interacting()||$t(n,qt(n,r,o,i,e),e)},"interactions:move":function(t,e){!function(t,e){var n=t.interaction,r=t.pointer,o=t.event,i=t.eventTarget;"mouse"!==n.pointerType||n.pointerIsDown||n.interacting()||$t(n,qt(n,r,o,i,e),e)}(t,e),function(t,e){var n=t.interaction;if(n.pointerIsDown&&!n.interacting()&&n.pointerWasMoved&&n.prepared.name){e.fire("autoStart:before-start",t);var r=n.interactable,o=n.prepared.name;o&&r&&(r.options[o].manualStart||!Gt(r,n.element,n.prepared,e)?n.stop():(n.start(n.prepared,r,n.element),Zt(n,e)))}}(t,e)},"interactions:stop":function(t,e){var n=t.interaction,r=n.interactable;r&&r.options.styleCursor&&Kt(n.element,"",e)}},maxInteractions:Ht,withinInteractionLimit:Gt,validateAction:Nt};Ut.default=Jt;var Qt={};Object.defineProperty(Qt,"__esModule",{value:!0}),Qt.default=void 0;var te={id:"auto-start/dragAxis",listeners:{"autoStart:before-start":function(t,e){var n=t.interaction,r=t.eventTarget,o=t.dx,a=t.dy;if("drag"===n.prepared.name){var s=Math.abs(o),l=Math.abs(a),u=n.interactable.options.drag,c=u.startAxis,f=s>l?"x":s0&&(e.autoStartHoldTimer=setTimeout((function(){e.start(e.prepared,e.interactable,e.element)}),n))},"interactions:move":function(t){var e=t.interaction,n=t.duplicate;e.autoStartHoldTimer&&e.pointerWasMoved&&!n&&(clearTimeout(e.autoStartHoldTimer),e.autoStartHoldTimer=null)},"autoStart:before-start":function(t){var e=t.interaction;ne(e)>0&&(e.prepared.name=null)}},getHoldDuration:ne};ee.default=re;var oe={};Object.defineProperty(oe,"__esModule",{value:!0}),oe.default=void 0;var ie={id:"auto-start",install:function(t){t.usePlugin(Ut.default),t.usePlugin(ee.default),t.usePlugin(Qt.default)}};oe.default=ie;var ae={};Object.defineProperty(ae,"__esModule",{value:!0}),ae.default=void 0;ae.default={};var se={};function le(t){return/^(always|never|auto)$/.test(t)?(this.options.preventDefault=t,this):i.default.bool(t)?(this.options.preventDefault=t?"always":"never",this):this.options.preventDefault}function ue(t){var e=t.interaction,n=t.event;e.interactable&&e.interactable.checkAndPreventDefault(n)}function ce(t){var n=t.Interactable;n.prototype.preventDefault=le,n.prototype.checkAndPreventDefault=function(n){return function(t,n,r){var o=t.options.preventDefault;if("never"!==o)if("always"!==o){if(n.events.supportsPassive&&/^touch(start|move)$/.test(r.type)){var a=(0,e.getWindow)(r.target).document,s=n.getDocOptions(a);if(!s||!s.events||!1!==s.events.passive)return}/^(mouse|pointer|touch)*(down|start)/i.test(r.type)||i.default.element(r.target)&&(0,_.matchesSelector)(r.target,"input,select,textarea,[contenteditable=true],[contenteditable=true] *")||r.preventDefault()}else r.preventDefault()}(this,t,n)},t.interactions.docEvents.push({type:"dragstart",listener:function(e){for(var n=0;nt.length)&&(e=t.length);for(var n=0,r=Array(e);n1&&void 0!==arguments[1]?arguments[1]:{},n=e.logger,r=t.Interactable,o=t.defaults;t.logger=n||console,o.base.devTools={ignore:{}},r.prototype.devTools=function(t){return t?((0,j.default)(this.options.devTools,t),this):this.options.devTools}},listeners:{"interactions:action-start":function(t,e){for(var n=t.interaction,r=0;rt.length)&&(e=t.length);for(var n=0,r=Array(e);n150)return null;var e=180*Math.atan2(t.prevEvent.velocityY,t.prevEvent.velocityX)/Math.PI;e<0&&(e+=360);var n=112.5<=e&&e<247.5,r=202.5<=e&&e<337.5;return{up:r,down:!r&&22.5<=e&&e<157.5,left:n,right:!n&&(292.5<=e||e<67.5),angle:e,speed:t.prevEvent.speed,velocity:{x:t.prevEvent.velocityX,y:t.prevEvent.velocityY}}}},{key:"preventDefault",value:function(){}},{key:"stopImmediatePropagation",value:function(){this.immediatePropagationStopped=this.propagationStopped=!0}},{key:"stopPropagation",value:function(){this.propagationStopped=!0}}])&&Re(e.prototype,n),r&&Re(e,r),i}($.BaseEvent);ze.InteractEvent=Be,Object.defineProperties(Be.prototype,{pageX:{get:function(){return this.page.x},set:function(t){this.page.x=t}},pageY:{get:function(){return this.page.y},set:function(t){this.page.y=t}},clientX:{get:function(){return this.client.x},set:function(t){this.client.x=t}},clientY:{get:function(){return this.client.y},set:function(t){this.client.y=t}},dx:{get:function(){return this.delta.x},set:function(t){this.delta.x=t}},dy:{get:function(){return this.delta.y},set:function(t){this.delta.y=t}},velocityX:{get:function(){return this.velocity.x},set:function(t){this.velocity.x=t}},velocityY:{get:function(){return this.velocity.y},set:function(t){this.velocity.y=t}}});var Ue={};Object.defineProperty(Ue,"__esModule",{value:!0}),Ue.PointerInfo=void 0;Ue.PointerInfo=function t(e,n,r,o,i){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.id=void 0,this.pointer=void 0,this.event=void 0,this.downTime=void 0,this.downTarget=void 0,this.id=e,this.pointer=n,this.event=r,this.downTime=o,this.downTarget=i};var Ne,Ve,qe={};function $e(t,e){for(var n=0;nthis.pointerMoveTolerance);var a=this.getPointerIndex(t),s={pointer:t,pointerIndex:a,pointerInfo:this.pointers[a],event:e,type:"move",eventTarget:n,dx:r,dy:o,duplicate:i,interaction:this};i||W.setCoordVelocity(this.coords.velocity,this.coords.delta),this._scopeFire("interactions:move",s),i||this.simulation||(this.interacting()&&(s.type=null,this.move(s)),this.pointerWasMoved&&W.copyCoords(this.coords.prev,this.coords.cur))}},{key:"move",value:function(t){t&&t.event||W.setZeroCoords(this.coords.delta),(t=(0,j.default)({pointer:this._latestPointer.pointer,event:this._latestPointer.event,eventTarget:this._latestPointer.eventTarget,interaction:this},t||{})).phase="move",this._doPhase(t)}},{key:"pointerUp",value:function(t,e,n,r){var o=this.getPointerIndex(t);-1===o&&(o=this.updatePointer(t,e,n,!1));var i=/cancel$/i.test(e.type)?"cancel":"up";this._scopeFire("interactions:".concat(i),{pointer:t,pointerIndex:o,pointerInfo:this.pointers[o],event:e,eventTarget:n,type:i,curEventTarget:r,interaction:this}),this.simulation||this.end(e),this.removePointer(t,e)}},{key:"documentBlur",value:function(t){this.end(t),this._scopeFire("interactions:blur",{event:t,type:"blur",interaction:this})}},{key:"end",value:function(t){var e;this._ending=!0,t=t||this._latestPointer.event,this.interacting()&&(e=this._doPhase({event:t,interaction:this,phase:"end"})),this._ending=!1,!0===e&&this.stop()}},{key:"currentAction",value:function(){return this._interacting?this.prepared.name:null}},{key:"interacting",value:function(){return this._interacting}},{key:"stop",value:function(){this._scopeFire("interactions:stop",{interaction:this}),this.interactable=this.element=null,this._interacting=!1,this._stopped=!0,this.prepared.name=this.prevEvent=null}},{key:"getPointerIndex",value:function(t){var e=W.getPointerId(t);return"mouse"===this.pointerType||"pen"===this.pointerType?this.pointers.length-1:K.findIndex(this.pointers,(function(t){return t.id===e}))}},{key:"getPointerInfo",value:function(t){return this.pointers[this.getPointerIndex(t)]}},{key:"updatePointer",value:function(t,e,n,r){var o=W.getPointerId(t),i=this.getPointerIndex(t),a=this.pointers[i];return r=!1!==r&&(r||/(down|start)$/i.test(e.type)),a?a.pointer=t:(a=new Ue.PointerInfo(o,t,e,null,null),i=this.pointers.length,this.pointers.push(a)),W.setCoords(this.coords.cur,this.pointers.map((function(t){return t.pointer})),this._now()),W.setCoordDeltas(this.coords.delta,this.coords.prev,this.coords.cur),r&&(this.pointerIsDown=!0,a.downTime=this.coords.cur.timeStamp,a.downTarget=n,W.pointerExtend(this.downPointer,t),this.interacting()||(W.copyCoords(this.coords.start,this.coords.cur),W.copyCoords(this.coords.prev,this.coords.cur),this.downEvent=e,this.pointerWasMoved=!1)),this._updateLatestPointer(t,e,n),this._scopeFire("interactions:update-pointer",{pointer:t,event:e,eventTarget:n,down:r,pointerInfo:a,pointerIndex:i,interaction:this}),i}},{key:"removePointer",value:function(t,e){var n=this.getPointerIndex(t);if(-1!==n){var r=this.pointers[n];this._scopeFire("interactions:remove-pointer",{pointer:t,event:e,eventTarget:null,pointerIndex:n,pointerInfo:r,interaction:this}),this.pointers.splice(n,1),this.pointerIsDown=!1}}},{key:"_updateLatestPointer",value:function(t,e,n){this._latestPointer.pointer=t,this._latestPointer.event=e,this._latestPointer.eventTarget=n}},{key:"destroy",value:function(){this._latestPointer.pointer=null,this._latestPointer.event=null,this._latestPointer.eventTarget=null}},{key:"_createPreparedEvent",value:function(t,e,n,r){return new ze.InteractEvent(this,t,this.prepared.name,e,this.element,n,r)}},{key:"_fireEvent",value:function(t){this.interactable.fire(t),(!this.prevEvent||t.timeStamp>=this.prevEvent.timeStamp)&&(this.prevEvent=t)}},{key:"_doPhase",value:function(t){var e=t.event,n=t.phase,r=t.preEnd,o=t.type,i=this.rect;if(i&&"move"===n&&(k.addEdges(this.edges,i,this.coords.delta[this.interactable.options.deltaSource]),i.width=i.right-i.left,i.height=i.bottom-i.top),!1===this._scopeFire("interactions:before-action-".concat(n),t))return!1;var a=t.iEvent=this._createPreparedEvent(e,n,r,o);return this._scopeFire("interactions:action-".concat(n),t),"start"===n&&(this.prevEvent=a),this._fireEvent(a),this._scopeFire("interactions:after-action-".concat(n),t),!0}},{key:"_now",value:function(){return Date.now()}}]),t}();qe.Interaction=Ke;var Ze=Ke;qe.default=Ze;var Je={};function Qe(t){t.pointerIsDown&&(rn(t.coords.cur,t.offset.total),t.offset.pending.x=0,t.offset.pending.y=0)}function tn(t){en(t.interaction)}function en(t){if(!function(t){return!(!t.offset.pending.x&&!t.offset.pending.y)}(t))return!1;var e=t.offset.pending;return rn(t.coords.cur,e),rn(t.coords.delta,e),k.addEdges(t.edges,t.rect,e),e.x=0,e.y=0,!0}function nn(t){var e=t.x,n=t.y;this.offset.pending.x+=e,this.offset.pending.y+=n,this.offset.total.x+=e,this.offset.total.y+=n}function rn(t,e){var n=t.page,r=t.client,o=e.x,i=e.y;n.x+=o,n.y+=i,r.x+=o,r.y+=i}Object.defineProperty(Je,"__esModule",{value:!0}),Je.addTotal=Qe,Je.applyPending=en,Je.default=void 0,qe._ProxyMethods.offsetBy="";var on={id:"offset",before:["modifiers","pointer-events","actions","inertia"],install:function(t){t.Interaction.prototype.offsetBy=nn},listeners:{"interactions:new":function(t){t.interaction.offset={total:{x:0,y:0},pending:{x:0,y:0}}},"interactions:update-pointer":function(t){return Qe(t.interaction)},"interactions:before-action-start":tn,"interactions:before-action-move":tn,"interactions:before-action-end":function(t){var e=t.interaction;if(en(e))return e.move({offset:!0}),e.end(),!1},"interactions:stop":function(t){var e=t.interaction;e.offset.total.x=0,e.offset.total.y=0,e.offset.pending.x=0,e.offset.pending.y=0}}};Je.default=on;var an={};function sn(t,e){for(var n=0;nn.minSpeed&&o>n.endSpeed)this.startInertia();else{if(i.result=i.setAll(this.modifierArg),!i.result.changed)return!1;this.startSmoothEnd()}return e.modification.result.rect=null,e.offsetBy(this.targetOffset),e._doPhase({interaction:e,event:t,phase:"inertiastart"}),e.offsetBy({x:-this.targetOffset.x,y:-this.targetOffset.y}),e.modification.result.rect=null,this.active=!0,e.simulation=this,!0}},{key:"startInertia",value:function(){var t=this,e=this.interaction.coords.velocity.client,n=un(this.interaction),r=n.resistance,o=-Math.log(n.endSpeed/this.v0)/r;this.targetOffset={x:(e.x-o)/r,y:(e.y-o)/r},this.te=o,this.lambda_v0=r/this.v0,this.one_ve_v0=1-n.endSpeed/this.v0;var i=this.modification,a=this.modifierArg;a.pageCoords={x:this.startCoords.x+this.targetOffset.x,y:this.startCoords.y+this.targetOffset.y},i.result=i.setAll(a),i.result.changed&&(this.isModified=!0,this.modifiedOffset={x:this.targetOffset.x+i.result.delta.x,y:this.targetOffset.y+i.result.delta.y}),this.onNextFrame((function(){return t.inertiaTick()}))}},{key:"startSmoothEnd",value:function(){var t=this;this.smoothEnd=!0,this.isModified=!0,this.targetOffset={x:this.modification.result.delta.x,y:this.modification.result.delta.y},this.onNextFrame((function(){return t.smoothEndTick()}))}},{key:"onNextFrame",value:function(t){var e=this;this.timeout=Mt.default.request((function(){e.active&&t()}))}},{key:"inertiaTick",value:function(){var t,e,n,r,o,i,a,s=this,l=this.interaction,u=un(l).resistance,c=(l._now()-this.t0)/1e3;if(c=0;n--){var r=e[n],o=r.selector,a=r.context,s=r.listeners;o===this.target&&a===this._context&&e.splice(n,1);for(var l=s.length-1;l>=0;l--)this._scopeEvents.removeDelegate(this.target,this._context,t,s[l][0],s[l][1])}else this._scopeEvents.remove(this.target,"all")}}]),t}();mn.Interactable=wn;var _n={};function Sn(t,e){for(var n=0;nt.length)&&(e=t.length);for(var n=0,r=Array(e);n=0;a--){var p=f[a];if(p.selector===t&&p.context===e){for(var v=p.listeners,h=v.length-1;h>=0;h--){var g=Tn(v[h],2),y=g[0],m=g[1],b=m.capture,x=m.passive;if(y===o&&b===c.capture&&x===c.passive){v.splice(h,1),v.length||(f.splice(a,1),s(e,r,l),s(e,r,u,!0)),d=!0;break}}if(d)break}}},delegateListener:l,delegateUseCapture:u,delegatedEvents:n,documents:r,targets:e,supportsOptions:!1,supportsPassive:!1};function a(t,n,r,i){var a=kn(i),s=K.find(e,(function(e){return e.eventTarget===t}));s||(s={eventTarget:t,events:{}},e.push(s)),s.events[n]||(s.events[n]=[]),t.addEventListener&&!K.contains(s.events[n],r)&&(t.addEventListener(n,r,o.supportsOptions?a:a.capture),s.events[n].push(r))}function s(t,n,r,i){var a=kn(i),l=K.findIndex(e,(function(e){return e.eventTarget===t})),u=e[l];if(u&&u.events)if("all"!==n){var c=!1,f=u.events[n];if(f){if("all"===r){for(var d=f.length-1;d>=0;d--)s(t,n,f[d],a);return}for(var p=0;p=2)continue;if(!o.interacting()&&e===o.pointerType)return o}return null}};function Cn(t,e){return t.pointers.some((function(t){return t.id===e}))}var Rn=zn;An.default=Rn;var Fn={};function Xn(t){return(Xn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function Yn(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var n=[],r=!0,o=!1,i=void 0;try{for(var a,s=t[Symbol.iterator]();!(r=(a=s.next()).done)&&(n.push(a.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{r||null==s.return||s.return()}finally{if(o)throw i}}return n}(t,e)||function(t,e){if(!t)return;if("string"==typeof t)return Wn(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);"Object"===n&&t.constructor&&(n=t.constructor.name);if("Map"===n||"Set"===n)return Array.from(t);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Wn(t,e)}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Wn(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=Array(e);n=0;r--){var o=e.interactions.list[r];o.interactable===n&&(o.stop(),e.fire("interactions:destroy",{interaction:o}),o.destroy(),e.interactions.list.length>2&&e.interactions.list.splice(r,1))}}},onDocSignal:Kn,doOnInteractions:Gn,methodNames:$n};Fn.default=Zn;var Jn={};function Qn(t){return(Qn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function tr(t,e,n){return(tr="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(t,e,n){var r=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=or(t)););return t}(t,e);if(r){var o=Object.getOwnPropertyDescriptor(r,e);return o.get?o.get.call(n):o.value}})(t,e,n||t)}function er(t,e){return(er=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function nr(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}();return function(){var n,r=or(t);if(e){var o=or(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return rr(this,n)}}function rr(t,e){return!e||"object"!==Qn(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function or(t){return(or=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function ir(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ar(t,e){for(var n=0;nt.length)&&(e=t.length);for(var n=0,r=Array(e);nMath.abs(l.y),s.coords,s.rect),(0,j.default)(r,s.coords));return s.eventProps},defaults:{ratio:"preserve",equalDelta:!1,modifiers:[],enabled:!1}};function jr(t,e,n){var r=t.startCoords,o=t.edgeSign;e?n.y=r.y+(n.x-r.x)*o:n.x=r.x+(n.y-r.y)*o}function kr(t,e,n,r){var o=t.startRect,i=t.startCoords,a=t.ratio,s=t.edgeSign;if(e){var l=r.width/a;n.y=i.y+(l-o.height)*s}else{var u=r.height*a;n.x=i.x+(u-o.width)*s}}Pr.aspectRatio=Mr;var Ir=(0,ke.makeModifier)(Mr,"aspectRatio");Pr.default=Ir;var Dr={};Object.defineProperty(Dr,"__esModule",{value:!0}),Dr.default=void 0;var Ar=function(){};Ar._defaults={};var zr=Ar;Dr.default=zr;var Cr={};Object.defineProperty(Cr,"__esModule",{value:!0}),Object.defineProperty(Cr,"default",{enumerable:!0,get:function(){return Dr.default}});var Rr={};function Fr(t,e,n){return i.default.func(t)?k.resolveRectLike(t,e.interactable,e.element,[n.x,n.y,e]):k.resolveRectLike(t,e.interactable,e.element)}Object.defineProperty(Rr,"__esModule",{value:!0}),Rr.getRestrictionRect=Fr,Rr.restrict=Rr.default=void 0;var Xr={start:function(t){var e=t.rect,n=t.startOffset,r=t.state,o=t.interaction,i=t.pageCoords,a=r.options,s=a.elementRect,l=(0,j.default)({left:0,top:0,right:0,bottom:0},a.offset||{});if(e&&s){var u=Fr(a.restriction,o,i);if(u){var c=u.right-u.left-e.width,f=u.bottom-u.top-e.height;c<0&&(l.left+=c,l.right+=c),f<0&&(l.top+=f,l.bottom+=f)}l.left+=n.left-e.width*s.left,l.top+=n.top-e.height*s.top,l.right+=n.right-e.width*(1-s.right),l.bottom+=n.bottom-e.height*(1-s.bottom)}r.offset=l},set:function(t){var e=t.coords,n=t.interaction,r=t.state,o=r.options,i=r.offset,a=Fr(o.restriction,n,e);if(a){var s=k.xywhToTlbr(a);e.x=Math.max(Math.min(s.right-i.right,e.x),s.left+i.left),e.y=Math.max(Math.min(s.bottom-i.bottom,e.y),s.top+i.top)}},defaults:{restriction:null,elementRect:null,offset:null,endOnly:!1,enabled:!1}};Rr.restrict=Xr;var Yr=(0,ke.makeModifier)(Xr,"restrict");Rr.default=Yr;var Wr={};Object.defineProperty(Wr,"__esModule",{value:!0}),Wr.restrictEdges=Wr.default=void 0;var Lr={top:1/0,left:1/0,bottom:-1/0,right:-1/0},Br={top:-1/0,left:-1/0,bottom:1/0,right:1/0};function Ur(t,e){for(var n=["top","left","bottom","right"],r=0;rt.length)&&(e=t.length);for(var n=0,r=Array(e);n+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
    ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0@*'+~#";.,=\- \/${}%?`]/g,root:"#"},a.jstree.create=function(b,d){var e=new a.jstree.core(++c),f=d;return d=a.extend(!0,{},a.jstree.defaults,d),f&&f.plugins&&(d.plugins=f.plugins),a.each(d.plugins,function(a,b){"core"!==a&&(e=e.plugin(b,d[b]))}),a(b).data("jstree",e),e.init(b,d),e},a.jstree.destroy=function(){a(".jstree:jstree").jstree("destroy"),a(i).off(".jstree")},a.jstree.core=function(a){this._id=a,this._cnt=0,this._wrk=null,this._data={core:{themes:{name:!1,dots:!1,icons:!1,ellipsis:!1},selected:[],last_error:{},working:!1,worker_queue:[],focused:null}}},a.jstree.reference=function(b){var c=null,d=null;if(!b||!b.id||b.tagName&&b.nodeType||(b=b.id),!d||!d.length)try{d=a(b)}catch(e){}if(!d||!d.length)try{d=a("#"+b.replace(a.jstree.idregex,"\\$&"))}catch(e){}return d&&d.length&&(d=d.closest(".jstree")).length&&(d=d.data("jstree"))?c=d:a(".jstree").each(function(){var d=a(this).data("jstree");return d&&d._model.data[b]?(c=d,!1):void 0}),c},a.fn.jstree=function(c){var d="string"==typeof c,e=Array.prototype.slice.call(arguments,1),f=null;return c!==!0||this.length?(this.each(function(){var g=a.jstree.reference(this),h=d&&g?g[c]:null;return f=d&&h?h.apply(g,e):null,g||d||c!==b&&!a.isPlainObject(c)||a.jstree.create(this,c),(g&&!d||c===!0)&&(f=g||!1),null!==f&&f!==b?!1:void 0}),null!==f&&f!==b?f:this):!1},a.expr.pseudos.jstree=a.expr.createPseudo(function(c){return function(c){return a(c).hasClass("jstree")&&a(c).data("jstree")!==b}}),a.jstree.defaults.core={data:!1,strings:!1,check_callback:!1,error:a.noop,animation:200,multiple:!0,themes:{name:!1,url:!1,dir:!1,dots:!0,icons:!0,ellipsis:!1,stripes:!1,variant:!1,responsive:!1},expand_selected_onload:!0,worker:!0,force_text:!1,dblclick_toggle:!0,loaded_state:!1,restore_focus:!0,keyboard:{"ctrl-space":function(b){b.type="click",a(b.currentTarget).trigger(b)},enter:function(b){b.type="click",a(b.currentTarget).trigger(b)},left:function(b){if(b.preventDefault(),this.is_open(b.currentTarget))this.close_node(b.currentTarget);else{var c=this.get_parent(b.currentTarget);c&&c.id!==a.jstree.root&&this.get_node(c,!0).children(".jstree-anchor").focus()}},up:function(a){a.preventDefault();var b=this.get_prev_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").focus()},right:function(b){if(b.preventDefault(),this.is_closed(b.currentTarget))this.open_node(b.currentTarget,function(a){this.get_node(a,!0).children(".jstree-anchor").focus()});else if(this.is_open(b.currentTarget)){var c=this.get_node(b.currentTarget,!0).children(".jstree-children")[0];c&&a(this._firstChild(c)).children(".jstree-anchor").focus()}},down:function(a){a.preventDefault();var b=this.get_next_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").focus()},"*":function(a){this.open_all()},home:function(b){b.preventDefault();var c=this._firstChild(this.get_container_ul()[0]);c&&a(c).children(".jstree-anchor").filter(":visible").focus()},end:function(a){a.preventDefault(),this.element.find(".jstree-anchor").filter(":visible").last().focus()},f2:function(a){a.preventDefault(),this.edit(a.currentTarget)}}},a.jstree.core.prototype={plugin:function(b,c){var d=a.jstree.plugins[b];return d?(this._data[b]={},d.prototype=this,new d(c,this)):this},init:function(b,c){this._model={data:{},changed:[],force_full_redraw:!1,redraw_timeout:!1,default_state:{loaded:!0,opened:!1,selected:!1,disabled:!1}},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this.element=a(b).addClass("jstree jstree-"+this._id),this.settings=c,this._data.core.ready=!1,this._data.core.loaded=!1,this._data.core.rtl="rtl"===this.element.css("direction"),this.element[this._data.core.rtl?"addClass":"removeClass"]("jstree-rtl"),this.element.attr("role","tree"),this.settings.core.multiple&&this.element.attr("aria-multiselectable",!0),this.element.attr("tabindex")||this.element.attr("tabindex","0"),this.bind(),this.trigger("init"),this._data.core.original_container_html=this.element.find(" > ul > li").clone(!0),this._data.core.original_container_html.find("li").addBack().contents().filter(function(){return 3===this.nodeType&&(!this.nodeValue||/^\s+$/.test(this.nodeValue))}).remove(),this.element.html(""),this.element.attr("aria-activedescendant","j"+this._id+"_loading"),this._data.core.li_height=this.get_container_ul().children("li").first().outerHeight()||24,this._data.core.node=this._create_prototype_node(),this.trigger("loading"),this.load_node(a.jstree.root)},destroy:function(a){if(this.trigger("destroy"),this._wrk)try{window.URL.revokeObjectURL(this._wrk),this._wrk=null}catch(b){}a||this.element.empty(),this.teardown()},_create_prototype_node:function(){var a=i.createElement("LI"),b,c;return a.setAttribute("role","presentation"),b=i.createElement("I"),b.className="jstree-icon jstree-ocl",b.setAttribute("role","presentation"),a.appendChild(b),b=i.createElement("A"),b.className="jstree-anchor",b.setAttribute("href","#"),b.setAttribute("tabindex","-1"),b.setAttribute("role","treeitem"),c=i.createElement("I"),c.className="jstree-icon jstree-themeicon",c.setAttribute("role","presentation"),b.appendChild(c),a.appendChild(b),b=c=null,a},_kbevent_to_func:function(a){var b={8:"Backspace",9:"Tab",13:"Enter",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock",16:"Shift",17:"Ctrl",18:"Alt",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*",173:"-"},c=[];if(a.ctrlKey&&c.push("ctrl"),a.altKey&&c.push("alt"),a.shiftKey&&c.push("shift"),c.push(b[a.which]||a.which),c=c.sort().join("-").toLowerCase(),"shift-shift"===c||"ctrl-ctrl"===c||"alt-alt"===c)return null;var d=this.settings.core.keyboard,e,f;for(e in d)if(d.hasOwnProperty(e)&&(f=e,"-"!==f&&"+"!==f&&(f=f.replace("--","-MINUS").replace("+-","-MINUS").replace("++","-PLUS").replace("-+","-PLUS"),f=f.split(/-|\+/).sort().join("-").replace("MINUS","-").replace("PLUS","+").toLowerCase()),f===c))return d[e];return null},teardown:function(){this.unbind(),this.element.removeClass("jstree").removeData("jstree").find("[class^='jstree']").addBack().attr("class",function(){return this.className.replace(/jstree[^ ]*|$/gi,"")}),this.element=null},bind:function(){var b="",c=null,d=0;this.element.on("dblclick.jstree",function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;if(i.selection&&i.selection.empty)i.selection.empty();else if(window.getSelection){var b=window.getSelection();try{b.removeAllRanges(),b.collapse()}catch(c){}}}).on("mousedown.jstree",a.proxy(function(a){a.target===this.element[0]&&(a.preventDefault(),d=+new Date)},this)).on("mousedown.jstree",".jstree-ocl",function(a){a.preventDefault()}).on("click.jstree",".jstree-ocl",a.proxy(function(a){this.toggle_node(a.target)},this)).on("dblclick.jstree",".jstree-anchor",a.proxy(function(a){return a.target.tagName&&"input"===a.target.tagName.toLowerCase()?!0:void(this.settings.core.dblclick_toggle&&this.toggle_node(a.target))},this)).on("click.jstree",".jstree-anchor",a.proxy(function(b){b.preventDefault(),b.currentTarget!==i.activeElement&&a(b.currentTarget).focus(),this.activate_node(b.currentTarget,b)},this)).on("keydown.jstree",".jstree-anchor",a.proxy(function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;this._data.core.rtl&&(37===a.which?a.which=39:39===a.which&&(a.which=37));var b=this._kbevent_to_func(a);if(b){var c=b.call(this,a);if(c===!1||c===!0)return c}},this)).on("load_node.jstree",a.proxy(function(b,c){c.status&&(c.node.id!==a.jstree.root||this._data.core.loaded||(this._data.core.loaded=!0,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.trigger("loaded")),this._data.core.ready||setTimeout(a.proxy(function(){if(this.element&&!this.get_container_ul().find(".jstree-loading").length){if(this._data.core.ready=!0,this._data.core.selected.length){if(this.settings.core.expand_selected_onload){var b=[],c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)b=b.concat(this._model.data[this._data.core.selected[c]].parents);for(b=a.vakata.array_unique(b),c=0,d=b.length;d>c;c++)this.open_node(b[c],!1,0)}this.trigger("changed",{action:"ready",selected:this._data.core.selected})}this.trigger("ready")}},this),0))},this)).on("keypress.jstree",a.proxy(function(d){if(d.target.tagName&&"input"===d.target.tagName.toLowerCase())return!0;c&&clearTimeout(c),c=setTimeout(function(){b=""},500);var e=String.fromCharCode(d.which).toLowerCase(),f=this.element.find(".jstree-anchor").filter(":visible"),g=f.index(i.activeElement)||0,h=!1;if(b+=e,b.length>1){if(f.slice(g).each(a.proxy(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).focus(),h=!0,!1):void 0},this)),h)return;if(f.slice(0,g).each(a.proxy(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).focus(),h=!0,!1):void 0},this)),h)return}if(new RegExp("^"+e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")+"+$").test(b)){if(f.slice(g+1).each(a.proxy(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).focus(),h=!0,!1):void 0},this)),h)return;if(f.slice(0,g+1).each(a.proxy(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).focus(),h=!0,!1):void 0},this)),h)return}},this)).on("init.jstree",a.proxy(function(){var a=this.settings.core.themes;this._data.core.themes.dots=a.dots,this._data.core.themes.stripes=a.stripes,this._data.core.themes.icons=a.icons,this._data.core.themes.ellipsis=a.ellipsis,this.set_theme(a.name||"default",a.url),this.set_theme_variant(a.variant)},this)).on("loading.jstree",a.proxy(function(){this[this._data.core.themes.dots?"show_dots":"hide_dots"](),this[this._data.core.themes.icons?"show_icons":"hide_icons"](),this[this._data.core.themes.stripes?"show_stripes":"hide_stripes"](),this[this._data.core.themes.ellipsis?"show_ellipsis":"hide_ellipsis"]()},this)).on("blur.jstree",".jstree-anchor",a.proxy(function(b){this._data.core.focused=null,a(b.currentTarget).filter(".jstree-hovered").trigger("mouseleave"),this.element.attr("tabindex","0")},this)).on("focus.jstree",".jstree-anchor",a.proxy(function(b){var c=this.get_node(b.currentTarget);c&&c.id&&(this._data.core.focused=c.id),this.element.find(".jstree-hovered").not(b.currentTarget).trigger("mouseleave"),a(b.currentTarget).trigger("mouseenter"),this.element.attr("tabindex","-1")},this)).on("focus.jstree",a.proxy(function(){if(+new Date-d>500&&!this._data.core.focused&&this.settings.core.restore_focus){d=0;var a=this.get_node(this.element.attr("aria-activedescendant"),!0);a&&a.find("> .jstree-anchor").focus()}},this)).on("mouseenter.jstree",".jstree-anchor",a.proxy(function(a){this.hover_node(a.currentTarget)},this)).on("mouseleave.jstree",".jstree-anchor",a.proxy(function(a){this.dehover_node(a.currentTarget)},this))},unbind:function(){this.element.off(".jstree"),a(i).off(".jstree-"+this._id)},trigger:function(a,b){b||(b={}),b.instance=this,this.element.triggerHandler(a.replace(".jstree","")+".jstree",b)},get_container:function(){return this.element},get_container_ul:function(){return this.element.children(".jstree-children").first()},get_string:function(b){var c=this.settings.core.strings;return a.isFunction(c)?c.call(this,b):c&&c[b]?c[b]:b},_firstChild:function(a){a=a?a.firstChild:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_nextSibling:function(a){a=a?a.nextSibling:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_previousSibling:function(a){a=a?a.previousSibling:null;while(null!==a&&1!==a.nodeType)a=a.previousSibling;return a},get_node:function(b,c){b&&b.id&&(b=b.id),b instanceof a&&b.length&&b[0].id&&(b=b[0].id);var d;try{if(this._model.data[b])b=this._model.data[b];else if("string"==typeof b&&this._model.data[b.replace(/^#/,"")])b=this._model.data[b.replace(/^#/,"")];else if("string"==typeof b&&(d=a("#"+b.replace(a.jstree.idregex,"\\$&"),this.element)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else if((d=this.element.find(b)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else{if(!(d=this.element.find(b)).length||!d.hasClass("jstree"))return!1;b=this._model.data[a.jstree.root]}return c&&(b=b.id===a.jstree.root?this.element:a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)),b}catch(e){return!1}},get_path:function(b,c,d){if(b=b.parents?b:this.get_node(b),!b||b.id===a.jstree.root||!b.parents)return!1;var e,f,g=[];for(g.push(d?b.id:b.text),e=0,f=b.parents.length;f>e;e++)g.push(d?b.parents[e]:this.get_text(b.parents[e]));return g=g.reverse().slice(1),c?g.join(c):g},get_next_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this._firstChild(this.get_container_ul()[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}if(b.hasClass("jstree-open")){d=this._firstChild(b.children(".jstree-children")[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);if(null!==d)return a(d)}d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return null!==d?a(d):b.parentsUntil(".jstree",".jstree-node").nextAll(".jstree-node:visible").first()},get_prev_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this.get_container_ul()[0].lastChild;while(d&&0===d.offsetHeight)d=this._previousSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);if(null!==d){b=a(d);while(b.hasClass("jstree-open"))b=b.children(".jstree-children").first().children(".jstree-node:visible:last");return b}return d=b[0].parentNode.parentNode,d&&d.className&&-1!==d.className.indexOf("jstree-node")?a(d):!1},get_parent:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.parent:!1},get_children_dom:function(a){return a=this.get_node(a,!0),a[0]===this.element[0]?this.get_container_ul().children(".jstree-node"):a&&a.length?a.children(".jstree-children").children(".jstree-node"):!1},is_parent:function(a){return a=this.get_node(a),a&&(a.state.loaded===!1||a.children.length>0)},is_loaded:function(a){return a=this.get_node(a),a&&a.state.loaded},is_loading:function(a){return a=this.get_node(a),a&&a.state&&a.state.loading},is_open:function(a){return a=this.get_node(a),a&&a.state.opened},is_closed:function(a){return a=this.get_node(a),a&&this.is_parent(a)&&!a.state.opened},is_leaf:function(a){return!this.is_parent(a)},load_node:function(b,c){var d,e,f,g,h;if(a.isArray(b))return this._load_nodes(b.slice(),c),!0;if(b=this.get_node(b),!b)return c&&c.call(this,b,!1),!1;if(b.state.loaded){for(b.state.loaded=!1,f=0,g=b.parents.length;g>f;f++)this._model.data[b.parents[f]].children_d=a.vakata.array_filter(this._model.data[b.parents[f]].children_d,function(c){return-1===a.inArray(c,b.children_d)});for(d=0,e=b.children_d.length;e>d;d++)this._model.data[b.children_d[d]].state.selected&&(h=!0),delete this._model.data[b.children_d[d]];h&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(c){return-1===a.inArray(c,b.children_d)})),b.children=[],b.children_d=[],h&&this.trigger("changed",{action:"load_node",node:b,selected:this._data.core.selected})}return b.state.failed=!1,b.state.loading=!0,this.get_node(b,!0).addClass("jstree-loading").attr("aria-busy",!0),this._load_node(b,a.proxy(function(a){b=this._model.data[b.id],b.state.loading=!1,b.state.loaded=a,b.state.failed=!b.state.loaded;var d=this.get_node(b,!0),e=0,f=0,g=this._model.data,h=!1;for(e=0,f=b.children.length;f>e;e++)if(g[b.children[e]]&&!g[b.children[e]].state.hidden){h=!0;break}b.state.loaded&&d&&d.length&&(d.removeClass("jstree-closed jstree-open jstree-leaf"),h?"#"!==b.id&&d.addClass(b.state.opened?"jstree-open":"jstree-closed"):d.addClass("jstree-leaf")),d.removeClass("jstree-loading").attr("aria-busy",!1),this.trigger("load_node",{node:b,status:a}),c&&c.call(this,b,a)},this)),!0},_load_nodes:function(a,b,c,d){var e=!0,f=function(){this._load_nodes(a,b,!0)},g=this._model.data,h,i,j=[];for(h=0,i=a.length;i>h;h++)g[a[h]]&&(!g[a[h]].state.loaded&&!g[a[h]].state.failed||!c&&d)&&(this.is_loading(a[h])||this.load_node(a[h],f),e=!1);if(e){for(h=0,i=a.length;i>h;h++)g[a[h]]&&g[a[h]].state.loaded&&j.push(a[h]);b&&!b.done&&(b.call(this,j),b.done=!0)}},load_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=[],e=this._model.data,f=e[b.id].children_d,g,h;for(b.state&&!b.state.loaded&&d.push(b.id),g=0,h=f.length;h>g;g++)e[f[g]]&&e[f[g]].state&&!e[f[g]].state.loaded&&d.push(f[g]);d.length?this._load_nodes(d,function(){this.load_all(b,c)}):(c&&c.call(this,b),this.trigger("load_all",{node:b}))},_load_node:function(b,c){var d=this.settings.core.data,e,f=function g(){return 3!==this.nodeType&&8!==this.nodeType};return d?a.isFunction(d)?d.call(this,b,a.proxy(function(d){d===!1?c.call(this,!1):this["string"==typeof d?"_append_html_data":"_append_json_data"](b,"string"==typeof d?a(a.parseHTML(d)).filter(f):d,function(a){c.call(this,a)})},this)):"object"==typeof d?d.url?(d=a.extend(!0,{},d),a.isFunction(d.url)&&(d.url=d.url.call(this,b)),a.isFunction(d.data)&&(d.data=d.data.call(this,b)),a.ajax(d).done(a.proxy(function(d,e,g){var h=g.getResponseHeader("Content-Type");return h&&-1!==h.indexOf("json")||"object"==typeof d?this._append_json_data(b,d,function(a){c.call(this,a)}):h&&-1!==h.indexOf("html")||"string"==typeof d?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:g})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))},this)).fail(a.proxy(function(a){this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:a})},c.call(this,!1),this.settings.core.error.call(this,this._data.core.last_error)},this))):(e=a.isArray(d)?a.extend(!0,[],d):a.isPlainObject(d)?a.extend(!0,{},d):d,b.id===a.jstree.root?this._append_json_data(b,e,function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_05",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))):"string"==typeof d?b.id===a.jstree.root?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_06",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1)):c.call(this,!1):b.id===a.jstree.root?this._append_html_data(b,this._data.core.original_container_html.clone(!0),function(a){c.call(this,a)}):c.call(this,!1)},_node_changed:function(b){b=this.get_node(b),b&&-1===a.inArray(b.id,this._model.changed)&&this._model.changed.push(b.id)},_append_html_data:function(b,c,d){b=this.get_node(b),b.children=[],b.children_d=[];var e=c.is("ul")?c.children():c,f=b.id,g=[],h=[],i=this._model.data,j=i[f],k=this._data.core.selected.length,l,m,n;for(e.each(a.proxy(function(b,c){l=this._parse_model_from_html(a(c),f,j.parents.concat()),l&&(g.push(l),h.push(l),i[l].children_d.length&&(h=h.concat(i[l].children_d)))},this)),j.children=g,j.children_d=h,m=0,n=j.parents.length;n>m;m++)i[j.parents[m]].children_d=i[j.parents[m]].children_d.concat(h);this.trigger("model",{nodes:h,parent:f}),f!==a.jstree.root?(this._node_changed(f),this.redraw()):(this.get_container_ul().children(".jstree-initial-node").remove(),this.redraw(!0)),this._data.core.selected.length!==k&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),d.call(this,!0)},_append_json_data:function(b,c,d,e){if(null!==this.element){b=this.get_node(b),b.children=[],b.children_d=[],c.d&&(c=c.d,"string"==typeof c&&(c=JSON.parse(c))),a.isArray(c)||(c=[c]);var f=null,g={df:this._model.default_state,dat:c,par:b.id,m:this._model.data,t_id:this._id,t_cnt:this._cnt,sel:this._data.core.selected},h=this,i=function(a,b){a.data&&(a=a.data);var c=a.dat,d=a.par,e=[],f=[],g=[],i=a.df,j=a.t_id,k=a.t_cnt,l=a.m,m=l[d],n=a.sel,o,p,q,r,s=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f,h,j,k,m={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in i)i.hasOwnProperty(f)&&(m.state[f]=i[f]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(m.icon=a.data.jstree.icon),(m.icon===b||null===m.icon||""===m.icon)&&(m.icon=!0),a&&a.data&&(m.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(m.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(m.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(m.li_attr[f]=a.li_attr[f]);if(m.li_attr.id||(m.li_attr.id=e),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(m.a_attr[f]=a.a_attr[f]);for(a&&a.children&&a.children===!0&&(m.state.loaded=!1,m.children=[],m.children_d=[]),l[m.id]=m,f=0,h=m.children.length;h>f;f++)j=s(l[m.children[f]],m.id,d),k=l[j],m.children_d.push(j),k.children_d.length&&(m.children_d=m.children_d.concat(k.children_d));return delete a.data,delete a.children,l[m.id].original=a,m.state.selected&&g.push(m.id),m.id},t=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,h,m,n,o;do e="j"+j+"_"+ ++k;while(l[e]);o={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in i)i.hasOwnProperty(f)&&(o.state[f]=i[f]);if(a&&a.id&&(o.id=a.id.toString()),a&&a.text&&(o.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(o.icon=a.data.jstree.icon),(o.icon===b||null===o.icon||""===o.icon)&&(o.icon=!0),a&&a.data&&(o.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(o.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(o.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(o.li_attr[f]=a.li_attr[f]);if(o.li_attr.id&&!o.id&&(o.id=o.li_attr.id.toString()),o.id||(o.id=e),o.li_attr.id||(o.li_attr.id=o.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(o.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,h=a.children.length;h>f;f++)m=t(a.children[f],o.id,d),n=l[m],o.children.push(m),n.children_d.length&&(o.children_d=o.children_d.concat(n.children_d));o.children_d=o.children_d.concat(o.children)}return a&&a.children&&a.children===!0&&(o.state.loaded=!1,o.children=[],o.children_d=[]),delete a.data,delete a.children,o.original=a,l[o.id]=o,o.state.selected&&g.push(o.id),o.id};if(c.length&&c[0].id!==b&&c[0].parent!==b){for(p=0,q=c.length;q>p;p++)c[p].children||(c[p].children=[]),c[p].state||(c[p].state={}),l[c[p].id.toString()]=c[p];for(p=0,q=c.length;q>p;p++)l[c[p].parent.toString()]?(l[c[p].parent.toString()].children.push(c[p].id.toString()),m.children_d.push(c[p].id.toString())):"undefined"!=typeof h&&(h._data.core.last_error={error:"parse",plugin:"core",id:"core_07",reason:"Node with invalid parent",data:JSON.stringify({id:c[p].id.toString(),parent:c[p].parent.toString()})},h.settings.core.error.call(h,h._data.core.last_error));for(p=0,q=m.children.length;q>p;p++)o=s(l[m.children[p]],d,m.parents.concat()),f.push(o),l[o].children_d.length&&(f=f.concat(l[o].children_d));for(p=0,q=m.parents.length;q>p;p++)l[m.parents[p]].children_d=l[m.parents[p]].children_d.concat(f);r={cnt:k,mod:l,sel:n,par:d,dpc:f,add:g}}else{for(p=0,q=c.length;q>p;p++)o=t(c[p],d,m.parents.concat()),o&&(e.push(o),f.push(o),l[o].children_d.length&&(f=f.concat(l[o].children_d)));for(m.children=e,m.children_d=f,p=0,q=m.parents.length;q>p;p++)l[m.parents[p]].children_d=l[m.parents[p]].children_d.concat(f);r={cnt:k,mod:l,sel:n,par:d,dpc:f,add:g}}return"undefined"!=typeof window&&"undefined"!=typeof window.document?r:void postMessage(r)},k=function(b,c){if(null!==this.element){this._cnt=b.cnt;var e,f=this._model.data;for(e in f)f.hasOwnProperty(e)&&f[e].state&&f[e].state.loading&&b.mod[e]&&(b.mod[e].state.loading=!0);if(this._model.data=b.mod,c){var g,i=b.add,k=b.sel,l=this._data.core.selected.slice();if(f=this._model.data,k.length!==l.length||a.vakata.array_unique(k.concat(l)).length!==k.length){for(e=0,g=k.length;g>e;e++)-1===a.inArray(k[e],i)&&-1===a.inArray(k[e],l)&&(f[k[e]].state.selected=!1);for(e=0,g=l.length;g>e;e++)-1===a.inArray(l[e],k)&&(f[l[e]].state.selected=!0)}}b.add.length&&(this._data.core.selected=this._data.core.selected.concat(b.add)),this.trigger("model",{nodes:b.dpc,parent:b.par}),b.par!==a.jstree.root?(this._node_changed(b.par),this.redraw()):this.redraw(!0),b.add.length&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),!c&&j?j(function(){d.call(h,!0)}):d.call(h,!0)}};if(this.settings.core.worker&&window.Blob&&window.URL&&window.Worker)try{null===this._wrk&&(this._wrk=window.URL.createObjectURL(new window.Blob(["self.onmessage = "+i.toString()],{type:"text/javascript"}))),!this._data.core.working||e?(this._data.core.working=!0,f=new window.Worker(this._wrk),f.onmessage=a.proxy(function(a){k.call(this,a.data,!0);try{f.terminate(),f=null}catch(b){}this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1},this),g.par?f.postMessage(g):this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1):this._data.core.worker_queue.push([b,c,d,!0])}catch(l){k.call(this,i(g),!1),this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1}else k.call(this,i(g),!1)}},_parse_model_from_html:function(c,d,e){e=e?[].concat(e):[],d&&e.unshift(d);var f,g,h=this._model.data,i={id:!1,text:!1,icon:!0,parent:d,parents:e,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1},j,k,l;for(j in this._model.default_state)this._model.default_state.hasOwnProperty(j)&&(i.state[j]=this._model.default_state[j]);if(k=a.vakata.attributes(c,!0),a.each(k,function(b,c){return c=a.trim(c),c.length?(i.li_attr[b]=c,void("id"===b&&(i.id=c.toString()))):!0}),k=c.children("a").first(),k.length&&(k=a.vakata.attributes(k,!0),a.each(k,function(b,c){c=a.trim(c),c.length&&(i.a_attr[b]=c)})),k=c.children("a").first().length?c.children("a").first().clone():c.clone(),k.children("ins, i, ul").remove(),k=k.html(),k=a("
    ").html(k),i.text=this.settings.core.force_text?k.text():k.html(),k=c.data(),i.data=k?a.extend(!0,{},k):null,i.state.opened=c.hasClass("jstree-open"),i.state.selected=c.children("a").hasClass("jstree-clicked"),i.state.disabled=c.children("a").hasClass("jstree-disabled"),i.data&&i.data.jstree)for(j in i.data.jstree)i.data.jstree.hasOwnProperty(j)&&(i.state[j]=i.data.jstree[j]);k=c.children("a").children(".jstree-themeicon"),k.length&&(i.icon=k.hasClass("jstree-themeicon-hidden")?!1:k.attr("rel")),i.state.icon!==b&&(i.icon=i.state.icon),(i.icon===b||null===i.icon||""===i.icon)&&(i.icon=!0),k=c.children("ul").children("li");do l="j"+this._id+"_"+ ++this._cnt;while(h[l]);return i.id=i.li_attr.id?i.li_attr.id.toString():l,k.length?(k.each(a.proxy(function(b,c){f=this._parse_model_from_html(a(c),i.id,e),g=this._model.data[f],i.children.push(f),g.children_d.length&&(i.children_d=i.children_d.concat(g.children_d))},this)),i.children_d=i.children_d.concat(i.children)):c.hasClass("jstree-closed")&&(i.state.loaded=!1),i.li_attr["class"]&&(i.li_attr["class"]=i.li_attr["class"].replace("jstree-closed","").replace("jstree-open","")),i.a_attr["class"]&&(i.a_attr["class"]=i.a_attr["class"].replace("jstree-clicked","").replace("jstree-disabled","")),h[i.id]=i,i.state.selected&&this._data.core.selected.push(i.id),i.id},_parse_model_from_flat_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f=this._model.data,g=this._model.default_state,h,i,j,k,l={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(h in g)g.hasOwnProperty(h)&&(l.state[h]=g[h]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(h in a.data.jstree)a.data.jstree.hasOwnProperty(h)&&(l.state[h]=a.data.jstree[h]);if(a&&"object"==typeof a.state)for(h in a.state)a.state.hasOwnProperty(h)&&(l.state[h]=a.state[h]);if(a&&"object"==typeof a.li_attr)for(h in a.li_attr)a.li_attr.hasOwnProperty(h)&&(l.li_attr[h]=a.li_attr[h]);if(l.li_attr.id||(l.li_attr.id=e),a&&"object"==typeof a.a_attr)for(h in a.a_attr)a.a_attr.hasOwnProperty(h)&&(l.a_attr[h]=a.a_attr[h]);for(a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),f[l.id]=l,h=0,i=l.children.length;i>h;h++)j=this._parse_model_from_flat_json(f[l.children[h]],l.id,d),k=f[j],l.children_d.push(j),k.children_d.length&&(l.children_d=l.children_d.concat(k.children_d));return delete a.data,delete a.children,f[l.id].original=a,l.state.selected&&this._data.core.selected.push(l.id),l.id},_parse_model_from_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,g,h,i,j=this._model.data,k=this._model.default_state,l;do e="j"+this._id+"_"+ ++this._cnt;while(j[e]);l={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in k)k.hasOwnProperty(f)&&(l.state[f]=k[f]);if(a&&a.id&&(l.id=a.id.toString()),a&&a.text&&(l.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(l.state[f]=a.data.jstree[f]); +if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(l.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(l.li_attr[f]=a.li_attr[f]);if(l.li_attr.id&&!l.id&&(l.id=l.li_attr.id.toString()),l.id||(l.id=e),l.li_attr.id||(l.li_attr.id=l.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(l.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,g=a.children.length;g>f;f++)h=this._parse_model_from_json(a.children[f],l.id,d),i=j[h],l.children.push(h),i.children_d.length&&(l.children_d=l.children_d.concat(i.children_d));l.children_d=l.children.concat(l.children_d)}return a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),delete a.data,delete a.children,l.original=a,j[l.id]=l,l.state.selected&&this._data.core.selected.push(l.id),l.id},_redraw:function(){var b=this._model.force_full_redraw?this._model.data[a.jstree.root].children.concat([]):this._model.changed.concat([]),c=i.createElement("UL"),d,e,f,g=this._data.core.focused;for(e=0,f=b.length;f>e;e++)d=this.redraw_node(b[e],!0,this._model.force_full_redraw),d&&this._model.force_full_redraw&&c.appendChild(d);this._model.force_full_redraw&&(c.className=this.get_container_ul()[0].className,c.setAttribute("role","group"),this.element.empty().append(c)),null!==g&&this.settings.core.restore_focus&&(d=this.get_node(g,!0),d&&d.length&&d.children(".jstree-anchor")[0]!==i.activeElement?d.children(".jstree-anchor").focus():this._data.core.focused=null),this._model.force_full_redraw=!1,this._model.changed=[],this.trigger("redraw",{nodes:b})},redraw:function(a){a&&(this._model.force_full_redraw=!0),this._redraw()},draw_children:function(b){var c=this.get_node(b),d=!1,e=!1,f=!1,g=i;if(!c)return!1;if(c.id===a.jstree.root)return this.redraw(!0);if(b=this.get_node(b,!0),!b||!b.length)return!1;if(b.children(".jstree-children").remove(),b=b[0],c.children.length&&c.state.loaded){for(f=g.createElement("UL"),f.setAttribute("role","group"),f.className="jstree-children",d=0,e=c.children.length;e>d;d++)f.appendChild(this.redraw_node(c.children[d],!0,!0));b.appendChild(f)}},redraw_node:function(b,c,d,e){var f=this.get_node(b),g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n="",o=i,p=this._model.data,q=!1,r=!1,s=null,t=0,u=0,v=!1,w=!1;if(!f)return!1;if(f.id===a.jstree.root)return this.redraw(!0);if(c=c||0===f.children.length,b=i.querySelector?this.element[0].querySelector("#"+(-1!=="0123456789".indexOf(f.id[0])?"\\3"+f.id[0]+" "+f.id.substr(1).replace(a.jstree.idregex,"\\$&"):f.id.replace(a.jstree.idregex,"\\$&"))):i.getElementById(f.id))b=a(b),d||(g=b.parent().parent()[0],g===this.element[0]&&(g=null),h=b.index()),c||!f.children.length||b.children(".jstree-children").length||(c=!0),c||(j=b.children(".jstree-children")[0]),q=b.children(".jstree-anchor")[0]===i.activeElement,b.remove();else if(c=!0,!d){if(g=f.parent!==a.jstree.root?a("#"+f.parent.replace(a.jstree.idregex,"\\$&"),this.element)[0]:null,!(null===g||g&&p[f.parent].state.opened))return!1;h=a.inArray(f.id,null===g?p[a.jstree.root].children:p[f.parent].children)}b=this._data.core.node.cloneNode(!0),n="jstree-node ";for(k in f.li_attr)if(f.li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"!==k?b.setAttribute(k,f.li_attr[k]):n+=f.li_attr[k]}for(f.a_attr.id||(f.a_attr.id=f.id+"_anchor"),b.setAttribute("aria-selected",!!f.state.selected),b.childNodes[1].setAttribute("aria-selected",!!f.state.selected),b.setAttribute("aria-level",f.parents.length),b.childNodes[1].setAttribute("aria-level",f.parents.length),b.setAttribute("aria-labelledby",f.a_attr.id),f.state.disabled&&(b.setAttribute("aria-disabled",!0),b.childNodes[1].setAttribute("aria-disabled",!0)),k=0,l=f.children.length;l>k;k++)if(!p[f.children[k]].state.hidden){v=!0;break}if(null!==f.parent&&p[f.parent]&&!f.state.hidden&&(k=a.inArray(f.id,p[f.parent].children),w=f.id,-1!==k))for(k++,l=p[f.parent].children.length;l>k;k++)if(p[p[f.parent].children[k]].state.hidden||(w=p[f.parent].children[k]),w!==f.id)break;f.state.hidden&&(n+=" jstree-hidden"),f.state.loading&&(n+=" jstree-loading"),f.state.loaded&&!v?n+=" jstree-leaf":(n+=f.state.opened&&f.state.loaded?" jstree-open":" jstree-closed",b.setAttribute("aria-expanded",f.state.opened&&f.state.loaded),b.childNodes[1].setAttribute("aria-expanded",f.state.opened&&f.state.loaded)),w===f.id&&(n+=" jstree-last"),b.id=f.id,b.className=n,n=(f.state.selected?" jstree-clicked":"")+(f.state.disabled?" jstree-disabled":"");for(l in f.a_attr)if(f.a_attr.hasOwnProperty(l)){if("href"===l&&"#"===f.a_attr[l])continue;"class"!==l?b.childNodes[1].setAttribute(l,f.a_attr[l]):n+=" "+f.a_attr[l]}if(n.length&&(b.childNodes[1].className="jstree-anchor "+n),(f.icon&&f.icon!==!0||f.icon===!1)&&(f.icon===!1?b.childNodes[1].childNodes[0].className+=" jstree-themeicon-hidden":-1===f.icon.indexOf("/")&&-1===f.icon.indexOf(".")?b.childNodes[1].childNodes[0].className+=" "+f.icon+" jstree-themeicon-custom":(b.childNodes[1].childNodes[0].style.backgroundImage='url("'+f.icon+'")',b.childNodes[1].childNodes[0].style.backgroundPosition="center center",b.childNodes[1].childNodes[0].style.backgroundSize="auto",b.childNodes[1].childNodes[0].className+=" jstree-themeicon-custom")),this.settings.core.force_text?b.childNodes[1].appendChild(o.createTextNode(f.text)):b.childNodes[1].innerHTML+=f.text,c&&f.children.length&&(f.state.opened||e)&&f.state.loaded){for(m=o.createElement("UL"),m.setAttribute("role","group"),m.className="jstree-children",k=0,l=f.children.length;l>k;k++)m.appendChild(this.redraw_node(f.children[k],c,!0));b.appendChild(m)}if(j&&b.appendChild(j),!d){for(g||(g=this.element[0]),k=0,l=g.childNodes.length;l>k;k++)if(g.childNodes[k]&&g.childNodes[k].className&&-1!==g.childNodes[k].className.indexOf("jstree-children")){s=g.childNodes[k];break}s||(s=o.createElement("UL"),s.setAttribute("role","group"),s.className="jstree-children",g.appendChild(s)),g=s,hf;f++)this.open_node(c[f],d,e);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(e=e===b?this.settings.core.animation:e,this.is_closed(c)?this.is_loaded(c)?(h=this.get_node(c,!0),i=this,h.length&&(e&&h.children(".jstree-children").length&&h.children(".jstree-children").stop(!0,!0),c.children.length&&!this._firstChild(h.children(".jstree-children")[0])&&this.draw_children(c),e?(this.trigger("before_open",{node:c}),h.children(".jstree-children").css("display","none").end().removeClass("jstree-closed").addClass("jstree-open").attr("aria-expanded",!0).children(".jstree-anchor").attr("aria-expanded",!0).end().children(".jstree-children").stop(!0,!0).slideDown(e,function(){this.style.display="",i.element&&i.trigger("after_open",{node:c})})):(this.trigger("before_open",{node:c}),h[0].className=h[0].className.replace("jstree-closed","jstree-open"),h[0].setAttribute("aria-expanded",!0),h[0].childNodes[1].setAttribute("aria-expanded",!0))),c.state.opened=!0,d&&d.call(this,c,!0),h.length||this.trigger("before_open",{node:c}),this.trigger("open_node",{node:c}),e&&h.length||this.trigger("after_open",{node:c}),!0):this.is_loading(c)?setTimeout(a.proxy(function(){this.open_node(c,d,e)},this),500):void this.load_node(c,function(a,b){return b?this.open_node(a,d,e):d?d.call(this,a,!1):!1}):(d&&d.call(this,c,!1),!1)):!1},_open_to:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c,d,e=b.parents;for(c=0,d=e.length;d>c;c+=1)c!==a.jstree.root&&this.open_node(e[c],!1,0);return a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)},close_node:function(c,d){var e,f,g,h;if(a.isArray(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.close_node(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?this.is_closed(c)?!1:(d=d===b?this.settings.core.animation:d,g=this,h=this.get_node(c,!0),c.state.opened=!1,this.trigger("close_node",{node:c}),void(h.length?d?h.children(".jstree-children").attr("style","display:block !important").end().removeClass("jstree-open").addClass("jstree-closed").attr("aria-expanded",!1).children(".jstree-anchor").attr("aria-expanded",!1).end().children(".jstree-children").stop(!0,!0).slideUp(d,function(){this.style.display="",h.children(".jstree-children").remove(),g.element&&g.trigger("after_close",{node:c})}):(h[0].className=h[0].className.replace("jstree-open","jstree-closed"),h.children(".jstree-anchor").attr("aria-expanded",!1),h.attr("aria-expanded",!1).children(".jstree-children").remove(),this.trigger("after_close",{node:c})):this.trigger("after_close",{node:c}))):!1},toggle_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.toggle_node(b[c]);return!0}return this.is_closed(b)?this.open_node(b):this.is_open(b)?this.close_node(b):void 0},open_all:function(b,c,d){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var e=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),f,g,h;if(!e.length){for(f=0,g=b.children_d.length;g>f;f++)this.is_closed(this._model.data[b.children_d[f]])&&(this._model.data[b.children_d[f]].state.opened=!0);return this.trigger("open_all",{node:b})}d=d||e,h=this,e=this.is_closed(b)?e.find(".jstree-closed").addBack():e.find(".jstree-closed"),e.each(function(){h.open_node(this,function(a,b){b&&this.is_parent(a)&&this.open_all(a,c,d)},c||0)}),0===d.find(".jstree-closed").length&&this.trigger("open_all",{node:this.get_node(d)})},close_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),e=this,f,g;for(d.length&&(d=this.is_open(b)?d.find(".jstree-open").addBack():d.find(".jstree-open"),a(d.get().reverse()).each(function(){e.close_node(this,c||0)})),f=0,g=b.children_d.length;g>f;f++)this._model.data[b.children_d[f]].state.opened=!1;this.trigger("close_all",{node:b})},is_disabled:function(a){return a=this.get_node(a),a&&a.state&&a.state.disabled},enable_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!1,this.get_node(b,!0).children(".jstree-anchor").removeClass("jstree-disabled").attr("aria-disabled",!1),void this.trigger("enable_node",{node:b})):!1},disable_node:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!0,this.get_node(b,!0).children(".jstree-anchor").addClass("jstree-disabled").attr("aria-disabled",!0),void this.trigger("disable_node",{node:b})):!1},is_hidden:function(a){return a=this.get_node(a),a.state.hidden===!0},hide_node:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.hide_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden||(b.state.hidden=!0,this._node_changed(b.parent),c||this.redraw(),this.trigger("hide_node",{node:b}))):!1},show_node:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.show_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden&&(b.state.hidden=!1,this._node_changed(b.parent),c||this.redraw(),this.trigger("show_node",{node:b}))):!1},hide_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&!d[c].state.hidden&&(d[c].state.hidden=!0,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("hide_all",{nodes:e}),e},show_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&d[c].state.hidden&&(d[c].state.hidden=!1,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("show_all",{nodes:e}),e},activate_node:function(a,c){if(this.is_disabled(a))return!1;if(c&&"object"==typeof c||(c={}),this._data.core.last_clicked=this._data.core.last_clicked&&this._data.core.last_clicked.id!==b?this.get_node(this._data.core.last_clicked.id):null,this._data.core.last_clicked&&!this._data.core.last_clicked.state.selected&&(this._data.core.last_clicked=null),!this._data.core.last_clicked&&this._data.core.selected.length&&(this._data.core.last_clicked=this.get_node(this._data.core.selected[this._data.core.selected.length-1])),this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&(!c.shiftKey||this._data.core.last_clicked&&this.get_parent(a)&&this.get_parent(a)===this._data.core.last_clicked.parent))if(c.shiftKey){var d=this.get_node(a).id,e=this._data.core.last_clicked.id,f=this.get_node(this._data.core.last_clicked.parent).children,g=!1,h,i;for(h=0,i=f.length;i>h;h+=1)f[h]===d&&(g=!g),f[h]===e&&(g=!g),this.is_disabled(f[h])||!g&&f[h]!==d&&f[h]!==e?this.deselect_node(f[h],!0,c):this.is_hidden(f[h])||this.select_node(f[h],!0,!1,c);this.trigger("changed",{action:"select_node",node:this.get_node(a),selected:this._data.core.selected,event:c})}else this.is_selected(a)?this.deselect_node(a,!1,c):this.select_node(a,!1,!1,c);else!this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&this.is_selected(a)?this.deselect_node(a,!1,c):(this.deselect_all(!0),this.select_node(a,!1,!1,c),this._data.core.last_clicked=this.get_node(a));this.trigger("activate_node",{node:this.get_node(a),event:c})},hover_node:function(a){if(a=this.get_node(a,!0),!a||!a.length||a.children(".jstree-hovered").length)return!1;var b=this.element.find(".jstree-hovered"),c=this.element;b&&b.length&&this.dehover_node(b),a.children(".jstree-anchor").addClass("jstree-hovered"),this.trigger("hover_node",{node:this.get_node(a)}),setTimeout(function(){c.attr("aria-activedescendant",a[0].id)},0)},dehover_node:function(a){return a=this.get_node(a,!0),a&&a.length&&a.children(".jstree-hovered").length?(a.children(".jstree-anchor").removeClass("jstree-hovered"),void this.trigger("dehover_node",{node:this.get_node(a)})):!1},select_node:function(b,c,d,e){var f,g,h,i;if(a.isArray(b)){for(b=b.slice(),g=0,h=b.length;h>g;g++)this.select_node(b[g],c,d,e);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.selected||(b.state.selected=!0,this._data.core.selected.push(b.id),d||(f=this._open_to(b)),f&&f.length&&f.attr("aria-selected",!0).children(".jstree-anchor").addClass("jstree-clicked").attr("aria-selected",!0),this.trigger("select_node",{node:b,selected:this._data.core.selected,event:e}),c||this.trigger("changed",{action:"select_node",node:b,selected:this._data.core.selected,event:e})))):!1},deselect_node:function(b,c,d){var e,f,g;if(a.isArray(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.deselect_node(b[e],c,d);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(g=this.get_node(b,!0),void(b.state.selected&&(b.state.selected=!1,this._data.core.selected=a.vakata.array_remove_item(this._data.core.selected,b.id),g.length&&g.attr("aria-selected",!1).children(".jstree-anchor").removeClass("jstree-clicked").attr("aria-selected",!1),this.trigger("deselect_node",{node:b,selected:this._data.core.selected,event:d}),c||this.trigger("changed",{action:"deselect_node",node:b,selected:this._data.core.selected,event:d})))):!1},select_all:function(b){var c=this._data.core.selected.concat([]),d,e;for(this._data.core.selected=this._model.data[a.jstree.root].children_d.concat(),d=0,e=this._data.core.selected.length;e>d;d++)this._model.data[this._data.core.selected[d]]&&(this._model.data[this._data.core.selected[d]].state.selected=!0);this.redraw(!0),this.trigger("select_all",{selected:this._data.core.selected}),b||this.trigger("changed",{action:"select_all",selected:this._data.core.selected,old_selection:c})},deselect_all:function(a){var b=this._data.core.selected.concat([]),c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)this._model.data[this._data.core.selected[c]]&&(this._model.data[this._data.core.selected[c]].state.selected=!1);this._data.core.selected=[],this.element.find(".jstree-clicked").removeClass("jstree-clicked").attr("aria-selected",!1).parent().attr("aria-selected",!1),this.trigger("deselect_all",{selected:this._data.core.selected,node:b}),a||this.trigger("changed",{action:"deselect_all",selected:this._data.core.selected,old_selection:b})},is_selected:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.selected:!1},get_selected:function(b){return b?a.map(this._data.core.selected,a.proxy(function(a){return this.get_node(a)},this)):this._data.core.selected.slice()},get_top_selected:function(b){var c=this.get_selected(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,a.proxy(function(a){return this.get_node(a)},this)):c},get_bottom_selected:function(b){var c=this.get_selected(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,a.proxy(function(a){return this.get_node(a)},this)):d},get_state:function(){var b={core:{open:[],loaded:[],scroll:{left:this.element.scrollLeft(),top:this.element.scrollTop()},selected:[]}},c;for(c in this._model.data)this._model.data.hasOwnProperty(c)&&c!==a.jstree.root&&(this._model.data[c].state.loaded&&this.settings.core.loaded_state&&b.core.loaded.push(c),this._model.data[c].state.opened&&b.core.open.push(c),this._model.data[c].state.selected&&b.core.selected.push(c));return b},set_state:function(c,d){if(c){if(c.core&&c.core.selected&&c.core.initial_selection===b&&(c.core.initial_selection=this._data.core.selected.concat([]).sort().join(",")),c.core){var e,f,g,h,i;if(c.core.loaded)return this.settings.core.loaded_state&&a.isArray(c.core.loaded)&&c.core.loaded.length?this._load_nodes(c.core.loaded,function(a){delete c.core.loaded,this.set_state(c,d)}):(delete c.core.loaded,this.set_state(c,d)),!1;if(c.core.open)return a.isArray(c.core.open)&&c.core.open.length?this._load_nodes(c.core.open,function(a){this.open_node(a,!1,0),delete c.core.open,this.set_state(c,d)}):(delete c.core.open,this.set_state(c,d)),!1;if(c.core.scroll)return c.core.scroll&&c.core.scroll.left!==b&&this.element.scrollLeft(c.core.scroll.left),c.core.scroll&&c.core.scroll.top!==b&&this.element.scrollTop(c.core.scroll.top),delete c.core.scroll,this.set_state(c,d),!1;if(c.core.selected)return h=this,(c.core.initial_selection===b||c.core.initial_selection===this._data.core.selected.concat([]).sort().join(","))&&(this.deselect_all(),a.each(c.core.selected,function(a,b){h.select_node(b,!1,!0)})),delete c.core.initial_selection,delete c.core.selected,this.set_state(c,d),!1;for(i in c)c.hasOwnProperty(i)&&"core"!==i&&-1===a.inArray(i,this.settings.plugins)&&delete c[i];if(a.isEmptyObject(c.core))return delete c.core,this.set_state(c,d),!1}return a.isEmptyObject(c)?(c=null,d&&d.call(this),this.trigger("set_state"),!1):!0}return!1},refresh:function(b,c){this._data.core.state=c===!0?{}:this.get_state(),c&&a.isFunction(c)&&(this._data.core.state=c.call(this,this._data.core.state)),this._cnt=0,this._model.data={},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this._data.core.selected=[],this._data.core.last_clicked=null,this._data.core.focused=null;var d=this.get_container_ul()[0].className;b||(this.element.html(""),this.element.attr("aria-activedescendant","j"+this._id+"_loading")),this.load_node(a.jstree.root,function(b,c){c&&(this.get_container_ul()[0].className=d,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.set_state(a.extend(!0,{},this._data.core.state),function(){this.trigger("refresh")})),this._data.core.state=null})},refresh_node:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c=[],d=[],e=this._data.core.selected.concat([]);d.push(b.id),b.state.opened===!0&&c.push(b.id),this.get_node(b,!0).find(".jstree-open").each(function(){d.push(this.id),c.push(this.id)}),this._load_nodes(d,a.proxy(function(a){this.open_node(c,!1,0),this.select_node(e),this.trigger("refresh_node",{node:b,nodes:a})},this),!1,!0)},set_id:function(b,c){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var d,e,f=this._model.data,g=b.id;for(c=c.toString(),f[b.parent].children[a.inArray(b.id,f[b.parent].children)]=c,d=0,e=b.parents.length;e>d;d++)f[b.parents[d]].children_d[a.inArray(b.id,f[b.parents[d]].children_d)]=c;for(d=0,e=b.children.length;e>d;d++)f[b.children[d]].parent=c;for(d=0,e=b.children_d.length;e>d;d++)f[b.children_d[d]].parents[a.inArray(b.id,f[b.children_d[d]].parents)]=c;return d=a.inArray(b.id,this._data.core.selected),-1!==d&&(this._data.core.selected[d]=c),d=this.get_node(b.id,!0),d&&(d.attr("id",c),this.element.attr("aria-activedescendant")===b.id&&this.element.attr("aria-activedescendant",c)),delete f[b.id],b.id=c,b.li_attr.id=c,f[c]=b,this.trigger("set_id",{node:b,"new":b.id,old:g}),!0},get_text:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.text:!1},set_text:function(b,c){var d,e;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.set_text(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.text=c,this.get_node(b,!0).length&&this.redraw_node(b.id),this.trigger("set_text",{obj:b,text:c}),!0):!1},get_json:function(b,c,d){if(b=this.get_node(b||a.jstree.root),!b)return!1;c&&c.flat&&!d&&(d=[]);var e={id:b.id,text:b.text,icon:this.get_icon(b),li_attr:a.extend(!0,{},b.li_attr),a_attr:a.extend(!0,{},b.a_attr),state:{},data:c&&c.no_data?!1:a.extend(!0,a.isArray(b.data)?[]:{},b.data)},f,g;if(c&&c.flat?e.parent=b.parent:e.children=[],c&&c.no_state)delete e.state;else for(f in b.state)b.state.hasOwnProperty(f)&&(e.state[f]=b.state[f]);if(c&&c.no_li_attr&&delete e.li_attr,c&&c.no_a_attr&&delete e.a_attr,c&&c.no_id&&(delete e.id,e.li_attr&&e.li_attr.id&&delete e.li_attr.id,e.a_attr&&e.a_attr.id&&delete e.a_attr.id),c&&c.flat&&b.id!==a.jstree.root&&d.push(e),!c||!c.no_children)for(f=0,g=b.children.length;g>f;f++)c&&c.flat?this.get_json(b.children[f],c,d):e.children.push(this.get_json(b.children[f],c));return c&&c.flat?d:b.id===a.jstree.root?e.children:e},create_node:function(c,d,e,f,g){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return!1;if(e=e===b?"last":e,!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(c))return this.load_node(c,function(){this.create_node(c,d,e,f,!0)});d||(d={text:this.get_string("New node")}),d="string"==typeof d?{text:d}:a.extend(!0,{},d),d.text===b&&(d.text=this.get_string("New node"));var h,i,j,k;switch(c.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":h=this.get_node(c.parent),e=a.inArray(c.id,h.children),c=h;break;case"after":h=this.get_node(c.parent),e=a.inArray(c.id,h.children)+1,c=h;break;case"inside":case"first":e=0;break;case"last":e=c.children.length;break;default:e||(e=0)}if(e>c.children.length&&(e=c.children.length),d.id||(d.id=!0),!this.check("create_node",d,c,e))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(d.id===!0&&delete d.id,d=this._parse_model_from_json(d,c.id,c.parents.concat()),!d)return!1;for(h=this.get_node(d),i=[],i.push(d),i=i.concat(h.children_d),this.trigger("model",{nodes:i,parent:c.id}),c.children_d=c.children_d.concat(i),j=0,k=c.parents.length;k>j;j++)this._model.data[c.parents[j]].children_d=this._model.data[c.parents[j]].children_d.concat(i);for(d=h,h=[],j=0,k=c.children.length;k>j;j++)h[j>=e?j+1:j]=c.children[j];return h[e]=d.id,c.children=h,this.redraw_node(c,!0),this.trigger("create_node",{node:this.get_node(d),parent:c.id,position:e}),f&&f.call(this,this.get_node(d)),d.id},rename_node:function(b,c){var d,e,f;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.rename_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=b.text,this.check("rename_node",b,this.get_parent(b),c)?(this.set_text(b,c),this.trigger("rename_node",{node:b,text:c,old:f}),!0):(this.settings.core.error.call(this,this._data.core.last_error),!1)):!1},delete_node:function(b){var c,d,e,f,g,h,i,j,k,l,m,n;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.delete_node(b[c]);return!0}if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;if(e=this.get_node(b.parent),f=a.inArray(b.id,e.children),l=!1,!this.check("delete_node",b,e,f))return this.settings.core.error.call(this,this._data.core.last_error),!1;for(-1!==f&&(e.children=a.vakata.array_remove(e.children,f)),g=b.children_d.concat([]),g.push(b.id),h=0,i=b.parents.length;i>h;h++)this._model.data[b.parents[h]].children_d=a.vakata.array_filter(this._model.data[b.parents[h]].children_d,function(b){return-1===a.inArray(b,g)});for(j=0,k=g.length;k>j;j++)if(this._model.data[g[j]].state.selected){l=!0;break}for(l&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(b){return-1===a.inArray(b,g)})),this.trigger("delete_node",{node:b,parent:e.id}),l&&this.trigger("changed",{action:"delete_node",node:b,selected:this._data.core.selected,parent:e.id}),j=0,k=g.length;k>j;j++)delete this._model.data[g[j]];return-1!==a.inArray(this._data.core.focused,g)&&(this._data.core.focused=null,m=this.element[0].scrollTop,n=this.element[0].scrollLeft,e.id===a.jstree.root?this._model.data[a.jstree.root].children[0]&&this.get_node(this._model.data[a.jstree.root].children[0],!0).children(".jstree-anchor").focus():this.get_node(e,!0).children(".jstree-anchor").focus(),this.element[0].scrollTop=m,this.element[0].scrollLeft=n),this.redraw_node(e,!0),!0},check:function(b,c,d,e,f){c=c&&c.id?c:this.get_node(c),d=d&&d.id?d:this.get_node(d);var g=b.match(/^move_node|copy_node|create_node$/i)?d:c,h=this.settings.core.check_callback;if("move_node"===b||"copy_node"===b){if(!(f&&f.is_multi||"move_node"!==b||a.inArray(c.id,d.children)!==e))return this._data.core.last_error={error:"check",plugin:"core",id:"core_08",reason:"Moving node to its current position",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1;if(!(f&&f.is_multi||c.id!==d.id&&("move_node"!==b||a.inArray(c.id,d.children)!==e)&&-1===a.inArray(d.id,c.children_d)))return this._data.core.last_error={error:"check",plugin:"core",id:"core_01",reason:"Moving parent inside child",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1}return g&&g.data&&(g=g.data),g&&g.functions&&(g.functions[b]===!1||g.functions[b]===!0)?(g.functions[b]===!1&&(this._data.core.last_error={error:"check",plugin:"core",id:"core_02",reason:"Node data prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})}),g.functions[b]):h===!1||a.isFunction(h)&&h.call(this,b,c,d,e,f)===!1||h&&h[b]===!1?(this._data.core.last_error={error:"check",plugin:"core",id:"core_03",reason:"User config for core.check_callback prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1):!0},last_error:function(){return this._data.core.last_error},move_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t,u,v,w;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.move_node(c,d,e,f,!0,!1,i)});if(a.isArray(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(r=this.move_node(c[j],d,e,f,g,!1,i))&&(d=r,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;if(l=(c.parent||a.jstree.root).toString(),n=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,o=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),p=!o||!o._id||this._id!==o._id,m=o&&o._id&&l&&o._model.data[l]&&o._model.data[l].children?a.inArray(c.id,o._model.data[l].children):-1,o&&o._id&&(c=o._model.data[c.id]),p)return(r=this.copy_node(c,d,e,f,g,!1,i))?(o&&o.delete_node(c),r):!1;switch(d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,n.children);break;case"after":e=a.inArray(d.id,n.children)+1;break;case"inside":case"first":e=0;break;case"last":e=n.children.length;break;default:e||(e=0)}if(e>n.children.length&&(e=n.children.length),!this.check("move_node",c,n,e,{core:!0,origin:i,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(c.parent===n.id){for(q=n.children.concat(),r=a.inArray(c.id,q),-1!==r&&(q=a.vakata.array_remove(q,r),e>r&&e--),r=[],s=0,t=q.length;t>s;s++)r[s>=e?s+1:s]=q[s];r[e]=c.id,n.children=r,this._node_changed(n.id),this.redraw(n.id===a.jstree.root)}else{for(r=c.children_d.concat(),r.push(c.id),s=0,t=c.parents.length;t>s;s++){for(q=[],w=o._model.data[c.parents[s]].children_d,u=0,v=w.length;v>u;u++)-1===a.inArray(w[u],r)&&q.push(w[u]);o._model.data[c.parents[s]].children_d=q}for(o._model.data[l].children=a.vakata.array_remove_item(o._model.data[l].children,c.id),s=0,t=n.parents.length;t>s;s++)this._model.data[n.parents[s]].children_d=this._model.data[n.parents[s]].children_d.concat(r);for(q=[],s=0,t=n.children.length;t>s;s++)q[s>=e?s+1:s]=n.children[s];for(q[e]=c.id,n.children=q,n.children_d.push(c.id),n.children_d=n.children_d.concat(c.children_d),c.parent=n.id,r=n.parents.concat(),r.unshift(n.id),w=c.parents.length,c.parents=r,r=r.concat(),s=0,t=c.children_d.length;t>s;s++)this._model.data[c.children_d[s]].parents=this._model.data[c.children_d[s]].parents.slice(0,-1*w),Array.prototype.push.apply(this._model.data[c.children_d[s]].parents,r);(l===a.jstree.root||n.id===a.jstree.root)&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||(this._node_changed(l),this._node_changed(n.id)),h||this.redraw()}return f&&f.call(this,c,n,e),this.trigger("move_node",{node:c,parent:n.id,position:e,old_parent:l,old_position:m,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id,old_instance:o,new_instance:this}),c.id},copy_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.copy_node(c,d,e,f,!0,!1,i)});if(a.isArray(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(m=this.copy_node(c[j],d,e,f,g,!0,i))&&(d=m,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;switch(q=(c.parent||a.jstree.root).toString(),r=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,s=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),t=!s||!s._id||this._id!==s._id,s&&s._id&&(c=s._model.data[c.id]),d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,r.children);break;case"after":e=a.inArray(d.id,r.children)+1;break;case"inside":case"first":e=0;break;case"last":e=r.children.length;break;default:e||(e=0)}if(e>r.children.length&&(e=r.children.length),!this.check("copy_node",c,r,e,{core:!0,origin:i,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(p=s?s.get_json(c,{no_id:!0,no_data:!0,no_state:!0}):c,!p)return!1;if(p.id===!0&&delete p.id,p=this._parse_model_from_json(p,r.id,r.parents.concat()), +!p)return!1;for(m=this.get_node(p),c&&c.state&&c.state.loaded===!1&&(m.state.loaded=!1),l=[],l.push(p),l=l.concat(m.children_d),this.trigger("model",{nodes:l,parent:r.id}),n=0,o=r.parents.length;o>n;n++)this._model.data[r.parents[n]].children_d=this._model.data[r.parents[n]].children_d.concat(l);for(l=[],n=0,o=r.children.length;o>n;n++)l[n>=e?n+1:n]=r.children[n];return l[e]=m.id,r.children=l,r.children_d.push(m.id),r.children_d=r.children_d.concat(m.children_d),r.id===a.jstree.root&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||this._node_changed(r.id),h||this.redraw(r.id===a.jstree.root),f&&f.call(this,m,r,e),this.trigger("copy_node",{node:m,original:c,parent:r.id,position:e,old_parent:q,old_position:s&&s._id&&q&&s._model.data[q]&&s._model.data[q].children?a.inArray(c.id,s._model.data[q].children):-1,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id,old_instance:s,new_instance:this}),m.id},cut:function(b){if(b||(b=this._data.core.selected.concat()),a.isArray(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="move_node",void this.trigger("cut",{node:b})):!1},copy:function(b){if(b||(b=this._data.core.selected.concat()),a.isArray(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="copy_node",void this.trigger("copy",{node:b})):!1},get_buffer:function(){return{mode:e,node:d,inst:f}},can_paste:function(){return e!==!1&&d!==!1},paste:function(a,b){return a=this.get_node(a),a&&e&&e.match(/^(copy_node|move_node)$/)&&d?(this[e](d,a,b,!1,!1,!1,f)&&this.trigger("paste",{parent:a.id,node:d,mode:e}),d=!1,e=!1,void(f=!1)):!1},clear_buffer:function(){d=!1,e=!1,f=!1,this.trigger("clear_buffer")},edit:function(b,c,d){var e,f,g,h,j,k,l,m,n,o=!1;return(b=this.get_node(b))?this.check("edit",b,this.get_parent(b))?(n=b,c="string"==typeof c?c:b.text,this.set_text(b,""),b=this._open_to(b),n.text=c,e=this._data.core.rtl,f=this.element.width(),this._data.core.focused=n.id,g=b.children(".jstree-anchor").focus(),h=a(""),j=c,k=a("
    ",{css:{position:"absolute",top:"-200px",left:e?"0px":"-1000px",visibility:"hidden"}}).appendTo(i.body),l=a("",{value:j,"class":"jstree-rename-input",css:{padding:"0",border:"1px solid silver","box-sizing":"border-box",display:"inline-block",height:this._data.core.li_height+"px",lineHeight:this._data.core.li_height+"px",width:"150px"},blur:a.proxy(function(c){c.stopImmediatePropagation(),c.preventDefault();var e=h.children(".jstree-rename-input"),f=e.val(),i=this.settings.core.force_text,m;""===f&&(f=j),k.remove(),h.replaceWith(g),h.remove(),j=i?j:a("
    ").append(a.parseHTML(j)).html(),b=this.get_node(b),this.set_text(b,j),m=!!this.rename_node(b,i?a("
    ").text(f).text():a("
    ").append(a.parseHTML(f)).html()),m||this.set_text(b,j),this._data.core.focused=n.id,setTimeout(a.proxy(function(){var a=this.get_node(n.id,!0);a.length&&(this._data.core.focused=n.id,a.children(".jstree-anchor").focus())},this),0),d&&d.call(this,n,m,o),l=null},this),keydown:function(a){var b=a.which;27===b&&(o=!0,this.value=j),(27===b||13===b||37===b||38===b||39===b||40===b||32===b)&&a.stopImmediatePropagation(),(27===b||13===b)&&(a.preventDefault(),this.blur())},click:function(a){a.stopImmediatePropagation()},mousedown:function(a){a.stopImmediatePropagation()},keyup:function(a){l.width(Math.min(k.text("pW"+this.value).width(),f))},keypress:function(a){return 13===a.which?!1:void 0}}),m={fontFamily:g.css("fontFamily")||"",fontSize:g.css("fontSize")||"",fontWeight:g.css("fontWeight")||"",fontStyle:g.css("fontStyle")||"",fontStretch:g.css("fontStretch")||"",fontVariant:g.css("fontVariant")||"",letterSpacing:g.css("letterSpacing")||"",wordSpacing:g.css("wordSpacing")||""},h.attr("class",g.attr("class")).append(g.contents().clone()).append(l),g.replaceWith(h),k.css(m),l.css(m).width(Math.min(k.text("pW"+l[0].value).width(),f))[0].select(),void a(i).one("mousedown.jstree touchstart.jstree dnd_start.vakata",function(b){l&&b.target!==l&&a(l).blur()})):(this.settings.core.error.call(this,this._data.core.last_error),!1):!1},set_theme:function(b,c){if(!b)return!1;if(c===!0){var d=this.settings.core.themes.dir;d||(d=a.jstree.path+"/themes"),c=d+"/"+b+"/style.css"}c&&-1===a.inArray(c,g)&&(a("head").append(''),g.push(c)),this._data.core.themes.name&&this.element.removeClass("jstree-"+this._data.core.themes.name),this._data.core.themes.name=b,this.element.addClass("jstree-"+b),this.element[this.settings.core.themes.responsive?"addClass":"removeClass"]("jstree-"+b+"-responsive"),this.trigger("set_theme",{theme:b})},get_theme:function(){return this._data.core.themes.name},set_theme_variant:function(a){this._data.core.themes.variant&&this.element.removeClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant),this._data.core.themes.variant=a,a&&this.element.addClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant)},get_theme_variant:function(){return this._data.core.themes.variant},show_stripes:function(){this._data.core.themes.stripes=!0,this.get_container_ul().addClass("jstree-striped"),this.trigger("show_stripes")},hide_stripes:function(){this._data.core.themes.stripes=!1,this.get_container_ul().removeClass("jstree-striped"),this.trigger("hide_stripes")},toggle_stripes:function(){this._data.core.themes.stripes?this.hide_stripes():this.show_stripes()},show_dots:function(){this._data.core.themes.dots=!0,this.get_container_ul().removeClass("jstree-no-dots"),this.trigger("show_dots")},hide_dots:function(){this._data.core.themes.dots=!1,this.get_container_ul().addClass("jstree-no-dots"),this.trigger("hide_dots")},toggle_dots:function(){this._data.core.themes.dots?this.hide_dots():this.show_dots()},show_icons:function(){this._data.core.themes.icons=!0,this.get_container_ul().removeClass("jstree-no-icons"),this.trigger("show_icons")},hide_icons:function(){this._data.core.themes.icons=!1,this.get_container_ul().addClass("jstree-no-icons"),this.trigger("hide_icons")},toggle_icons:function(){this._data.core.themes.icons?this.hide_icons():this.show_icons()},show_ellipsis:function(){this._data.core.themes.ellipsis=!0,this.get_container_ul().addClass("jstree-ellipsis"),this.trigger("show_ellipsis")},hide_ellipsis:function(){this._data.core.themes.ellipsis=!1,this.get_container_ul().removeClass("jstree-ellipsis"),this.trigger("hide_ellipsis")},toggle_ellipsis:function(){this._data.core.themes.ellipsis?this.hide_ellipsis():this.show_ellipsis()},set_icon:function(c,d){var e,f,g,h;if(a.isArray(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.set_icon(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(h=c.icon,c.icon=d===!0||null===d||d===b||""===d?!0:d,g=this.get_node(c,!0).children(".jstree-anchor").children(".jstree-themeicon"),d===!1?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),this.hide_icon(c)):d===!0||null===d||d===b||""===d?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),h===!1&&this.show_icon(c)):-1===d.indexOf("/")&&-1===d.indexOf(".")?(g.removeClass(h).css("background",""),g.addClass(d+" jstree-themeicon-custom").attr("rel",d),h===!1&&this.show_icon(c)):(g.removeClass(h).css("background",""),g.addClass("jstree-themeicon-custom").css("background","url('"+d+"') center center no-repeat").attr("rel",d),h===!1&&this.show_icon(c)),!0):!1},get_icon:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.icon:!1},hide_icon:function(b){var c,d;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.hide_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(b.icon=!1,this.get_node(b,!0).children(".jstree-anchor").children(".jstree-themeicon").addClass("jstree-themeicon-hidden"),!0):!1},show_icon:function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.show_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(e=this.get_node(b,!0),b.icon=e.length?e.children(".jstree-anchor").children(".jstree-themeicon").attr("rel"):!0,b.icon||(b.icon=!0),e.children(".jstree-anchor").children(".jstree-themeicon").removeClass("jstree-themeicon-hidden"),!0):!1}},a.vakata={},a.vakata.attributes=function(b,c){b=a(b)[0];var d=c?{}:[];return b&&b.attributes&&a.each(b.attributes,function(b,e){-1===a.inArray(e.name.toLowerCase(),["style","contenteditable","hasfocus","tabindex"])&&null!==e.value&&""!==a.trim(e.value)&&(c?d[e.name]=e.value:d.push(e.name))}),d},a.vakata.array_unique=function(a){var c=[],d,e,f,g={};for(d=0,f=a.length;f>d;d++)g[a[d]]===b&&(c.push(a[d]),g[a[d]]=!0);return c},a.vakata.array_remove=function(a,b){return a.splice(b,1),a},a.vakata.array_remove_item=function(b,c){var d=a.inArray(c,b);return-1!==d?a.vakata.array_remove(b,d):b},a.vakata.array_filter=function(a,b,c,d,e){if(a.filter)return a.filter(b,c);d=[];for(e in a)~~e+""==e+""&&e>=0&&b.call(c,a[e],+e,a)&&d.push(a[e]);return d},a.jstree.plugins.changed=function(a,b){var c=[];this.trigger=function(a,d){var e,f;if(d||(d={}),"changed"===a.replace(".jstree","")){d.changed={selected:[],deselected:[]};var g={};for(e=0,f=c.length;f>e;e++)g[c[e]]=1;for(e=0,f=d.selected.length;f>e;e++)g[d.selected[e]]?g[d.selected[e]]=2:d.changed.selected.push(d.selected[e]);for(e=0,f=c.length;f>e;e++)1===g[c[e]]&&d.changed.deselected.push(c[e]);c=d.selected.slice()}b.trigger.call(this,a,d)},this.refresh=function(a,d){return c=[],b.refresh.apply(this,arguments)}};var l=i.createElement("I");l.className="jstree-icon jstree-checkbox",l.setAttribute("role","presentation"),a.jstree.defaults.checkbox={visible:!0,three_state:!0,whole_node:!0,keep_selected_style:!0,cascade:"",tie_selection:!0,cascade_to_disabled:!0,cascade_to_hidden:!0},a.jstree.plugins.checkbox=function(c,d){this.bind=function(){d.bind.call(this),this._data.checkbox.uto=!1,this._data.checkbox.selected=[],this.settings.checkbox.three_state&&(this.settings.checkbox.cascade="up+down+undetermined"),this.element.on("init.jstree",a.proxy(function(){this._data.checkbox.visible=this.settings.checkbox.visible,this.settings.checkbox.keep_selected_style||this.element.addClass("jstree-checkbox-no-clicked"),this.settings.checkbox.tie_selection&&this.element.addClass("jstree-checkbox-selection")},this)).on("loading.jstree",a.proxy(function(){this[this._data.checkbox.visible?"show_checkboxes":"hide_checkboxes"]()},this)),-1!==this.settings.checkbox.cascade.indexOf("undetermined")&&this.element.on("changed.jstree uncheck_node.jstree check_node.jstree uncheck_all.jstree check_all.jstree move_node.jstree copy_node.jstree redraw.jstree open_node.jstree",a.proxy(function(){this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(a.proxy(this._undetermined,this),50)},this)),this.settings.checkbox.tie_selection||this.element.on("model.jstree",a.proxy(function(a,b){var c=this._model.data,d=c[b.parent],e=b.nodes,f,g;for(f=0,g=e.length;g>f;f++)c[e[f]].state.checked=c[e[f]].state.checked||c[e[f]].original&&c[e[f]].original.state&&c[e[f]].original.state.checked,c[e[f]].state.checked&&this._data.checkbox.selected.push(e[f])},this)),(-1!==this.settings.checkbox.cascade.indexOf("up")||-1!==this.settings.checkbox.cascade.indexOf("down"))&&this.element.on("model.jstree",a.proxy(function(b,c){var d=this._model.data,e=d[c.parent],f=c.nodes,g=[],h,i,j,k,l,m,n=this.settings.checkbox.cascade,o=this.settings.checkbox.tie_selection;if(-1!==n.indexOf("down"))if(e.state[o?"selected":"checked"]){for(i=0,j=f.length;j>i;i++)d[f[i]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(f)}else for(i=0,j=f.length;j>i;i++)if(d[f[i]].state[o?"selected":"checked"]){for(k=0,l=d[f[i]].children_d.length;l>k;k++)d[d[f[i]].children_d[k]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(d[f[i]].children_d)}if(-1!==n.indexOf("up")){for(i=0,j=e.children_d.length;j>i;i++)d[e.children_d[i]].children.length||g.push(d[e.children_d[i]].parent);for(g=a.vakata.array_unique(g),k=0,l=g.length;l>k;k++){e=d[g[k]];while(e&&e.id!==a.jstree.root){for(h=0,i=0,j=e.children.length;j>i;i++)h+=d[e.children[i]].state[o?"selected":"checked"];if(h!==j)break;e.state[o?"selected":"checked"]=!0,this._data[o?"core":"checkbox"].selected.push(e.id),m=this.get_node(e,!0),m&&m.length&&m.attr("aria-selected",!0).children(".jstree-anchor").addClass(o?"jstree-clicked":"jstree-checked"),e=this.get_node(e.parent)}}}this._data[o?"core":"checkbox"].selected=a.vakata.array_unique(this._data[o?"core":"checkbox"].selected)},this)).on(this.settings.checkbox.tie_selection?"select_node.jstree":"check_node.jstree",a.proxy(function(b,c){var d=this,e=c.node,f=this._model.data,g=this.get_node(e.parent),h,i,j,k,l=this.settings.checkbox.cascade,m=this.settings.checkbox.tie_selection,n={},o=this._data[m?"core":"checkbox"].selected;for(h=0,i=o.length;i>h;h++)n[o[h]]=!0;if(-1!==l.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!0),q=e.children_d.concat(e.id);for(h=0,i=q.length;i>h;h++)p.indexOf(q[h])>-1?n[q[h]]=!0:delete n[q[h]]}if(-1!==l.indexOf("up"))while(g&&g.id!==a.jstree.root){for(j=0,h=0,i=g.children.length;i>h;h++)j+=f[g.children[h]].state[m?"selected":"checked"];if(j!==i)break;g.state[m?"selected":"checked"]=!0,n[g.id]=!0,k=this.get_node(g,!0),k&&k.length&&k.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),g=this.get_node(g.parent)}o=[];for(h in n)n.hasOwnProperty(h)&&o.push(h);this._data[m?"core":"checkbox"].selected=o},this)).on(this.settings.checkbox.tie_selection?"deselect_all.jstree":"uncheck_all.jstree",a.proxy(function(b,c){var d=this.get_node(a.jstree.root),e=this._model.data,f,g,h;for(f=0,g=d.children_d.length;g>f;f++)h=e[d.children_d[f]],h&&h.original&&h.original.state&&h.original.state.undetermined&&(h.original.state.undetermined=!1)},this)).on(this.settings.checkbox.tie_selection?"deselect_node.jstree":"uncheck_node.jstree",a.proxy(function(b,c){var d=this,e=c.node,f=this.get_node(e,!0),g,h,i,j=this.settings.checkbox.cascade,k=this.settings.checkbox.tie_selection,l=this._data[k?"core":"checkbox"].selected,m={},n=[],o=e.children_d.concat(e.id);if(-1!==j.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!1);l=a.vakata.array_filter(l,function(a){return-1===o.indexOf(a)||p.indexOf(a)>-1})}if(-1!==j.indexOf("up")&&-1===l.indexOf(e.id)){for(g=0,h=e.parents.length;h>g;g++)i=this._model.data[e.parents[g]],i.state[k?"selected":"checked"]=!1,i&&i.original&&i.original.state&&i.original.state.undetermined&&(i.original.state.undetermined=!1),i=this.get_node(e.parents[g],!0),i&&i.length&&i.attr("aria-selected",!1).children(".jstree-anchor").removeClass(k?"jstree-clicked":"jstree-checked");l=a.vakata.array_filter(l,function(a){return-1===e.parents.indexOf(a)})}this._data[k?"core":"checkbox"].selected=l},this)),-1!==this.settings.checkbox.cascade.indexOf("up")&&this.element.on("delete_node.jstree",a.proxy(function(b,c){var d=this.get_node(c.parent),e=this._model.data,f,g,h,i,j=this.settings.checkbox.tie_selection;while(d&&d.id!==a.jstree.root&&!d.state[j?"selected":"checked"]){for(h=0,f=0,g=d.children.length;g>f;f++)h+=e[d.children[f]].state[j?"selected":"checked"];if(!(g>0&&h===g))break;d.state[j?"selected":"checked"]=!0,this._data[j?"core":"checkbox"].selected.push(d.id),i=this.get_node(d,!0),i&&i.length&&i.attr("aria-selected",!0).children(".jstree-anchor").addClass(j?"jstree-clicked":"jstree-checked"),d=this.get_node(d.parent)}},this)).on("move_node.jstree",a.proxy(function(b,c){var d=c.is_multi,e=c.old_parent,f=this.get_node(c.parent),g=this._model.data,h,i,j,k,l,m=this.settings.checkbox.tie_selection;if(!d){h=this.get_node(e);while(h&&h.id!==a.jstree.root&&!h.state[m?"selected":"checked"]){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(!(k>0&&i===k))break;h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),h=this.get_node(h.parent)}}h=f;while(h&&h.id!==a.jstree.root){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(i===k)h.state[m?"selected":"checked"]||(h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"));else{if(!h.state[m?"selected":"checked"])break;h.state[m?"selected":"checked"]=!1,this._data[m?"core":"checkbox"].selected=a.vakata.array_remove_item(this._data[m?"core":"checkbox"].selected,h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(m?"jstree-clicked":"jstree-checked")}h=this.get_node(h.parent)}},this))},this.get_undetermined=function(c){if(-1===this.settings.checkbox.cascade.indexOf("undetermined"))return[];var d,e,f,g,h={},i=this._model.data,j=this.settings.checkbox.tie_selection,k=this._data[j?"core":"checkbox"].selected,l=[],m=this,n=[];for(d=0,e=k.length;e>d;d++)if(i[k[d]]&&i[k[d]].parents)for(f=0,g=i[k[d]].parents.length;g>f;f++){if(h[i[k[d]].parents[f]]!==b)break;i[k[d]].parents[f]!==a.jstree.root&&(h[i[k[d]].parents[f]]=!0,l.push(i[k[d]].parents[f]))}for(this.element.find(".jstree-closed").not(":has(.jstree-children)").each(function(){var c=m.get_node(this),j;if(c)if(c.state.loaded){for(d=0,e=c.children_d.length;e>d;d++)if(j=i[c.children_d[d]],!j.state.loaded&&j.original&&j.original.state&&j.original.state.undetermined&&j.original.state.undetermined===!0)for(h[j.id]===b&&j.id!==a.jstree.root&&(h[j.id]=!0,l.push(j.id)),f=0,g=j.parents.length;g>f;f++)h[j.parents[f]]===b&&j.parents[f]!==a.jstree.root&&(h[j.parents[f]]=!0,l.push(j.parents[f]))}else if(c.original&&c.original.state&&c.original.state.undetermined&&c.original.state.undetermined===!0)for(h[c.id]===b&&c.id!==a.jstree.root&&(h[c.id]=!0,l.push(c.id)),f=0,g=c.parents.length;g>f;f++)h[c.parents[f]]===b&&c.parents[f]!==a.jstree.root&&(h[c.parents[f]]=!0,l.push(c.parents[f]))}),d=0,e=l.length;e>d;d++)i[l[d]].state[j?"selected":"checked"]||n.push(c?i[l[d]]:l[d]);return n},this._undetermined=function(){if(null!==this.element){var a=this.get_undetermined(!1),b,c,d;for(this.element.find(".jstree-undetermined").removeClass("jstree-undetermined"),b=0,c=a.length;c>b;b++)d=this.get_node(a[b],!0),d&&d.length&&d.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-undetermined")}},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments)){var g,h,i=null,j=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(!this.settings.checkbox.tie_selection&&this._model.data[b.id].state.checked&&(i.className+=" jstree-checked"),j=l.cloneNode(!1),this._model.data[b.id].state.checkbox_disabled&&(j.className+=" jstree-checkbox-disabled"),i.insertBefore(j,i.childNodes[0]))}return e||-1===this.settings.checkbox.cascade.indexOf("undetermined")||(this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(a.proxy(this._undetermined,this),50)),b},this.show_checkboxes=function(){this._data.core.themes.checkboxes=!0,this.get_container_ul().removeClass("jstree-no-checkboxes")},this.hide_checkboxes=function(){this._data.core.themes.checkboxes=!1,this.get_container_ul().addClass("jstree-no-checkboxes")},this.toggle_checkboxes=function(){this._data.core.themes.checkboxes?this.hide_checkboxes():this.show_checkboxes()},this.is_undetermined=function(b){b=this.get_node(b);var c=this.settings.checkbox.cascade,d,e,f=this.settings.checkbox.tie_selection,g=this._data[f?"core":"checkbox"].selected,h=this._model.data;if(!b||b.state[f?"selected":"checked"]===!0||-1===c.indexOf("undetermined")||-1===c.indexOf("down")&&-1===c.indexOf("up"))return!1;if(!b.state.loaded&&b.original.state.undetermined===!0)return!0;for(d=0,e=b.children_d.length;e>d;d++)if(-1!==a.inArray(b.children_d[d],g)||!h[b.children_d[d]].state.loaded&&h[b.children_d[d]].original.state.undetermined)return!0;return!1},this.disable_checkbox=function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled||(b.state.checkbox_disabled=!0,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-checkbox-disabled"),this.trigger("disable_checkbox",{node:b})))):!1},this.enable_checkbox=function(b){var c,d,e;if(a.isArray(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled&&(b.state.checkbox_disabled=!1,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").removeClass("jstree-checkbox-disabled"),this.trigger("enable_checkbox",{node:b})))):!1},this.activate_node=function(b,c){return a(c.target).hasClass("jstree-checkbox-disabled")?!1:(this.settings.checkbox.tie_selection&&(this.settings.checkbox.whole_node||a(c.target).hasClass("jstree-checkbox"))&&(c.ctrlKey=!0),this.settings.checkbox.tie_selection||!this.settings.checkbox.whole_node&&!a(c.target).hasClass("jstree-checkbox")?d.activate_node.call(this,b,c):this.is_disabled(b)?!1:(this.is_checked(b)?this.uncheck_node(b,c):this.check_node(b,c),void this.trigger("activate_node",{node:this.get_node(b)})))},this._cascade_new_checked_state=function(a,b){var c=this,d=this.settings.checkbox.tie_selection,e=this._model.data[a],f=[],g=[],h,i,j;if(!this.settings.checkbox.cascade_to_disabled&&e.state.disabled||!this.settings.checkbox.cascade_to_hidden&&e.state.hidden)j=this.get_checked_descendants(a),e.state[d?"selected":"checked"]&&j.push(e.id),f=f.concat(j);else{if(e.children)for(h=0,i=e.children.length;i>h;h++){var k=e.children[h];j=c._cascade_new_checked_state(k,b),f=f.concat(j),j.indexOf(k)>-1&&g.push(k)}var l=c.get_node(e,!0),m=g.length>0&&g.lengthe;e++)this.check_node(b[e],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(d=this.get_node(b,!0),void(b.state.checked||(b.state.checked=!0,this._data.checkbox.selected.push(b.id),d&&d.length&&d.children(".jstree-anchor").addClass("jstree-checked"),this.trigger("check_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.uncheck_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.deselect_node(b,!1,c);var d,e,f;if(a.isArray(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.uncheck_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.checked&&(b.state.checked=!1,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,b.id),f.length&&f.children(".jstree-anchor").removeClass("jstree-checked"),this.trigger("uncheck_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.check_all=function(){if(this.settings.checkbox.tie_selection)return this.select_all();var b=this._data.checkbox.selected.concat([]),c,d;for(this._data.checkbox.selected=this._model.data[a.jstree.root].children_d.concat(),c=0,d=this._data.checkbox.selected.length;d>c;c++)this._model.data[this._data.checkbox.selected[c]]&&(this._model.data[this._data.checkbox.selected[c]].state.checked=!0);this.redraw(!0),this.trigger("check_all",{selected:this._data.checkbox.selected})},this.uncheck_all=function(){if(this.settings.checkbox.tie_selection)return this.deselect_all();var a=this._data.checkbox.selected.concat([]),b,c;for(b=0,c=this._data.checkbox.selected.length;c>b;b++)this._model.data[this._data.checkbox.selected[b]]&&(this._model.data[this._data.checkbox.selected[b]].state.checked=!1);this._data.checkbox.selected=[],this.element.find(".jstree-checked").removeClass("jstree-checked"),this.trigger("uncheck_all",{selected:this._data.checkbox.selected,node:a})},this.is_checked=function(b){return this.settings.checkbox.tie_selection?this.is_selected(b):(b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.checked:!1)},this.get_checked=function(b){return this.settings.checkbox.tie_selection?this.get_selected(b):b?a.map(this._data.checkbox.selected,a.proxy(function(a){return this.get_node(a)},this)):this._data.checkbox.selected.slice()},this.get_top_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_top_selected(b);var c=this.get_checked(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,a.proxy(function(a){return this.get_node(a)},this)):c},this.get_bottom_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_bottom_selected(b);var c=this.get_checked(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,a.proxy(function(a){return this.get_node(a)},this)):d},this.load_node=function(b,c){var e,f,g,h,i,j;if(!a.isArray(b)&&!this.settings.checkbox.tie_selection&&(j=this.get_node(b),j&&j.state.loaded))for(e=0,f=j.children_d.length;f>e;e++)this._model.data[j.children_d[e]].state.checked&&(i=!0,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,j.children_d[e]));return d.load_node.apply(this,arguments)},this.get_state=function(){var a=d.get_state.apply(this,arguments);return this.settings.checkbox.tie_selection?a:(a.checkbox=this._data.checkbox.selected.slice(),a)},this.set_state=function(b,c){var e=d.set_state.apply(this,arguments);if(e&&b.checkbox){if(!this.settings.checkbox.tie_selection){this.uncheck_all();var f=this;a.each(b.checkbox,function(a,b){f.check_node(b)})}return delete b.checkbox,this.set_state(b,c),!1}return e},this.refresh=function(a,b){return this.settings.checkbox.tie_selection&&(this._data.checkbox.selected=[]),d.refresh.apply(this,arguments)}},a.jstree.defaults.conditionalselect=function(){return!0},a.jstree.plugins.conditionalselect=function(a,b){this.activate_node=function(a,c){return this.settings.conditionalselect.call(this,this.get_node(a),c)?b.activate_node.call(this,a,c):void 0}},a.jstree.defaults.contextmenu={select_node:!0,show_at_node:!0,items:function(b,c){return{create:{separator_before:!1,separator_after:!0,_disabled:!1,label:"Create",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.create_node(d,{},"last",function(a){try{c.edit(a)}catch(b){setTimeout(function(){c.edit(a)},0)}})}},rename:{separator_before:!1,separator_after:!1,_disabled:!1,label:"Rename",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.edit(d)}},remove:{separator_before:!1,icon:!1,separator_after:!1,_disabled:!1,label:"Delete",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.delete_node(c.get_selected()):c.delete_node(d)}},ccp:{separator_before:!0,icon:!1,separator_after:!1,label:"Edit",action:!1,submenu:{cut:{separator_before:!1,separator_after:!1,label:"Cut",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.cut(c.get_top_selected()):c.cut(d)}},copy:{separator_before:!1,icon:!1,separator_after:!1,label:"Copy",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.copy(c.get_top_selected()):c.copy(d)}},paste:{separator_before:!1,icon:!1,_disabled:function(b){return!a.jstree.reference(b.reference).can_paste()},separator_after:!1,label:"Paste",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.paste(d)}}}}}}},a.jstree.plugins.contextmenu=function(c,d){this.bind=function(){d.bind.call(this);var b=0,c=null,e,f;this.element.on("init.jstree loading.jstree ready.jstree",a.proxy(function(){this.get_container_ul().addClass("jstree-contextmenu")},this)).on("contextmenu.jstree",".jstree-anchor",a.proxy(function(a,d){"input"!==a.target.tagName.toLowerCase()&&(a.preventDefault(),b=a.ctrlKey?+new Date:0,(d||c)&&(b=+new Date+1e4),c&&clearTimeout(c),this.is_loading(a.currentTarget)||this.show_contextmenu(a.currentTarget,a.pageX,a.pageY,a))},this)).on("click.jstree",".jstree-anchor",a.proxy(function(c){this._data.contextmenu.visible&&(!b||+new Date-b>250)&&a.vakata.context.hide(),b=0},this)).on("touchstart.jstree",".jstree-anchor",function(b){b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(e=b.originalEvent.changedTouches[0].clientX,f=b.originalEvent.changedTouches[0].clientY,c=setTimeout(function(){a(b.currentTarget).trigger("contextmenu",!0)},750))}).on("touchmove.vakata.jstree",function(b){c&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(Math.abs(e-b.originalEvent.changedTouches[0].clientX)>10||Math.abs(f-b.originalEvent.changedTouches[0].clientY)>10)&&(clearTimeout(c),a.vakata.context.hide())}).on("touchend.vakata.jstree",function(a){c&&clearTimeout(c)}),a(i).on("context_hide.vakata.jstree",a.proxy(function(b,c){this._data.contextmenu.visible=!1,a(c.reference).removeClass("jstree-context")},this))},this.teardown=function(){this._data.contextmenu.visible&&a.vakata.context.hide(),d.teardown.call(this)},this.show_contextmenu=function(c,d,e,f){if(c=this.get_node(c),!c||c.id===a.jstree.root)return!1;var g=this.settings.contextmenu,h=this.get_node(c,!0),i=h.children(".jstree-anchor"),j=!1,k=!1;(g.show_at_node||d===b||e===b)&&(j=i.offset(),d=j.left,e=j.top+this._data.core.li_height),this.settings.contextmenu.select_node&&!this.is_selected(c)&&this.activate_node(c,f),k=g.items,a.isFunction(k)&&(k=k.call(this,c,a.proxy(function(a){this._show_contextmenu(c,d,e,a)},this))),a.isPlainObject(k)&&this._show_contextmenu(c,d,e,k)},this._show_contextmenu=function(b,c,d,e){var f=this.get_node(b,!0),g=f.children(".jstree-anchor");a(i).one("context_show.vakata.jstree",a.proxy(function(b,c){var d="jstree-contextmenu jstree-"+this.get_theme()+"-contextmenu";a(c.element).addClass(d),g.addClass("jstree-context")},this)),this._data.contextmenu.visible=!0,a.vakata.context.show(g,{x:c,y:d},e),this.trigger("show_contextmenu",{node:b,x:c,y:d})}},function(a){var b=!1,c={element:!1,reference:!1,position_x:0,position_y:0,items:[],html:"",is_visible:!1};a.vakata.context={settings:{hide_onmouseleave:0,icons:!0},_trigger:function(b){a(i).triggerHandler("context_"+b+".vakata",{reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}})},_execute:function(b){return b=c.items[b],b&&(!b._disabled||a.isFunction(b._disabled)&&!b._disabled({ +item:b,reference:c.reference,element:c.element}))&&b.action?b.action.call(null,{item:b,reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}}):!1},_parse:function(b,d){if(!b)return!1;d||(c.html="",c.items=[]);var e="",f=!1,g;return d&&(e+=""),d||(c.html=e,a.vakata.context._trigger("parse")),e.length>10?e:!1},_show_submenu:function(c){if(c=a(c),c.length&&c.children("ul").length){var d=c.children("ul"),e=c.offset().left,f=e+c.outerWidth(),g=c.offset().top,h=d.width(),i=d.height(),j=a(window).width()+a(window).scrollLeft(),k=a(window).height()+a(window).scrollTop();b?c[f-(h+10+c.outerWidth())<0?"addClass":"removeClass"]("vakata-context-left"):c[f+h>j&&e>j-f?"addClass":"removeClass"]("vakata-context-right"),g+i+10>k&&d.css("bottom","-1px"),c.hasClass("vakata-context-right")?h>e&&d.css("margin-right",e-h):h>j-f&&d.css("margin-left",j-f-h),d.show()}},show:function(d,e,f){var g,h,j,k,l,m,n,o,p=!0;switch(c.element&&c.element.length&&c.element.width(""),p){case!e&&!d:return!1;case!!e&&!!d:c.reference=d,c.position_x=e.x,c.position_y=e.y;break;case!e&&!!d:c.reference=d,g=d.offset(),c.position_x=g.left+d.outerHeight(),c.position_y=g.top;break;case!!e&&!d:c.position_x=e.x,c.position_y=e.y}d&&!f&&a(d).data("vakata_contextmenu")&&(f=a(d).data("vakata_contextmenu")),a.vakata.context._parse(f)&&c.element.html(c.html),c.items.length&&(c.element.appendTo(i.body),h=c.element,j=c.position_x,k=c.position_y,l=h.width(),m=h.height(),n=a(window).width()+a(window).scrollLeft(),o=a(window).height()+a(window).scrollTop(),b&&(j-=h.outerWidth()-a(d).outerWidth(),jn&&(j=n-(l+20)),k+m+20>o&&(k=o-(m+20)),c.element.css({left:j,top:k}).show().find("a").first().focus().parent().addClass("vakata-context-hover"),c.is_visible=!0,a.vakata.context._trigger("show"))},hide:function(){c.is_visible&&(c.element.hide().find("ul").hide().end().find(":focus").blur().end().detach(),c.is_visible=!1,a.vakata.context._trigger("hide"))}},a(function(){b="rtl"===a(i.body).css("direction");var d=!1;c.element=a("
      "),c.element.on("mouseenter","li",function(b){b.stopImmediatePropagation(),a.contains(this,b.relatedTarget)||(d&&clearTimeout(d),c.element.find(".vakata-context-hover").removeClass("vakata-context-hover").end(),a(this).siblings().find("ul").hide().end().end().parentsUntil(".vakata-context","li").addBack().addClass("vakata-context-hover"),a.vakata.context._show_submenu(this))}).on("mouseleave","li",function(b){a.contains(this,b.relatedTarget)||a(this).find(".vakata-context-hover").addBack().removeClass("vakata-context-hover")}).on("mouseleave",function(b){a(this).find(".vakata-context-hover").removeClass("vakata-context-hover"),a.vakata.context.settings.hide_onmouseleave&&(d=setTimeout(function(b){return function(){a.vakata.context.hide()}}(this),a.vakata.context.settings.hide_onmouseleave))}).on("click","a",function(b){b.preventDefault(),a(this).blur().parent().hasClass("vakata-context-disabled")||a.vakata.context._execute(a(this).attr("rel"))===!1||a.vakata.context.hide()}).on("keydown","a",function(b){var d=null;switch(b.which){case 13:case 32:b.type="click",b.preventDefault(),a(b.currentTarget).trigger(b);break;case 37:c.is_visible&&(c.element.find(".vakata-context-hover").last().closest("li").first().find("ul").hide().find(".vakata-context-hover").removeClass("vakata-context-hover").end().end().children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 38:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").prevAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").last()),d.addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 39:c.is_visible&&(c.element.find(".vakata-context-hover").last().children("ul").show().children("li:not(.vakata-context-separator)").removeClass("vakata-context-hover").first().addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 40:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").nextAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").first()),d.addClass("vakata-context-hover").children("a").focus(),b.stopImmediatePropagation(),b.preventDefault());break;case 27:a.vakata.context.hide(),b.preventDefault()}}).on("keydown",function(a){a.preventDefault();var b=c.element.find(".vakata-contextmenu-shortcut-"+a.which).parent();b.parent().not(".vakata-context-disabled")&&b.click()}),a(i).on("mousedown.vakata.jstree",function(b){c.is_visible&&c.element[0]!==b.target&&!a.contains(c.element[0],b.target)&&a.vakata.context.hide()}).on("context_show.vakata.jstree",function(a,d){c.element.find("li:has(ul)").children("a").addClass("vakata-context-parent"),b&&c.element.addClass("vakata-context-rtl").css("direction","rtl"),c.element.find("ul").hide().end()})})}(a),a.jstree.defaults.dnd={copy:!0,open_timeout:500,is_draggable:!0,check_while_dragging:!0,always_copy:!1,inside_pos:0,drag_selection:!0,touch:!0,large_drop_target:!1,large_drag_target:!1,use_html5:!1};var m,n;a.jstree.plugins.dnd=function(b,c){this.init=function(a,b){c.init.call(this,a,b),this.settings.dnd.use_html5=this.settings.dnd.use_html5&&"draggable"in i.createElement("span")},this.bind=function(){c.bind.call(this),this.element.on(this.settings.dnd.use_html5?"dragstart.jstree":"mousedown.jstree touchstart.jstree",this.settings.dnd.large_drag_target?".jstree-node":".jstree-anchor",a.proxy(function(b){if(this.settings.dnd.large_drag_target&&a(b.target).closest(".jstree-node")[0]!==b.currentTarget)return!0;if("touchstart"===b.type&&(!this.settings.dnd.touch||"selected"===this.settings.dnd.touch&&!a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").hasClass("jstree-clicked")))return!0;var c=this.get_node(b.target),d=this.is_selected(c)&&this.settings.dnd.drag_selection?this.get_top_selected().length:1,e=d>1?d+" "+this.get_string("nodes"):this.get_text(b.currentTarget);if(this.settings.core.force_text&&(e=a.vakata.html.escape(e)),c&&c.id&&c.id!==a.jstree.root&&(1===b.which||"touchstart"===b.type||"dragstart"===b.type)&&(this.settings.dnd.is_draggable===!0||a.isFunction(this.settings.dnd.is_draggable)&&this.settings.dnd.is_draggable.call(this,d>1?this.get_top_selected(!0):[c],b))){if(m={jstree:!0,origin:this,obj:this.get_node(c,!0),nodes:d>1?this.get_top_selected():[c.id]},n=b.currentTarget,!this.settings.dnd.use_html5)return this.element.trigger("mousedown.jstree"),a.vakata.dnd.start(b,m,'
      '+e+'
      ');a.vakata.dnd._trigger("start",b,{helper:a(),element:n,data:m})}},this)),this.settings.dnd.use_html5&&this.element.on("dragover.jstree",function(b){return b.preventDefault(),a.vakata.dnd._trigger("move",b,{helper:a(),element:n,data:m}),!1}).on("drop.jstree",a.proxy(function(b){return b.preventDefault(),a.vakata.dnd._trigger("stop",b,{helper:a(),element:n,data:m}),!1},this))},this.redraw_node=function(a,b,d,e){if(a=c.redraw_node.apply(this,arguments),a&&this.settings.dnd.use_html5)if(this.settings.dnd.large_drag_target)a.setAttribute("draggable",!0);else{var f,g,h=null;for(f=0,g=a.childNodes.length;g>f;f++)if(a.childNodes[f]&&a.childNodes[f].className&&-1!==a.childNodes[f].className.indexOf("jstree-anchor")){h=a.childNodes[f];break}h&&h.setAttribute("draggable",!0)}return a}},a(function(){var c=!1,d=!1,e=!1,f=!1,g=a('
       
      ').hide();a(i).on("dragover.vakata.jstree",function(b){n&&a.vakata.dnd._trigger("move",b,{helper:a(),element:n,data:m})}).on("drop.vakata.jstree",function(b){n&&(a.vakata.dnd._trigger("stop",b,{helper:a(),element:n,data:m}),n=null,m=null)}).on("dnd_start.vakata.jstree",function(a,b){c=!1,e=!1,b&&b.data&&b.data.jstree&&g.appendTo(i.body)}).on("dnd_move.vakata.jstree",function(h,i){var j=i.event.target!==e.target;if(f&&(!i.event||"dragover"!==i.event.type||j)&&clearTimeout(f),i&&i.data&&i.data.jstree&&(!i.event.target.id||"jstree-marker"!==i.event.target.id)){e=i.event;var k=a.jstree.reference(i.event.target),l=!1,m=!1,n=!1,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F;if(k&&k._data&&k._data.dnd)if(g.attr("class","jstree-"+k.get_theme()+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")),D=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey)),i.helper.children().attr("class","jstree-"+k.get_theme()+" jstree-"+k.get_theme()+"-"+k.get_theme_variant()+" "+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")).find(".jstree-copy").first()[D?"show":"hide"](),i.event.target!==k.element[0]&&i.event.target!==k.get_container_ul()[0]||0!==k.get_container_ul().children().length){if(l=k.settings.dnd.large_drop_target?a(i.event.target).closest(".jstree-node").children(".jstree-anchor"):a(i.event.target).closest(".jstree-anchor"),l&&l.length&&l.parent().is(".jstree-closed, .jstree-open, .jstree-leaf")&&(m=l.offset(),n=(i.event.pageY!==b?i.event.pageY:i.event.originalEvent.pageY)-m.top,r=l.outerHeight(),u=r/3>n?["b","i","a"]:n>r-r/3?["a","i","b"]:n>r/2?["i","a","b"]:["i","b","a"],a.each(u,function(b,e){switch(e){case"b":p=m.left-6,q=m.top,s=k.get_parent(l),t=l.parent().index(),F="jstree-below";break;case"i":B=k.settings.dnd.inside_pos,C=k.get_node(l.parent()),p=m.left-2,q=m.top+r/2+1,s=C.id,t="first"===B?0:"last"===B?C.children.length:Math.min(B,C.children.length),F="jstree-inside";break;case"a":p=m.left-6,q=m.top+r,s=k.get_parent(l),t=l.parent().index()+1,F="jstree-above"}for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(y=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",z=t,"move_node"===y&&"a"===e&&i.data.origin&&i.data.origin===k&&s===k.get_parent(i.data.nodes[w])&&(A=k.get_node(s),z>a.inArray(i.data.nodes[w],A.children)&&(z-=1)),v=v&&(k&&k.settings&&k.settings.dnd&&k.settings.dnd.check_while_dragging===!1||k.check(y,i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],s,z,{dnd:!0,ref:k.get_node(l.parent()),pos:e,origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin})),!v){k&&k.last_error&&(d=k.last_error());break}return"i"===e&&l.parent().is(".jstree-closed")&&k.settings.dnd.open_timeout&&(!i.event||"dragover"!==i.event.type||j)&&(f&&clearTimeout(f),f=setTimeout(function(a,b){return function(){a.open_node(b)}}(k,l),k.settings.dnd.open_timeout)),v?(E=k.get_node(s,!0),E.hasClass(".jstree-dnd-parent")||(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),E.addClass("jstree-dnd-parent")),c={ins:k,par:s,pos:"i"!==e||"last"!==B||0!==t||k.is_loaded(C)?t:"last"},g.css({left:p+"px",top:q+"px"}).show(),g.removeClass("jstree-above jstree-inside jstree-below").addClass(F),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"),d={},u=!0,!1):void 0}),u===!0))return}else{for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(v=v&&k.check(i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],a.jstree.root,"last",{dnd:!0,ref:k.get_node(a.jstree.root),pos:"i",origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin}),!v)break;if(v)return c={ins:k,par:a.jstree.root,pos:"last"},g.hide(),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),void(i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"))}a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),c=!1,i.helper.find(".jstree-icon").removeClass("jstree-ok").addClass("jstree-er"),i.event.originalEvent&&i.event.originalEvent.dataTransfer,g.hide()}}).on("dnd_scroll.vakata.jstree",function(a,b){b&&b.data&&b.data.jstree&&(g.hide(),c=!1,e=!1,b.helper.find(".jstree-icon").first().removeClass("jstree-ok").addClass("jstree-er"))}).on("dnd_stop.vakata.jstree",function(b,h){if(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),f&&clearTimeout(f),h&&h.data&&h.data.jstree){g.hide().detach();var i,j,k=[];if(c){for(i=0,j=h.data.nodes.length;j>i;i++)k[i]=h.data.origin?h.data.origin.get_node(h.data.nodes[i]):h.data.nodes[i];c.ins[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(h.event.metaKey||h.event.ctrlKey))?"copy_node":"move_node"](k,c.par,c.pos,!1,!1,!1,h.data.origin)}else i=a(h.event.target).closest(".jstree"),i.length&&d&&d.error&&"check"===d.error&&(i=i.jstree(!0),i&&i.settings.core.error.call(this,d));e=!1,c=!1}}).on("keyup.jstree keydown.jstree",function(b,h){h=a.vakata.dnd._get(),h&&h.data&&h.data.jstree&&("keyup"===b.type&&27===b.which?(f&&clearTimeout(f),c=!1,d=!1,e=!1,f=!1,g.hide().detach(),a.vakata.dnd._clean()):(h.helper.find(".jstree-copy").first()[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(b.metaKey||b.ctrlKey))?"show":"hide"](),e&&(e.metaKey=b.metaKey,e.ctrlKey=b.ctrlKey,a.vakata.dnd._trigger("move",e))))})}),function(a){a.vakata.html={div:a("
      "),escape:function(b){return a.vakata.html.div.text(b).html()},strip:function(b){return a.vakata.html.div.empty().append(a.parseHTML(b)).text()}};var c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1};a.vakata.dnd={settings:{scroll_speed:10,scroll_proximity:20,helper_left:5,helper_top:10,threshold:5,threshold_touch:10},_trigger:function(c,d,e){e===b&&(e=a.vakata.dnd._get()),e.event=d,a(i).triggerHandler("dnd_"+c+".vakata",e)},_get:function(){return{data:c.data,element:c.element,helper:c.helper}},_clean:function(){c.helper&&c.helper.remove(),c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1},n=null,a(i).off("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).off("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop)},_scroll:function(b){if(!c.scroll_e||!c.scroll_l&&!c.scroll_t)return c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),!1;if(!c.scroll_i)return c.scroll_i=setInterval(a.vakata.dnd._scroll,100),!1;if(b===!0)return!1;var d=c.scroll_e.scrollTop(),e=c.scroll_e.scrollLeft();c.scroll_e.scrollTop(d+c.scroll_t*a.vakata.dnd.settings.scroll_speed),c.scroll_e.scrollLeft(e+c.scroll_l*a.vakata.dnd.settings.scroll_speed),(d!==c.scroll_e.scrollTop()||e!==c.scroll_e.scrollLeft())&&a.vakata.dnd._trigger("scroll",c.scroll_e)},start:function(b,d,e){"touchstart"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag&&a.vakata.dnd.stop({});try{b.currentTarget.unselectable="on",b.currentTarget.onselectstart=function(){return!1},b.currentTarget.style&&(b.currentTarget.style.touchAction="none",b.currentTarget.style.msTouchAction="none",b.currentTarget.style.MozUserSelect="none")}catch(f){}return c.init_x=b.pageX,c.init_y=b.pageY,c.data=d,c.is_down=!0,c.element=b.currentTarget,c.target=b.target,c.is_touch="touchstart"===b.type,e!==!1&&(c.helper=a("
      ").html(e).css({display:"block",margin:"0",padding:"0",position:"absolute",top:"-2000px",lineHeight:"16px",zIndex:"10000"})),a(i).on("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).on("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop),!1},drag:function(b){if("touchmove"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_down){if(!c.is_drag){if(!(Math.abs(b.pageX-c.init_x)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)||Math.abs(b.pageY-c.init_y)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)))return;c.helper&&(c.helper.appendTo(i.body),c.helper_w=c.helper.outerWidth()),c.is_drag=!0,a(c.target).one("click.vakata",!1),a.vakata.dnd._trigger("start",b)}var d=!1,e=!1,f=!1,g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n=!1;return c.scroll_t=0,c.scroll_l=0,c.scroll_e=!1,a(a(b.target).parentsUntil("body").addBack().get().reverse()).filter(function(){return/^auto|scroll$/.test(a(this).css("overflow"))&&(this.scrollHeight>this.offsetHeight||this.scrollWidth>this.offsetWidth)}).each(function(){var d=a(this),e=d.offset();return this.scrollHeight>this.offsetHeight&&(e.top+d.height()-b.pageYthis.offsetWidth&&(e.left+d.width()-b.pageXg&&b.pageY-kg&&g-(b.pageY-k)j&&b.pageX-lj&&j-(b.pageX-l)f&&(m=f-50),h&&n+c.helper_w>h&&(n=h-(c.helper_w+2)),c.helper.css({left:n+"px",top:m+"px"})),a.vakata.dnd._trigger("move",b),!1}},stop:function(b){if("touchend"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag)b.target!==c.target&&a(c.target).off("click.vakata"),a.vakata.dnd._trigger("stop",b);else if("touchend"===b.type&&b.target===c.target){var d=setTimeout(function(){a(b.target).click()},100);a(b.target).one("click",function(){d&&clearTimeout(d)})}return a.vakata.dnd._clean(),!1}}}(a),a.jstree.defaults.massload=null,a.jstree.plugins.massload=function(b,c){this.init=function(a,b){this._data.massload={},c.init.call(this,a,b)},this._load_nodes=function(b,d,e,f){var g=this.settings.massload,h=[],i=this._model.data,j,k,l;if(!e){for(j=0,k=b.length;k>j;j++)(!i[b[j]]||!i[b[j]].state.loaded&&!i[b[j]].state.failed||f)&&(h.push(b[j]),l=this.get_node(b[j],!0),l&&l.length&&l.addClass("jstree-loading").attr("aria-busy",!0));if(this._data.massload={},h.length){if(a.isFunction(g))return g.call(this,h,a.proxy(function(a){var g,h;if(a)for(g in a)a.hasOwnProperty(g)&&(this._data.massload[g]=a[g]);for(g=0,h=b.length;h>g;g++)l=this.get_node(b[g],!0),l&&l.length&&l.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)},this));if("object"==typeof g&&g&&g.url)return g=a.extend(!0,{},g),a.isFunction(g.url)&&(g.url=g.url.call(this,h)),a.isFunction(g.data)&&(g.data=g.data.call(this,h)),a.ajax(g).done(a.proxy(function(a,g,h){var i,j;if(a)for(i in a)a.hasOwnProperty(i)&&(this._data.massload[i]=a[i]);for(i=0,j=b.length;j>i;i++)l=this.get_node(b[i],!0),l&&l.length&&l.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)},this)).fail(a.proxy(function(a){c._load_nodes.call(this,b,d,e,f)},this))}}return c._load_nodes.call(this,b,d,e,f)},this._load_node=function(b,d){var e=this._data.massload[b.id],f=null,g;return e?(f=this["string"==typeof e?"_append_html_data":"_append_json_data"](b,"string"==typeof e?a(a.parseHTML(e)).filter(function(){return 3!==this.nodeType}):e,function(a){d.call(this,a)}),g=this.get_node(b.id,!0),g&&g.length&&g.removeClass("jstree-loading").attr("aria-busy",!1),delete this._data.massload[b.id],f):c._load_node.call(this,b,d)}},a.jstree.defaults.search={ajax:!1,fuzzy:!1,case_sensitive:!1,show_only_matches:!1,show_only_matches_children:!1,close_opened_onclear:!0,search_leaves_only:!1,search_callback:!1},a.jstree.plugins.search=function(c,d){this.bind=function(){d.bind.call(this),this._data.search.str="",this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=!1,this._data.search.smc=!1,this._data.search.hdn=[],this.element.on("search.jstree",a.proxy(function(b,c){if(this._data.search.som&&c.res.length){var d=this._model.data,e,f,g=[],h,i;for(e=0,f=c.res.length;f>e;e++)if(d[c.res[e]]&&!d[c.res[e]].state.hidden&&(g.push(c.res[e]),g=g.concat(d[c.res[e]].parents),this._data.search.smc))for(h=0,i=d[c.res[e]].children_d.length;i>h;h++)d[d[c.res[e]].children_d[h]]&&!d[d[c.res[e]].children_d[h]].state.hidden&&g.push(d[c.res[e]].children_d[h]);g=a.vakata.array_remove_item(a.vakata.array_unique(g),a.jstree.root),this._data.search.hdn=this.hide_all(!0),this.show_node(g,!0),this.redraw(!0)}},this)).on("clear_search.jstree",a.proxy(function(a,b){this._data.search.som&&b.res.length&&(this.show_node(this._data.search.hdn,!0),this.redraw(!0))},this))},this.search=function(c,d,e,f,g,h){if(c===!1||""===a.trim(c.toString()))return this.clear_search();f=this.get_node(f),f=f&&f.id?f.id:null,c=c.toString();var i=this.settings.search,j=i.ajax?i.ajax:!1,k=this._model.data,l=null,m=[],n=[],o,p;if(this._data.search.res.length&&!g&&this.clear_search(),e===b&&(e=i.show_only_matches),h===b&&(h=i.show_only_matches_children),!d&&j!==!1)return a.isFunction(j)?j.call(this,c,a.proxy(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.isArray(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})},this),f):(j=a.extend({},j),j.data||(j.data={}),j.data.str=c,f&&(j.data.inside=f),this._data.search.lastRequest&&this._data.search.lastRequest.abort(),this._data.search.lastRequest=a.ajax(j).fail(a.proxy(function(){this._data.core.last_error={error:"ajax",plugin:"search",id:"search_01",reason:"Could not load search parents",data:JSON.stringify(j)},this.settings.core.error.call(this,this._data.core.last_error)},this)).done(a.proxy(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.isArray(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})},this)),this._data.search.lastRequest);if(g||(this._data.search.str=c,this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=e,this._data.search.smc=h),l=new a.vakata.search(c,!0,{caseSensitive:i.case_sensitive,fuzzy:i.fuzzy}),a.each(k[f?f:a.jstree.root].children_d,function(a,b){var d=k[b];d.text&&!d.state.hidden&&(!i.search_leaves_only||d.state.loaded&&0===d.children.length)&&(i.search_callback&&i.search_callback.call(this,c,d)||!i.search_callback&&l.search(d.text).isMatch)&&(m.push(b),n=n.concat(d.parents))}),m.length){for(n=a.vakata.array_unique(n),o=0,p=n.length;p>o;o++)n[o]!==a.jstree.root&&k[n[o]]&&this.open_node(n[o],null,0)===!0&&this._data.search.opn.push(n[o]);g?(this._data.search.dom=this._data.search.dom.add(a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #")))),this._data.search.res=a.vakata.array_unique(this._data.search.res.concat(m))):(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.res=m),this._data.search.dom.children(".jstree-anchor").addClass("jstree-search")}this.trigger("search",{nodes:this._data.search.dom,str:c,res:this._data.search.res,show_only_matches:e})},this.clear_search=function(){this.settings.search.close_opened_onclear&&this.close_node(this._data.search.opn,0),this.trigger("clear_search",{nodes:this._data.search.dom,str:this._data.search.str,res:this._data.search.res}),this._data.search.res.length&&(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(this._data.search.res,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.dom.children(".jstree-anchor").removeClass("jstree-search")),this._data.search.str="",this._data.search.res=[],this._data.search.opn=[],this._data.search.dom=a()},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments),b&&-1!==a.inArray(b.id,this._data.search.res)){var g,h,i=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(i.className+=" jstree-search")}return b}},function(a){a.vakata.search=function(b,c,d){d=d||{},d=a.extend({},a.vakata.search.defaults,d),d.fuzzy!==!1&&(d.fuzzy=!0),b=d.caseSensitive?b:b.toLowerCase();var e=d.location,f=d.distance,g=d.threshold,h=b.length,i,j,k,l;return h>32&&(d.fuzzy=!1),d.fuzzy&&(i=1<c;c++)a[b.charAt(c)]=0;for(c=0;h>c;c++)a[b.charAt(c)]|=1<c;c++){o=0,p=q;while(p>o)k(c,e+p)<=m?o=p:q=p,p=Math.floor((q-o)/2+o);for(q=p,s=Math.max(1,e-p+1),t=Math.min(e+p,l)+h,u=new Array(t+2),u[t+1]=(1<=s;f--)if(v=j[a.charAt(f-1)],0===c?u[f]=(u[f+1]<<1|1)&v:u[f]=(u[f+1]<<1|1)&v|((r[f+1]|r[f])<<1|1)|r[f+1],u[f]&i&&(w=k(c,f-1),m>=w)){if(m=w,n=f-1,x.push(n),!(n>e))break;s=Math.max(1,2*e-n)}if(k(c+1,e)>m)break;r=u}return{isMatch:n>=0,score:w}},c===!0?{search:l}:l(c)},a.vakata.search.defaults={location:0,distance:100,threshold:.6,fuzzy:!1,caseSensitive:!1}}(a),a.jstree.defaults.sort=function(a,b){return this.get_text(a)>this.get_text(b)?1:-1},a.jstree.plugins.sort=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("model.jstree",a.proxy(function(a,b){this.sort(b.parent,!0)},this)).on("rename_node.jstree create_node.jstree",a.proxy(function(a,b){this.sort(b.parent||b.node.parent,!1),this.redraw_node(b.parent||b.node.parent,!0)},this)).on("move_node.jstree copy_node.jstree",a.proxy(function(a,b){this.sort(b.parent,!1),this.redraw_node(b.parent,!0)},this))},this.sort=function(b,c){var d,e;if(b=this.get_node(b),b&&b.children&&b.children.length&&(b.children.sort(a.proxy(this.settings.sort,this)),c))for(d=0,e=b.children_d.length;e>d;d++)this.sort(b.children_d[d],!1)}};var o=!1;a.jstree.defaults.state={key:"jstree",events:"changed.jstree open_node.jstree close_node.jstree check_node.jstree uncheck_node.jstree",ttl:!1,filter:!1,preserve_loaded:!1},a.jstree.plugins.state=function(b,c){this.bind=function(){c.bind.call(this);var b=a.proxy(function(){this.element.on(this.settings.state.events,a.proxy(function(){o&&clearTimeout(o),o=setTimeout(a.proxy(function(){this.save_state()},this),100)},this)),this.trigger("state_ready")},this);this.element.on("ready.jstree",a.proxy(function(a,c){this.element.one("restore_state.jstree",b),this.restore_state()||b()},this))},this.save_state=function(){var b=this.get_state();this.settings.state.preserve_loaded||delete b.core.loaded;var c={state:b,ttl:this.settings.state.ttl,sec:+new Date};a.vakata.storage.set(this.settings.state.key,JSON.stringify(c))},this.restore_state=function(){var b=a.vakata.storage.get(this.settings.state.key);if(b)try{b=JSON.parse(b)}catch(c){return!1}return b&&b.ttl&&b.sec&&+new Date-b.sec>b.ttl?!1:(b&&b.state&&(b=b.state),b&&a.isFunction(this.settings.state.filter)&&(b=this.settings.state.filter.call(this,b)),b?(this.settings.state.preserve_loaded||delete b.core.loaded,this.element.one("set_state.jstree",function(c,d){d.instance.trigger("restore_state",{state:a.extend(!0,{},b)})}),this.set_state(b),!0):!1)},this.clear_state=function(){return a.vakata.storage.del(this.settings.state.key)}},function(a,b){a.vakata.storage={set:function(a,b){return window.localStorage.setItem(a,b)},get:function(a){return window.localStorage.getItem(a)},del:function(a){return window.localStorage.removeItem(a)}}}(a),a.jstree.defaults.types={"default":{}},a.jstree.defaults.types[a.jstree.root]={},a.jstree.plugins.types=function(c,d){this.init=function(c,e){var f,g;if(e&&e.types&&e.types["default"])for(f in e.types)if("default"!==f&&f!==a.jstree.root&&e.types.hasOwnProperty(f))for(g in e.types["default"])e.types["default"].hasOwnProperty(g)&&e.types[f][g]===b&&(e.types[f][g]=e.types["default"][g]);d.init.call(this,c,e),this._model.data[a.jstree.root].type=a.jstree.root},this.refresh=function(b,c){d.refresh.call(this,b,c),this._model.data[a.jstree.root].type=a.jstree.root},this.bind=function(){this.element.on("model.jstree",a.proxy(function(c,d){var e=this._model.data,f=d.nodes,g=this.settings.types,h,i,j="default",k;for(h=0,i=f.length;i>h;h++){if(j="default",e[f[h]].original&&e[f[h]].original.type&&g[e[f[h]].original.type]&&(j=e[f[h]].original.type),e[f[h]].data&&e[f[h]].data.jstree&&e[f[h]].data.jstree.type&&g[e[f[h]].data.jstree.type]&&(j=e[f[h]].data.jstree.type), +e[f[h]].type=j,e[f[h]].icon===!0&&g[j].icon!==b&&(e[f[h]].icon=g[j].icon),g[j].li_attr!==b&&"object"==typeof g[j].li_attr)for(k in g[j].li_attr)if(g[j].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].li_attr[k]===b?e[f[h]].li_attr[k]=g[j].li_attr[k]:"class"===k&&(e[f[h]].li_attr["class"]=g[j].li_attr["class"]+" "+e[f[h]].li_attr["class"])}if(g[j].a_attr!==b&&"object"==typeof g[j].a_attr)for(k in g[j].a_attr)if(g[j].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].a_attr[k]===b?e[f[h]].a_attr[k]=g[j].a_attr[k]:"href"===k&&"#"===e[f[h]].a_attr[k]?e[f[h]].a_attr.href=g[j].a_attr.href:"class"===k&&(e[f[h]].a_attr["class"]=g[j].a_attr["class"]+" "+e[f[h]].a_attr["class"])}}e[a.jstree.root].type=a.jstree.root},this)),d.bind.call(this)},this.get_json=function(b,c,e){var f,g,h=this._model.data,i=c?a.extend(!0,{},c,{no_id:!1}):{},j=d.get_json.call(this,b,i,e);if(j===!1)return!1;if(a.isArray(j))for(f=0,g=j.length;g>f;f++)j[f].type=j[f].id&&h[j[f].id]&&h[j[f].id].type?h[j[f].id].type:"default",c&&c.no_id&&(delete j[f].id,j[f].li_attr&&j[f].li_attr.id&&delete j[f].li_attr.id,j[f].a_attr&&j[f].a_attr.id&&delete j[f].a_attr.id);else j.type=j.id&&h[j.id]&&h[j.id].type?h[j.id].type:"default",c&&c.no_id&&(j=this._delete_ids(j));return j},this._delete_ids=function(b){if(a.isArray(b)){for(var c=0,d=b.length;d>c;c++)b[c]=this._delete_ids(b[c]);return b}return delete b.id,b.li_attr&&b.li_attr.id&&delete b.li_attr.id,b.a_attr&&b.a_attr.id&&delete b.a_attr.id,b.children&&a.isArray(b.children)&&(b.children=this._delete_ids(b.children)),b},this.check=function(c,e,f,g,h){if(d.check.call(this,c,e,f,g,h)===!1)return!1;e=e&&e.id?e:this.get_node(e),f=f&&f.id?f:this.get_node(f);var i=e&&e.id?h&&h.origin?h.origin:a.jstree.reference(e.id):null,j,k,l,m;switch(i=i&&i._model&&i._model.data?i._model.data:null,c){case"create_node":case"move_node":case"copy_node":if("move_node"!==c||-1===a.inArray(e.id,f.children)){if(j=this.get_rules(f),j.max_children!==b&&-1!==j.max_children&&j.max_children===f.children.length)return this._data.core.last_error={error:"check",plugin:"types",id:"types_01",reason:"max_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(j.valid_children!==b&&-1!==j.valid_children&&-1===a.inArray(e.type||"default",j.valid_children))return this._data.core.last_error={error:"check",plugin:"types",id:"types_02",reason:"valid_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(i&&e.children_d&&e.parents){for(k=0,l=0,m=e.children_d.length;m>l;l++)k=Math.max(k,i[e.children_d[l]].parents.length);k=k-e.parents.length+1}(0>=k||k===b)&&(k=1);do{if(j.max_depth!==b&&-1!==j.max_depth&&j.max_depthg;g++)this.set_type(c[g],d);return!0}if(f=this.settings.types,c=this.get_node(c),!f[d]||!c)return!1;if(l=this.get_node(c,!0),l&&l.length&&(m=l.children(".jstree-anchor")),i=c.type,j=this.get_icon(c),c.type=d,(j===!0||!f[i]||f[i].icon!==b&&j===f[i].icon)&&this.set_icon(c,f[d].icon!==b?f[d].icon:!0),f[i]&&f[i].li_attr!==b&&"object"==typeof f[i].li_attr)for(k in f[i].li_attr)if(f[i].li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].li_attr["class"]=(e[c.id].li_attr["class"]||"").replace(f[i].li_attr[k],""),l&&l.removeClass(f[i].li_attr[k])):e[c.id].li_attr[k]===f[i].li_attr[k]&&(e[c.id].li_attr[k]=null,l&&l.removeAttr(k))}if(f[i]&&f[i].a_attr!==b&&"object"==typeof f[i].a_attr)for(k in f[i].a_attr)if(f[i].a_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].a_attr["class"]=(e[c.id].a_attr["class"]||"").replace(f[i].a_attr[k],""),m&&m.removeClass(f[i].a_attr[k])):e[c.id].a_attr[k]===f[i].a_attr[k]&&("href"===k?(e[c.id].a_attr[k]="#",m&&m.attr("href","#")):(delete e[c.id].a_attr[k],m&&m.removeAttr(k)))}if(f[d].li_attr!==b&&"object"==typeof f[d].li_attr)for(k in f[d].li_attr)if(f[d].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].li_attr[k]===b?(e[c.id].li_attr[k]=f[d].li_attr[k],l&&("class"===k?l.addClass(f[d].li_attr[k]):l.attr(k,f[d].li_attr[k]))):"class"===k&&(e[c.id].li_attr["class"]=f[d].li_attr[k]+" "+e[c.id].li_attr["class"],l&&l.addClass(f[d].li_attr[k]))}if(f[d].a_attr!==b&&"object"==typeof f[d].a_attr)for(k in f[d].a_attr)if(f[d].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].a_attr[k]===b?(e[c.id].a_attr[k]=f[d].a_attr[k],m&&("class"===k?m.addClass(f[d].a_attr[k]):m.attr(k,f[d].a_attr[k]))):"href"===k&&"#"===e[c.id].a_attr[k]?(e[c.id].a_attr.href=f[d].a_attr.href,m&&m.attr("href",f[d].a_attr.href)):"class"===k&&(e[c.id].a_attr["class"]=f[d].a_attr["class"]+" "+e[c.id].a_attr["class"],m&&m.addClass(f[d].a_attr[k]))}return!0}},a.jstree.defaults.unique={case_sensitive:!1,trim_whitespace:!1,duplicate:function(a,b){return a+" ("+b+")"}},a.jstree.plugins.unique=function(c,d){this.check=function(b,c,e,f,g){if(d.check.call(this,b,c,e,f,g)===!1)return!1;if(c=c&&c.id?c:this.get_node(c),e=e&&e.id?e:this.get_node(e),!e||!e.children)return!0;var h="rename_node"===b?f:c.text,i=[],j=this.settings.unique.case_sensitive,k=this.settings.unique.trim_whitespace,l=this._model.data,m,n,o;for(m=0,n=e.children.length;n>m;m++)o=l[e.children[m]].text,j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),i.push(o);switch(j||(h=h.toLowerCase()),k&&(h=h.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),b){case"delete_node":return!0;case"rename_node":return o=c.text||"",j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),m=-1===a.inArray(h,i)||c.text&&o===h,m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_01",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"create_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_04",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"copy_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_02",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"move_node":return m=c.parent===e.id&&(!g||!g.is_multi)||-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_03",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m}return!0},this.create_node=function(c,e,f,g,h){if(!e||e.text===b){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return d.create_node.call(this,c,e,f,g,h);if(f=f===b?"last":f,!f.toString().match(/^(before|after)$/)&&!h&&!this.is_loaded(c))return d.create_node.call(this,c,e,f,g,h);e||(e={});var i,j,k,l,m,n=this._model.data,o=this.settings.unique.case_sensitive,p=this.settings.unique.trim_whitespace,q=this.settings.unique.duplicate,r;for(j=i=this.get_string("New node"),k=[],l=0,m=c.children.length;m>l;l++)r=n[c.children[l]].text,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),k.push(r);l=1,r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));while(-1!==a.inArray(r,k))j=q.call(this,i,++l).toString(),r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));e.text=j}return d.create_node.call(this,c,e,f,g,h)}};var p=i.createElement("DIV");if(p.setAttribute("unselectable","on"),p.setAttribute("role","presentation"),p.className="jstree-wholerow",p.innerHTML=" ",a.jstree.plugins.wholerow=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("ready.jstree set_state.jstree",a.proxy(function(){this.hide_dots()},this)).on("init.jstree loading.jstree ready.jstree",a.proxy(function(){this.get_container_ul().addClass("jstree-wholerow-ul")},this)).on("deselect_all.jstree",a.proxy(function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked")},this)).on("changed.jstree",a.proxy(function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked");var c=!1,d,e;for(d=0,e=b.selected.length;e>d;d++)c=this.get_node(b.selected[d],!0),c&&c.length&&c.children(".jstree-wholerow").addClass("jstree-wholerow-clicked")},this)).on("open_node.jstree",a.proxy(function(a,b){this.get_node(b.node,!0).find(".jstree-clicked").parent().children(".jstree-wholerow").addClass("jstree-wholerow-clicked")},this)).on("hover_node.jstree dehover_node.jstree",a.proxy(function(a,b){"hover_node"===a.type&&this.is_disabled(b.node)||this.get_node(b.node,!0).children(".jstree-wholerow")["hover_node"===a.type?"addClass":"removeClass"]("jstree-wholerow-hovered")},this)).on("contextmenu.jstree",".jstree-wholerow",a.proxy(function(b){if(this._data.contextmenu){b.preventDefault();var c=a.Event("contextmenu",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey,pageX:b.pageX,pageY:b.pageY});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c)}},this)).on("click.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()}).on("dblclick.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("dblclick",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()}).on("click.jstree",".jstree-leaf > .jstree-ocl",a.proxy(function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).focus()},this)).on("mouseover.jstree",".jstree-wholerow, .jstree-icon",a.proxy(function(a){return a.stopImmediatePropagation(),this.is_disabled(a.currentTarget)||this.hover_node(a.currentTarget),!1},this)).on("mouseleave.jstree",".jstree-node",a.proxy(function(a){this.dehover_node(a.currentTarget)},this))},this.teardown=function(){this.settings.wholerow&&this.element.find(".jstree-wholerow").remove(),c.teardown.call(this)},this.redraw_node=function(b,d,e,f){if(b=c.redraw_node.apply(this,arguments)){var g=p.cloneNode(!0);-1!==a.inArray(b.id,this._data.core.selected)&&(g.className+=" jstree-wholerow-clicked"),this._data.core.focused&&this._data.core.focused===b.id&&(g.className+=" jstree-wholerow-hovered"),b.insertBefore(g,b.childNodes[0])}return b}},window.customElements&&Object&&Object.create){var q=Object.create(HTMLElement.prototype);q.createdCallback=function(){var b={core:{},plugins:[]},c;for(c in a.jstree.plugins)a.jstree.plugins.hasOwnProperty(c)&&this.attributes[c]&&(b.plugins.push(c),this.getAttribute(c)&&JSON.parse(this.getAttribute(c))&&(b[c]=JSON.parse(this.getAttribute(c))));for(c in a.jstree.defaults.core)a.jstree.defaults.core.hasOwnProperty(c)&&this.attributes[c]&&(b.core[c]=JSON.parse(this.getAttribute(c))||this.getAttribute(c));a(this).jstree(b)};try{window.customElements.define("vakata-jstree",function(){},{prototype:q})}catch(r){}}}}); \ No newline at end of file diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/32px.png b/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/32px.png new file mode 100644 index 0000000000000000000000000000000000000000..60395729ef6cfda914b211d5a45c9d2c083b3175 GIT binary patch literal 1525 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 C_#XrS literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/style.css b/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/style.css new file mode 100644 index 00000000..d8dc188f --- /dev/null +++ b/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/style.css @@ -0,0 +1,1146 @@ +/* jsTree default dark theme */ +.jstree-node, +.jstree-children, +.jstree-container-ul { + display: block; + margin: 0; + padding: 0; + list-style-type: none; + list-style-image: none; +} +.jstree-node { + white-space: nowrap; +} +.jstree-anchor { + display: inline-block; + color: black; + white-space: nowrap; + padding: 0 4px 0 1px; + margin: 0; + vertical-align: top; +} +.jstree-anchor:focus { + outline: 0; +} +.jstree-anchor, +.jstree-anchor:link, +.jstree-anchor:visited, +.jstree-anchor:hover, +.jstree-anchor:active { + text-decoration: none; + color: inherit; +} +.jstree-icon { + display: inline-block; + text-decoration: none; + margin: 0; + padding: 0; + vertical-align: top; + text-align: center; +} +.jstree-icon:empty { + display: inline-block; + text-decoration: none; + margin: 0; + padding: 0; + vertical-align: top; + text-align: center; +} +.jstree-ocl { + cursor: pointer; +} +.jstree-leaf > .jstree-ocl { + cursor: default; +} +.jstree .jstree-open > .jstree-children { + display: block; +} +.jstree .jstree-closed > .jstree-children, +.jstree .jstree-leaf > .jstree-children { + display: none; +} +.jstree-anchor > .jstree-themeicon { + margin-right: 2px; +} +.jstree-no-icons .jstree-themeicon, +.jstree-anchor > .jstree-themeicon-hidden { + display: none; +} +.jstree-hidden, +.jstree-node.jstree-hidden { + display: none; +} +.jstree-rtl .jstree-anchor { + padding: 0 1px 0 4px; +} +.jstree-rtl .jstree-anchor > .jstree-themeicon { + margin-left: 2px; + margin-right: 0; +} +.jstree-rtl .jstree-node { + margin-left: 0; +} +.jstree-rtl .jstree-container-ul > .jstree-node { + margin-right: 0; +} +.jstree-wholerow-ul { + position: relative; + display: inline-block; + min-width: 100%; +} +.jstree-wholerow-ul .jstree-leaf > .jstree-ocl { + cursor: pointer; +} +.jstree-wholerow-ul .jstree-anchor, +.jstree-wholerow-ul .jstree-icon { + position: relative; +} +.jstree-wholerow-ul .jstree-wholerow { + width: 100%; + cursor: pointer; + position: absolute; + left: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.jstree-contextmenu .jstree-anchor { + -webkit-user-select: none; + /* disable selection/Copy of UIWebView */ + -webkit-touch-callout: none; + /* disable the IOS popup when long-press on a link */ +} +.vakata-context { + display: none; +} +.vakata-context, +.vakata-context ul { + margin: 0; + padding: 2px; + position: absolute; + background: #f5f5f5; + border: 1px solid #979797; + box-shadow: 2px 2px 2px #999999; +} +.vakata-context ul { + list-style: none; + left: 100%; + margin-top: -2.7em; + margin-left: -4px; +} +.vakata-context .vakata-context-right ul { + left: auto; + right: 100%; + margin-left: auto; + margin-right: -4px; +} +.vakata-context li { + list-style: none; +} +.vakata-context li > a { + display: block; + padding: 0 2em 0 2em; + text-decoration: none; + width: auto; + color: black; + white-space: nowrap; + line-height: 2.4em; + text-shadow: 1px 1px 0 white; + border-radius: 1px; +} +.vakata-context li > a:hover { + position: relative; + background-color: #e8eff7; + box-shadow: 0 0 2px #0a6aa1; +} +.vakata-context li > a.vakata-context-parent { + background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw=="); + background-position: right center; + background-repeat: no-repeat; +} +.vakata-context li > a:focus { + outline: 0; +} +.vakata-context .vakata-context-hover > a { + position: relative; + background-color: #e8eff7; + box-shadow: 0 0 2px #0a6aa1; +} +.vakata-context .vakata-context-separator > a, +.vakata-context .vakata-context-separator > a:hover { + background: white; + border: 0; + border-top: 1px solid #e2e3e3; + height: 1px; + min-height: 1px; + max-height: 1px; + padding: 0; + margin: 0 0 0 2.4em; + border-left: 1px solid #e0e0e0; + text-shadow: 0 0 0 transparent; + box-shadow: 0 0 0 transparent; + border-radius: 0; +} +.vakata-context .vakata-contextmenu-disabled a, +.vakata-context .vakata-contextmenu-disabled a:hover { + color: silver; + background-color: transparent; + border: 0; + box-shadow: 0 0 0; +} +.vakata-context .vakata-contextmenu-disabled > a > i { + filter: grayscale(100%); +} +.vakata-context li > a > i { + text-decoration: none; + display: inline-block; + width: 2.4em; + height: 2.4em; + background: transparent; + margin: 0 0 0 -2em; + vertical-align: top; + text-align: center; + line-height: 2.4em; +} +.vakata-context li > a > i:empty { + width: 2.4em; + line-height: 2.4em; +} +.vakata-context li > a .vakata-contextmenu-sep { + display: inline-block; + width: 1px; + height: 2.4em; + background: white; + margin: 0 0.5em 0 0; + border-left: 1px solid #e2e3e3; +} +.vakata-context .vakata-contextmenu-shortcut { + font-size: 0.8em; + color: silver; + opacity: 0.5; + display: none; +} +.vakata-context-rtl ul { + left: auto; + right: 100%; + margin-left: auto; + margin-right: -4px; +} +.vakata-context-rtl li > a.vakata-context-parent { + background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7"); + background-position: left center; + background-repeat: no-repeat; +} +.vakata-context-rtl .vakata-context-separator > a { + margin: 0 2.4em 0 0; + border-left: 0; + border-right: 1px solid #e2e3e3; +} +.vakata-context-rtl .vakata-context-left ul { + right: auto; + left: 100%; + margin-left: -4px; + margin-right: auto; +} +.vakata-context-rtl li > a > i { + margin: 0 -2em 0 0; +} +.vakata-context-rtl li > a .vakata-contextmenu-sep { + margin: 0 0 0 0.5em; + border-left-color: white; + background: #e2e3e3; +} +#jstree-marker { + position: absolute; + top: 0; + left: 0; + margin: -5px 0 0 0; + padding: 0; + border-right: 0; + border-top: 5px solid transparent; + border-bottom: 5px solid transparent; + border-left: 5px solid; + width: 0; + height: 0; + font-size: 0; + line-height: 0; +} +#jstree-dnd { + line-height: 16px; + margin: 0; + padding: 4px; +} +#jstree-dnd .jstree-icon, +#jstree-dnd .jstree-copy { + display: inline-block; + text-decoration: none; + margin: 0 2px 0 0; + padding: 0; + width: 16px; + height: 16px; +} +#jstree-dnd .jstree-ok { + background: green; +} +#jstree-dnd .jstree-er { + background: red; +} +#jstree-dnd .jstree-copy { + margin: 0 2px 0 2px; +} +.jstree-default-dark .jstree-node, +.jstree-default-dark .jstree-icon { + background-repeat: no-repeat; + background-color: transparent; +} +.jstree-default-dark .jstree-anchor, +.jstree-default-dark .jstree-animated, +.jstree-default-dark .jstree-wholerow { + transition: background-color 0.15s, box-shadow 0.15s; +} +.jstree-default-dark .jstree-hovered { + background: #555; + border-radius: 2px; + box-shadow: inset 0 0 1px #555; +} +.jstree-default-dark .jstree-context { + background: #555; + border-radius: 2px; + box-shadow: inset 0 0 1px #555; +} +.jstree-default-dark .jstree-clicked { + background: #5fa2db; + border-radius: 2px; + box-shadow: inset 0 0 1px #666666; +} +.jstree-default-dark .jstree-no-icons .jstree-anchor > .jstree-themeicon { + display: none; +} +.jstree-default-dark .jstree-disabled { + background: transparent; + color: #666666; +} +.jstree-default-dark .jstree-disabled.jstree-hovered { + background: transparent; + box-shadow: none; +} +.jstree-default-dark .jstree-disabled.jstree-clicked { + background: #333333; +} +.jstree-default-dark .jstree-disabled > .jstree-icon { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default-dark .jstree-search { + font-style: italic; + color: #ffffff; + font-weight: bold; +} +.jstree-default-dark .jstree-no-checkboxes .jstree-checkbox { + display: none !important; +} +.jstree-default-dark.jstree-checkbox-no-clicked .jstree-clicked { + background: transparent; + box-shadow: none; +} +.jstree-default-dark.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered { + background: #555; +} +.jstree-default-dark.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked { + background: transparent; +} +.jstree-default-dark.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered { + background: #555; +} +.jstree-default-dark > .jstree-striped { + min-width: 100%; + display: inline-block; + background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat; +} +.jstree-default-dark > .jstree-wholerow-ul .jstree-hovered, +.jstree-default-dark > .jstree-wholerow-ul .jstree-clicked { + background: transparent; + box-shadow: none; + border-radius: 0; +} +.jstree-default-dark .jstree-wholerow { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +.jstree-default-dark .jstree-wholerow-hovered { + background: #555; +} +.jstree-default-dark .jstree-wholerow-clicked { + background: #5fa2db; + background: -webkit-linear-gradient(top, #5fa2db 0%, #5fa2db 100%); + background: linear-gradient(to bottom, #5fa2db 0%, #5fa2db 100%); +} +.jstree-default-dark .jstree-node { + min-height: 24px; + line-height: 24px; + margin-left: 24px; + min-width: 24px; +} +.jstree-default-dark .jstree-anchor { + line-height: 24px; + height: 24px; +} +.jstree-default-dark .jstree-icon { + width: 24px; + height: 24px; + line-height: 24px; +} +.jstree-default-dark .jstree-icon:empty { + width: 24px; + height: 24px; + line-height: 24px; +} +.jstree-default-dark.jstree-rtl .jstree-node { + margin-right: 24px; +} +.jstree-default-dark .jstree-wholerow { + height: 24px; +} +.jstree-default-dark .jstree-node, +.jstree-default-dark .jstree-icon { + background-image: url("32px.png"); +} +.jstree-default-dark .jstree-node { + background-position: -292px -4px; + background-repeat: repeat-y; +} +.jstree-default-dark .jstree-last { + background: transparent; +} +.jstree-default-dark .jstree-open > .jstree-ocl { + background-position: -132px -4px; +} +.jstree-default-dark .jstree-closed > .jstree-ocl { + background-position: -100px -4px; +} +.jstree-default-dark .jstree-leaf > .jstree-ocl { + background-position: -68px -4px; +} +.jstree-default-dark .jstree-themeicon { + background-position: -260px -4px; +} +.jstree-default-dark > .jstree-no-dots .jstree-node, +.jstree-default-dark > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-dark > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -36px -4px; +} +.jstree-default-dark > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -4px -4px; +} +.jstree-default-dark .jstree-disabled { + background: transparent; +} +.jstree-default-dark .jstree-disabled.jstree-hovered { + background: transparent; +} +.jstree-default-dark .jstree-disabled.jstree-clicked { + background: #efefef; +} +.jstree-default-dark .jstree-checkbox { + background-position: -164px -4px; +} +.jstree-default-dark .jstree-checkbox:hover { + background-position: -164px -36px; +} +.jstree-default-dark.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, +.jstree-default-dark .jstree-checked > .jstree-checkbox { + background-position: -228px -4px; +} +.jstree-default-dark.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, +.jstree-default-dark .jstree-checked > .jstree-checkbox:hover { + background-position: -228px -36px; +} +.jstree-default-dark .jstree-anchor > .jstree-undetermined { + background-position: -196px -4px; +} +.jstree-default-dark .jstree-anchor > .jstree-undetermined:hover { + background-position: -196px -36px; +} +.jstree-default-dark .jstree-checkbox-disabled { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default-dark > .jstree-striped { + background-size: auto 48px; +} +.jstree-default-dark.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); + background-position: 100% 1px; + background-repeat: repeat-y; +} +.jstree-default-dark.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-dark.jstree-rtl .jstree-open > .jstree-ocl { + background-position: -132px -36px; +} +.jstree-default-dark.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -100px -36px; +} +.jstree-default-dark.jstree-rtl .jstree-leaf > .jstree-ocl { + background-position: -68px -36px; +} +.jstree-default-dark.jstree-rtl > .jstree-no-dots .jstree-node, +.jstree-default-dark.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-dark.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -36px -36px; +} +.jstree-default-dark.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -4px -36px; +} +.jstree-default-dark .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; +} +.jstree-default-dark > .jstree-container-ul .jstree-loading > .jstree-ocl { + background: url("throbber.gif") center center no-repeat; +} +.jstree-default-dark .jstree-file { + background: url("32px.png") -100px -68px no-repeat; +} +.jstree-default-dark .jstree-folder { + background: url("32px.png") -260px -4px no-repeat; +} +.jstree-default-dark > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; +} +#jstree-dnd.jstree-default-dark { + line-height: 24px; + padding: 0 4px; +} +#jstree-dnd.jstree-default-dark .jstree-ok, +#jstree-dnd.jstree-default-dark .jstree-er { + background-image: url("32px.png"); + background-repeat: no-repeat; + background-color: transparent; +} +#jstree-dnd.jstree-default-dark i { + background: transparent; + width: 24px; + height: 24px; + line-height: 24px; +} +#jstree-dnd.jstree-default-dark .jstree-ok { + background-position: -4px -68px; +} +#jstree-dnd.jstree-default-dark .jstree-er { + background-position: -36px -68px; +} +.jstree-default-dark .jstree-ellipsis { + overflow: hidden; +} +.jstree-default-dark .jstree-ellipsis .jstree-anchor { + width: calc(100% - 29px); + text-overflow: ellipsis; + overflow: hidden; +} +.jstree-default-dark.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); +} +.jstree-default-dark.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-dark-small .jstree-node { + min-height: 18px; + line-height: 18px; + margin-left: 18px; + min-width: 18px; +} +.jstree-default-dark-small .jstree-anchor { + line-height: 18px; + height: 18px; +} +.jstree-default-dark-small .jstree-icon { + width: 18px; + height: 18px; + line-height: 18px; +} +.jstree-default-dark-small .jstree-icon:empty { + width: 18px; + height: 18px; + line-height: 18px; +} +.jstree-default-dark-small.jstree-rtl .jstree-node { + margin-right: 18px; +} +.jstree-default-dark-small .jstree-wholerow { + height: 18px; +} +.jstree-default-dark-small .jstree-node, +.jstree-default-dark-small .jstree-icon { + background-image: url("32px.png"); +} +.jstree-default-dark-small .jstree-node { + background-position: -295px -7px; + background-repeat: repeat-y; +} +.jstree-default-dark-small .jstree-last { + background: transparent; +} +.jstree-default-dark-small .jstree-open > .jstree-ocl { + background-position: -135px -7px; +} +.jstree-default-dark-small .jstree-closed > .jstree-ocl { + background-position: -103px -7px; +} +.jstree-default-dark-small .jstree-leaf > .jstree-ocl { + background-position: -71px -7px; +} +.jstree-default-dark-small .jstree-themeicon { + background-position: -263px -7px; +} +.jstree-default-dark-small > .jstree-no-dots .jstree-node, +.jstree-default-dark-small > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-dark-small > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -39px -7px; +} +.jstree-default-dark-small > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -7px -7px; +} +.jstree-default-dark-small .jstree-disabled { + background: transparent; +} +.jstree-default-dark-small .jstree-disabled.jstree-hovered { + background: transparent; +} +.jstree-default-dark-small .jstree-disabled.jstree-clicked { + background: #efefef; +} +.jstree-default-dark-small .jstree-checkbox { + background-position: -167px -7px; +} +.jstree-default-dark-small .jstree-checkbox:hover { + background-position: -167px -39px; +} +.jstree-default-dark-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, +.jstree-default-dark-small .jstree-checked > .jstree-checkbox { + background-position: -231px -7px; +} +.jstree-default-dark-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, +.jstree-default-dark-small .jstree-checked > .jstree-checkbox:hover { + background-position: -231px -39px; +} +.jstree-default-dark-small .jstree-anchor > .jstree-undetermined { + background-position: -199px -7px; +} +.jstree-default-dark-small .jstree-anchor > .jstree-undetermined:hover { + background-position: -199px -39px; +} +.jstree-default-dark-small .jstree-checkbox-disabled { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default-dark-small > .jstree-striped { + background-size: auto 36px; +} +.jstree-default-dark-small.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); + background-position: 100% 1px; + background-repeat: repeat-y; +} +.jstree-default-dark-small.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-dark-small.jstree-rtl .jstree-open > .jstree-ocl { + background-position: -135px -39px; +} +.jstree-default-dark-small.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -103px -39px; +} +.jstree-default-dark-small.jstree-rtl .jstree-leaf > .jstree-ocl { + background-position: -71px -39px; +} +.jstree-default-dark-small.jstree-rtl > .jstree-no-dots .jstree-node, +.jstree-default-dark-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-dark-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -39px -39px; +} +.jstree-default-dark-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -7px -39px; +} +.jstree-default-dark-small .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; +} +.jstree-default-dark-small > .jstree-container-ul .jstree-loading > .jstree-ocl { + background: url("throbber.gif") center center no-repeat; +} +.jstree-default-dark-small .jstree-file { + background: url("32px.png") -103px -71px no-repeat; +} +.jstree-default-dark-small .jstree-folder { + background: url("32px.png") -263px -7px no-repeat; +} +.jstree-default-dark-small > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; +} +#jstree-dnd.jstree-default-dark-small { + line-height: 18px; + padding: 0 4px; +} +#jstree-dnd.jstree-default-dark-small .jstree-ok, +#jstree-dnd.jstree-default-dark-small .jstree-er { + background-image: url("32px.png"); + background-repeat: no-repeat; + background-color: transparent; +} +#jstree-dnd.jstree-default-dark-small i { + background: transparent; + width: 18px; + height: 18px; + line-height: 18px; +} +#jstree-dnd.jstree-default-dark-small .jstree-ok { + background-position: -7px -71px; +} +#jstree-dnd.jstree-default-dark-small .jstree-er { + background-position: -39px -71px; +} +.jstree-default-dark-small .jstree-ellipsis { + overflow: hidden; +} +.jstree-default-dark-small .jstree-ellipsis .jstree-anchor { + width: calc(100% - 23px); + text-overflow: ellipsis; + overflow: hidden; +} +.jstree-default-dark-small.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg=="); +} +.jstree-default-dark-small.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-dark-large .jstree-node { + min-height: 32px; + line-height: 32px; + margin-left: 32px; + min-width: 32px; +} +.jstree-default-dark-large .jstree-anchor { + line-height: 32px; + height: 32px; +} +.jstree-default-dark-large .jstree-icon { + width: 32px; + height: 32px; + line-height: 32px; +} +.jstree-default-dark-large .jstree-icon:empty { + width: 32px; + height: 32px; + line-height: 32px; +} +.jstree-default-dark-large.jstree-rtl .jstree-node { + margin-right: 32px; +} +.jstree-default-dark-large .jstree-wholerow { + height: 32px; +} +.jstree-default-dark-large .jstree-node, +.jstree-default-dark-large .jstree-icon { + background-image: url("32px.png"); +} +.jstree-default-dark-large .jstree-node { + background-position: -288px 0px; + background-repeat: repeat-y; +} +.jstree-default-dark-large .jstree-last { + background: transparent; +} +.jstree-default-dark-large .jstree-open > .jstree-ocl { + background-position: -128px 0px; +} +.jstree-default-dark-large .jstree-closed > .jstree-ocl { + background-position: -96px 0px; +} +.jstree-default-dark-large .jstree-leaf > .jstree-ocl { + background-position: -64px 0px; +} +.jstree-default-dark-large .jstree-themeicon { + background-position: -256px 0px; +} +.jstree-default-dark-large > .jstree-no-dots .jstree-node, +.jstree-default-dark-large > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-dark-large > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -32px 0px; +} +.jstree-default-dark-large > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: 0px 0px; +} +.jstree-default-dark-large .jstree-disabled { + background: transparent; +} +.jstree-default-dark-large .jstree-disabled.jstree-hovered { + background: transparent; +} +.jstree-default-dark-large .jstree-disabled.jstree-clicked { + background: #efefef; +} +.jstree-default-dark-large .jstree-checkbox { + background-position: -160px 0px; +} +.jstree-default-dark-large .jstree-checkbox:hover { + background-position: -160px -32px; +} +.jstree-default-dark-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, +.jstree-default-dark-large .jstree-checked > .jstree-checkbox { + background-position: -224px 0px; +} +.jstree-default-dark-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, +.jstree-default-dark-large .jstree-checked > .jstree-checkbox:hover { + background-position: -224px -32px; +} +.jstree-default-dark-large .jstree-anchor > .jstree-undetermined { + background-position: -192px 0px; +} +.jstree-default-dark-large .jstree-anchor > .jstree-undetermined:hover { + background-position: -192px -32px; +} +.jstree-default-dark-large .jstree-checkbox-disabled { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default-dark-large > .jstree-striped { + background-size: auto 64px; +} +.jstree-default-dark-large.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); + background-position: 100% 1px; + background-repeat: repeat-y; +} +.jstree-default-dark-large.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-dark-large.jstree-rtl .jstree-open > .jstree-ocl { + background-position: -128px -32px; +} +.jstree-default-dark-large.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -96px -32px; +} +.jstree-default-dark-large.jstree-rtl .jstree-leaf > .jstree-ocl { + background-position: -64px -32px; +} +.jstree-default-dark-large.jstree-rtl > .jstree-no-dots .jstree-node, +.jstree-default-dark-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-dark-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -32px -32px; +} +.jstree-default-dark-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: 0px -32px; +} +.jstree-default-dark-large .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; +} +.jstree-default-dark-large > .jstree-container-ul .jstree-loading > .jstree-ocl { + background: url("throbber.gif") center center no-repeat; +} +.jstree-default-dark-large .jstree-file { + background: url("32px.png") -96px -64px no-repeat; +} +.jstree-default-dark-large .jstree-folder { + background: url("32px.png") -256px 0px no-repeat; +} +.jstree-default-dark-large > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; +} +#jstree-dnd.jstree-default-dark-large { + line-height: 32px; + padding: 0 4px; +} +#jstree-dnd.jstree-default-dark-large .jstree-ok, +#jstree-dnd.jstree-default-dark-large .jstree-er { + background-image: url("32px.png"); + background-repeat: no-repeat; + background-color: transparent; +} +#jstree-dnd.jstree-default-dark-large i { + background: transparent; + width: 32px; + height: 32px; + line-height: 32px; +} +#jstree-dnd.jstree-default-dark-large .jstree-ok { + background-position: 0px -64px; +} +#jstree-dnd.jstree-default-dark-large .jstree-er { + background-position: -32px -64px; +} +.jstree-default-dark-large .jstree-ellipsis { + overflow: hidden; +} +.jstree-default-dark-large .jstree-ellipsis .jstree-anchor { + width: calc(100% - 37px); + text-overflow: ellipsis; + overflow: hidden; +} +.jstree-default-dark-large.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg=="); +} +.jstree-default-dark-large.jstree-rtl .jstree-last { + background: transparent; +} +@media (max-width: 768px) { + #jstree-dnd.jstree-dnd-responsive { + line-height: 40px; + font-weight: bold; + font-size: 1.1em; + text-shadow: 1px 1px white; + } + #jstree-dnd.jstree-dnd-responsive > i { + background: transparent; + width: 40px; + height: 40px; + } + #jstree-dnd.jstree-dnd-responsive > .jstree-ok { + background-image: url("40px.png"); + background-position: 0 -200px; + background-size: 120px 240px; + } + #jstree-dnd.jstree-dnd-responsive > .jstree-er { + background-image: url("40px.png"); + background-position: -40px -200px; + background-size: 120px 240px; + } + #jstree-marker.jstree-dnd-responsive { + border-left-width: 10px; + border-top-width: 10px; + border-bottom-width: 10px; + margin-top: -10px; + } +} +@media (max-width: 768px) { + .jstree-default-dark-responsive { + /* + .jstree-open > .jstree-ocl, + .jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; } + */ + } + .jstree-default-dark-responsive .jstree-icon { + background-image: url("40px.png"); + } + .jstree-default-dark-responsive .jstree-node, + .jstree-default-dark-responsive .jstree-leaf > .jstree-ocl { + background: transparent; + } + .jstree-default-dark-responsive .jstree-node { + min-height: 40px; + line-height: 40px; + margin-left: 40px; + min-width: 40px; + white-space: nowrap; + } + .jstree-default-dark-responsive .jstree-anchor { + line-height: 40px; + height: 40px; + } + .jstree-default-dark-responsive .jstree-icon, + .jstree-default-dark-responsive .jstree-icon:empty { + width: 40px; + height: 40px; + line-height: 40px; + } + .jstree-default-dark-responsive > .jstree-container-ul > .jstree-node { + margin-left: 0; + } + .jstree-default-dark-responsive.jstree-rtl .jstree-node { + margin-left: 0; + margin-right: 40px; + background: transparent; + } + .jstree-default-dark-responsive.jstree-rtl .jstree-container-ul > .jstree-node { + margin-right: 0; + } + .jstree-default-dark-responsive .jstree-ocl, + .jstree-default-dark-responsive .jstree-themeicon, + .jstree-default-dark-responsive .jstree-checkbox { + background-size: 120px 240px; + } + .jstree-default-dark-responsive .jstree-leaf > .jstree-ocl, + .jstree-default-dark-responsive.jstree-rtl .jstree-leaf > .jstree-ocl { + background: transparent; + } + .jstree-default-dark-responsive .jstree-open > .jstree-ocl { + background-position: 0 0 !important; + } + .jstree-default-dark-responsive .jstree-closed > .jstree-ocl { + background-position: 0 -40px !important; + } + .jstree-default-dark-responsive.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -40px 0 !important; + } + .jstree-default-dark-responsive .jstree-themeicon { + background-position: -40px -40px; + } + .jstree-default-dark-responsive .jstree-checkbox, + .jstree-default-dark-responsive .jstree-checkbox:hover { + background-position: -40px -80px; + } + .jstree-default-dark-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, + .jstree-default-dark-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, + .jstree-default-dark-responsive .jstree-checked > .jstree-checkbox, + .jstree-default-dark-responsive .jstree-checked > .jstree-checkbox:hover { + background-position: 0 -80px; + } + .jstree-default-dark-responsive .jstree-anchor > .jstree-undetermined, + .jstree-default-dark-responsive .jstree-anchor > .jstree-undetermined:hover { + background-position: 0 -120px; + } + .jstree-default-dark-responsive .jstree-anchor { + font-weight: bold; + font-size: 1.1em; + text-shadow: 1px 1px white; + } + .jstree-default-dark-responsive > .jstree-striped { + background: transparent; + } + .jstree-default-dark-responsive .jstree-wholerow { + border-top: 1px solid #666; + border-bottom: 1px solid #000; + background: #333333; + height: 40px; + } + .jstree-default-dark-responsive .jstree-wholerow-hovered { + background: #555; + } + .jstree-default-dark-responsive .jstree-wholerow-clicked { + background: #5fa2db; + } + .jstree-default-dark-responsive .jstree-children .jstree-last > .jstree-wholerow { + box-shadow: inset 0 -6px 3px -5px #111111; + } + .jstree-default-dark-responsive .jstree-children .jstree-open > .jstree-wholerow { + box-shadow: inset 0 6px 3px -5px #111111; + border-top: 0; + } + .jstree-default-dark-responsive .jstree-children .jstree-open + .jstree-open { + box-shadow: none; + } + .jstree-default-dark-responsive .jstree-node, + .jstree-default-dark-responsive .jstree-icon, + .jstree-default-dark-responsive .jstree-node > .jstree-ocl, + .jstree-default-dark-responsive .jstree-themeicon, + .jstree-default-dark-responsive .jstree-checkbox { + background-image: url("40px.png"); + background-size: 120px 240px; + } + .jstree-default-dark-responsive .jstree-node { + background-position: -80px 0; + background-repeat: repeat-y; + } + .jstree-default-dark-responsive .jstree-last { + background: transparent; + } + .jstree-default-dark-responsive .jstree-leaf > .jstree-ocl { + background-position: -40px -120px; + } + .jstree-default-dark-responsive .jstree-last > .jstree-ocl { + background-position: -40px -160px; + } + .jstree-default-dark-responsive .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; + } + .jstree-default-dark-responsive .jstree-file { + background: url("40px.png") 0 -160px no-repeat; + background-size: 120px 240px; + } + .jstree-default-dark-responsive .jstree-folder { + background: url("40px.png") -40px -40px no-repeat; + background-size: 120px 240px; + } + .jstree-default-dark-responsive > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; + } +} +.jstree-default-dark { + background: #333; +} +.jstree-default-dark .jstree-anchor { + color: #999; + text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5); +} +.jstree-default-dark .jstree-clicked, +.jstree-default-dark .jstree-checked { + color: white; +} +.jstree-default-dark .jstree-hovered { + color: white; +} +#jstree-marker.jstree-default-dark { + border-left-color: #999; + background: transparent; +} +.jstree-default-dark .jstree-anchor > .jstree-icon { + opacity: 0.75; +} +.jstree-default-dark .jstree-clicked > .jstree-icon, +.jstree-default-dark .jstree-hovered > .jstree-icon, +.jstree-default-dark .jstree-checked > .jstree-icon { + opacity: 1; +} +.jstree-default-dark.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); +} +.jstree-default-dark.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-dark-small.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg=="); +} +.jstree-default-dark-small.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-dark-large.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg=="); +} +.jstree-default-dark-large.jstree-rtl .jstree-last { + background: transparent; +} diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/style.min.css b/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/style.min.css new file mode 100644 index 00000000..fb1d236f --- /dev/null +++ b/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/style.min.css @@ -0,0 +1 @@ +.jstree-node,.jstree-children,.jstree-container-ul{display:block;margin:0;padding:0;list-style-type:none;list-style-image:none}.jstree-node{white-space:nowrap}.jstree-anchor{display:inline-block;color:black;white-space:nowrap;padding:0 4px 0 1px;margin:0;vertical-align:top}.jstree-anchor:focus{outline:0}.jstree-anchor,.jstree-anchor:link,.jstree-anchor:visited,.jstree-anchor:hover,.jstree-anchor:active{text-decoration:none;color:inherit}.jstree-icon{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-icon:empty{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-ocl{cursor:pointer}.jstree-leaf>.jstree-ocl{cursor:default}.jstree .jstree-open>.jstree-children{display:block}.jstree .jstree-closed>.jstree-children,.jstree .jstree-leaf>.jstree-children{display:none}.jstree-anchor>.jstree-themeicon{margin-right:2px}.jstree-no-icons .jstree-themeicon,.jstree-anchor>.jstree-themeicon-hidden{display:none}.jstree-hidden,.jstree-node.jstree-hidden{display:none}.jstree-rtl .jstree-anchor{padding:0 1px 0 4px}.jstree-rtl .jstree-anchor>.jstree-themeicon{margin-left:2px;margin-right:0}.jstree-rtl .jstree-node{margin-left:0}.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-wholerow-ul{position:relative;display:inline-block;min-width:100%}.jstree-wholerow-ul .jstree-leaf>.jstree-ocl{cursor:pointer}.jstree-wholerow-ul .jstree-anchor,.jstree-wholerow-ul .jstree-icon{position:relative}.jstree-wholerow-ul .jstree-wholerow{width:100%;cursor:pointer;position:absolute;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jstree-contextmenu .jstree-anchor{-webkit-user-select:none;-webkit-touch-callout:none}.vakata-context{display:none}.vakata-context,.vakata-context ul{margin:0;padding:2px;position:absolute;background:#f5f5f5;border:1px solid #979797;box-shadow:2px 2px 2px #999999}.vakata-context ul{list-style:none;left:100%;margin-top:-2.7em;margin-left:-4px}.vakata-context .vakata-context-right ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context li{list-style:none}.vakata-context li>a{display:block;padding:0 2em 0 2em;text-decoration:none;width:auto;color:black;white-space:nowrap;line-height:2.4em;text-shadow:1px 1px 0 white;border-radius:1px}.vakata-context li>a:hover{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");background-position:right center;background-repeat:no-repeat}.vakata-context li>a:focus{outline:0}.vakata-context .vakata-context-hover>a{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context .vakata-context-separator>a,.vakata-context .vakata-context-separator>a:hover{background:white;border:0;border-top:1px solid #e2e3e3;height:1px;min-height:1px;max-height:1px;padding:0;margin:0 0 0 2.4em;border-left:1px solid #e0e0e0;text-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;border-radius:0}.vakata-context .vakata-contextmenu-disabled a,.vakata-context .vakata-contextmenu-disabled a:hover{color:silver;background-color:transparent;border:0;box-shadow:0 0 0}.vakata-context .vakata-contextmenu-disabled>a>i{filter:grayscale(100%)}.vakata-context li>a>i{text-decoration:none;display:inline-block;width:2.4em;height:2.4em;background:transparent;margin:0 0 0 -2em;vertical-align:top;text-align:center;line-height:2.4em}.vakata-context li>a>i:empty{width:2.4em;line-height:2.4em}.vakata-context li>a .vakata-contextmenu-sep{display:inline-block;width:1px;height:2.4em;background:white;margin:0 .5em 0 0;border-left:1px solid #e2e3e3}.vakata-context .vakata-contextmenu-shortcut{font-size:.8em;color:silver;opacity:.5;display:none}.vakata-context-rtl ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context-rtl li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");background-position:left center;background-repeat:no-repeat}.vakata-context-rtl .vakata-context-separator>a{margin:0 2.4em 0 0;border-left:0;border-right:1px solid #e2e3e3}.vakata-context-rtl .vakata-context-left ul{right:auto;left:100%;margin-left:-4px;margin-right:auto}.vakata-context-rtl li>a>i{margin:0 -2em 0 0}.vakata-context-rtl li>a .vakata-contextmenu-sep{margin:0 0 0 .5em;border-left-color:white;background:#e2e3e3}#jstree-marker{position:absolute;top:0;left:0;margin:-5px 0 0 0;padding:0;border-right:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid;width:0;height:0;font-size:0;line-height:0}#jstree-dnd{line-height:16px;margin:0;padding:4px}#jstree-dnd .jstree-icon,#jstree-dnd .jstree-copy{display:inline-block;text-decoration:none;margin:0 2px 0 0;padding:0;width:16px;height:16px}#jstree-dnd .jstree-ok{background:green}#jstree-dnd .jstree-er{background:red}#jstree-dnd .jstree-copy{margin:0 2px 0 2px}.jstree-default-dark .jstree-node,.jstree-default-dark .jstree-icon{background-repeat:no-repeat;background-color:transparent}.jstree-default-dark .jstree-anchor,.jstree-default-dark .jstree-animated,.jstree-default-dark .jstree-wholerow{transition:background-color .15s,box-shadow .15s}.jstree-default-dark .jstree-hovered{background:#555;border-radius:2px;box-shadow:inset 0 0 1px #555}.jstree-default-dark .jstree-context{background:#555;border-radius:2px;box-shadow:inset 0 0 1px #555}.jstree-default-dark .jstree-clicked{background:#5fa2db;border-radius:2px;box-shadow:inset 0 0 1px #666666}.jstree-default-dark .jstree-no-icons .jstree-anchor>.jstree-themeicon{display:none}.jstree-default-dark .jstree-disabled{background:transparent;color:#666666}.jstree-default-dark .jstree-disabled.jstree-hovered{background:transparent;box-shadow:none}.jstree-default-dark .jstree-disabled.jstree-clicked{background:#333333}.jstree-default-dark .jstree-disabled>.jstree-icon{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-dark .jstree-search{font-style:italic;color:#ffffff;font-weight:bold}.jstree-default-dark .jstree-no-checkboxes .jstree-checkbox{display:none !important}.jstree-default-dark.jstree-checkbox-no-clicked .jstree-clicked{background:transparent;box-shadow:none}.jstree-default-dark.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered{background:#555}.jstree-default-dark.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked{background:transparent}.jstree-default-dark.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered{background:#555}.jstree-default-dark>.jstree-striped{min-width:100%;display:inline-block;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat}.jstree-default-dark>.jstree-wholerow-ul .jstree-hovered,.jstree-default-dark>.jstree-wholerow-ul .jstree-clicked{background:transparent;box-shadow:none;border-radius:0}.jstree-default-dark .jstree-wholerow{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jstree-default-dark .jstree-wholerow-hovered{background:#555}.jstree-default-dark .jstree-wholerow-clicked{background:#5fa2db;background:-webkit-linear-gradient(top, #5fa2db 0, #5fa2db 100%);background:linear-gradient(to bottom, #5fa2db 0, #5fa2db 100%)}.jstree-default-dark .jstree-node{min-height:24px;line-height:24px;margin-left:24px;min-width:24px}.jstree-default-dark .jstree-anchor{line-height:24px;height:24px}.jstree-default-dark .jstree-icon{width:24px;height:24px;line-height:24px}.jstree-default-dark .jstree-icon:empty{width:24px;height:24px;line-height:24px}.jstree-default-dark.jstree-rtl .jstree-node{margin-right:24px}.jstree-default-dark .jstree-wholerow{height:24px}.jstree-default-dark .jstree-node,.jstree-default-dark .jstree-icon{background-image:url("32px.png")}.jstree-default-dark .jstree-node{background-position:-292px -4px;background-repeat:repeat-y}.jstree-default-dark .jstree-last{background:transparent}.jstree-default-dark .jstree-open>.jstree-ocl{background-position:-132px -4px}.jstree-default-dark .jstree-closed>.jstree-ocl{background-position:-100px -4px}.jstree-default-dark .jstree-leaf>.jstree-ocl{background-position:-68px -4px}.jstree-default-dark .jstree-themeicon{background-position:-260px -4px}.jstree-default-dark>.jstree-no-dots .jstree-node,.jstree-default-dark>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -4px}.jstree-default-dark>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -4px}.jstree-default-dark .jstree-disabled{background:transparent}.jstree-default-dark .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-dark .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-dark .jstree-checkbox{background-position:-164px -4px}.jstree-default-dark .jstree-checkbox:hover{background-position:-164px -36px}.jstree-default-dark.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-dark .jstree-checked>.jstree-checkbox{background-position:-228px -4px}.jstree-default-dark.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-dark .jstree-checked>.jstree-checkbox:hover{background-position:-228px -36px}.jstree-default-dark .jstree-anchor>.jstree-undetermined{background-position:-196px -4px}.jstree-default-dark .jstree-anchor>.jstree-undetermined:hover{background-position:-196px -36px}.jstree-default-dark .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-dark>.jstree-striped{background-size:auto 48px}.jstree-default-dark.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-dark.jstree-rtl .jstree-last{background:transparent}.jstree-default-dark.jstree-rtl .jstree-open>.jstree-ocl{background-position:-132px -36px}.jstree-default-dark.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-100px -36px}.jstree-default-dark.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-68px -36px}.jstree-default-dark.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-dark.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -36px}.jstree-default-dark.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -36px}.jstree-default-dark .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-dark>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-dark .jstree-file{background:url("32px.png") -100px -68px no-repeat}.jstree-default-dark .jstree-folder{background:url("32px.png") -260px -4px no-repeat}.jstree-default-dark>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-dark{line-height:24px;padding:0 4px}#jstree-dnd.jstree-default-dark .jstree-ok,#jstree-dnd.jstree-default-dark .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-dark i{background:transparent;width:24px;height:24px;line-height:24px}#jstree-dnd.jstree-default-dark .jstree-ok{background-position:-4px -68px}#jstree-dnd.jstree-default-dark .jstree-er{background-position:-36px -68px}.jstree-default-dark .jstree-ellipsis{overflow:hidden}.jstree-default-dark .jstree-ellipsis .jstree-anchor{width:calc(100% - 29px);text-overflow:ellipsis;overflow:hidden}.jstree-default-dark.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==")}.jstree-default-dark.jstree-rtl .jstree-last{background:transparent}.jstree-default-dark-small .jstree-node{min-height:18px;line-height:18px;margin-left:18px;min-width:18px}.jstree-default-dark-small .jstree-anchor{line-height:18px;height:18px}.jstree-default-dark-small .jstree-icon{width:18px;height:18px;line-height:18px}.jstree-default-dark-small .jstree-icon:empty{width:18px;height:18px;line-height:18px}.jstree-default-dark-small.jstree-rtl .jstree-node{margin-right:18px}.jstree-default-dark-small .jstree-wholerow{height:18px}.jstree-default-dark-small .jstree-node,.jstree-default-dark-small .jstree-icon{background-image:url("32px.png")}.jstree-default-dark-small .jstree-node{background-position:-295px -7px;background-repeat:repeat-y}.jstree-default-dark-small .jstree-last{background:transparent}.jstree-default-dark-small .jstree-open>.jstree-ocl{background-position:-135px -7px}.jstree-default-dark-small .jstree-closed>.jstree-ocl{background-position:-103px -7px}.jstree-default-dark-small .jstree-leaf>.jstree-ocl{background-position:-71px -7px}.jstree-default-dark-small .jstree-themeicon{background-position:-263px -7px}.jstree-default-dark-small>.jstree-no-dots .jstree-node,.jstree-default-dark-small>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark-small>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -7px}.jstree-default-dark-small>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -7px}.jstree-default-dark-small .jstree-disabled{background:transparent}.jstree-default-dark-small .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-dark-small .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-dark-small .jstree-checkbox{background-position:-167px -7px}.jstree-default-dark-small .jstree-checkbox:hover{background-position:-167px -39px}.jstree-default-dark-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-dark-small .jstree-checked>.jstree-checkbox{background-position:-231px -7px}.jstree-default-dark-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-dark-small .jstree-checked>.jstree-checkbox:hover{background-position:-231px -39px}.jstree-default-dark-small .jstree-anchor>.jstree-undetermined{background-position:-199px -7px}.jstree-default-dark-small .jstree-anchor>.jstree-undetermined:hover{background-position:-199px -39px}.jstree-default-dark-small .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-dark-small>.jstree-striped{background-size:auto 36px}.jstree-default-dark-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-dark-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-dark-small.jstree-rtl .jstree-open>.jstree-ocl{background-position:-135px -39px}.jstree-default-dark-small.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-103px -39px}.jstree-default-dark-small.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-71px -39px}.jstree-default-dark-small.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-dark-small.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark-small.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -39px}.jstree-default-dark-small.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -39px}.jstree-default-dark-small .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-dark-small>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-dark-small .jstree-file{background:url("32px.png") -103px -71px no-repeat}.jstree-default-dark-small .jstree-folder{background:url("32px.png") -263px -7px no-repeat}.jstree-default-dark-small>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-dark-small{line-height:18px;padding:0 4px}#jstree-dnd.jstree-default-dark-small .jstree-ok,#jstree-dnd.jstree-default-dark-small .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-dark-small i{background:transparent;width:18px;height:18px;line-height:18px}#jstree-dnd.jstree-default-dark-small .jstree-ok{background-position:-7px -71px}#jstree-dnd.jstree-default-dark-small .jstree-er{background-position:-39px -71px}.jstree-default-dark-small .jstree-ellipsis{overflow:hidden}.jstree-default-dark-small .jstree-ellipsis .jstree-anchor{width:calc(100% - 23px);text-overflow:ellipsis;overflow:hidden}.jstree-default-dark-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==")}.jstree-default-dark-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-dark-large .jstree-node{min-height:32px;line-height:32px;margin-left:32px;min-width:32px}.jstree-default-dark-large .jstree-anchor{line-height:32px;height:32px}.jstree-default-dark-large .jstree-icon{width:32px;height:32px;line-height:32px}.jstree-default-dark-large .jstree-icon:empty{width:32px;height:32px;line-height:32px}.jstree-default-dark-large.jstree-rtl .jstree-node{margin-right:32px}.jstree-default-dark-large .jstree-wholerow{height:32px}.jstree-default-dark-large .jstree-node,.jstree-default-dark-large .jstree-icon{background-image:url("32px.png")}.jstree-default-dark-large .jstree-node{background-position:-288px 0;background-repeat:repeat-y}.jstree-default-dark-large .jstree-last{background:transparent}.jstree-default-dark-large .jstree-open>.jstree-ocl{background-position:-128px 0}.jstree-default-dark-large .jstree-closed>.jstree-ocl{background-position:-96px 0}.jstree-default-dark-large .jstree-leaf>.jstree-ocl{background-position:-64px 0}.jstree-default-dark-large .jstree-themeicon{background-position:-256px 0}.jstree-default-dark-large>.jstree-no-dots .jstree-node,.jstree-default-dark-large>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark-large>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px 0}.jstree-default-dark-large>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 0}.jstree-default-dark-large .jstree-disabled{background:transparent}.jstree-default-dark-large .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-dark-large .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-dark-large .jstree-checkbox{background-position:-160px 0}.jstree-default-dark-large .jstree-checkbox:hover{background-position:-160px -32px}.jstree-default-dark-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-dark-large .jstree-checked>.jstree-checkbox{background-position:-224px 0}.jstree-default-dark-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-dark-large .jstree-checked>.jstree-checkbox:hover{background-position:-224px -32px}.jstree-default-dark-large .jstree-anchor>.jstree-undetermined{background-position:-192px 0}.jstree-default-dark-large .jstree-anchor>.jstree-undetermined:hover{background-position:-192px -32px}.jstree-default-dark-large .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-dark-large>.jstree-striped{background-size:auto 64px}.jstree-default-dark-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-dark-large.jstree-rtl .jstree-last{background:transparent}.jstree-default-dark-large.jstree-rtl .jstree-open>.jstree-ocl{background-position:-128px -32px}.jstree-default-dark-large.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-96px -32px}.jstree-default-dark-large.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-64px -32px}.jstree-default-dark-large.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-dark-large.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark-large.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px -32px}.jstree-default-dark-large.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 -32px}.jstree-default-dark-large .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-dark-large>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-dark-large .jstree-file{background:url("32px.png") -96px -64px no-repeat}.jstree-default-dark-large .jstree-folder{background:url("32px.png") -256px 0 no-repeat}.jstree-default-dark-large>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-dark-large{line-height:32px;padding:0 4px}#jstree-dnd.jstree-default-dark-large .jstree-ok,#jstree-dnd.jstree-default-dark-large .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-dark-large i{background:transparent;width:32px;height:32px;line-height:32px}#jstree-dnd.jstree-default-dark-large .jstree-ok{background-position:0 -64px}#jstree-dnd.jstree-default-dark-large .jstree-er{background-position:-32px -64px}.jstree-default-dark-large .jstree-ellipsis{overflow:hidden}.jstree-default-dark-large .jstree-ellipsis .jstree-anchor{width:calc(100% - 37px);text-overflow:ellipsis;overflow:hidden}.jstree-default-dark-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==")}.jstree-default-dark-large.jstree-rtl .jstree-last{background:transparent}@media (max-width:768px){#jstree-dnd.jstree-dnd-responsive{line-height:40px;font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}#jstree-dnd.jstree-dnd-responsive>i{background:transparent;width:40px;height:40px}#jstree-dnd.jstree-dnd-responsive>.jstree-ok{background-image:url("40px.png");background-position:0 -200px;background-size:120px 240px}#jstree-dnd.jstree-dnd-responsive>.jstree-er{background-image:url("40px.png");background-position:-40px -200px;background-size:120px 240px}#jstree-marker.jstree-dnd-responsive{border-left-width:10px;border-top-width:10px;border-bottom-width:10px;margin-top:-10px}}@media (max-width:768px){.jstree-default-dark-responsive .jstree-icon{background-image:url("40px.png")}.jstree-default-dark-responsive .jstree-node,.jstree-default-dark-responsive .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark-responsive .jstree-node{min-height:40px;line-height:40px;margin-left:40px;min-width:40px;white-space:nowrap}.jstree-default-dark-responsive .jstree-anchor{line-height:40px;height:40px}.jstree-default-dark-responsive .jstree-icon,.jstree-default-dark-responsive .jstree-icon:empty{width:40px;height:40px;line-height:40px}.jstree-default-dark-responsive>.jstree-container-ul>.jstree-node{margin-left:0}.jstree-default-dark-responsive.jstree-rtl .jstree-node{margin-left:0;margin-right:40px;background:transparent}.jstree-default-dark-responsive.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-default-dark-responsive .jstree-ocl,.jstree-default-dark-responsive .jstree-themeicon,.jstree-default-dark-responsive .jstree-checkbox{background-size:120px 240px}.jstree-default-dark-responsive .jstree-leaf>.jstree-ocl,.jstree-default-dark-responsive.jstree-rtl .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-dark-responsive .jstree-open>.jstree-ocl{background-position:0 0 !important}.jstree-default-dark-responsive .jstree-closed>.jstree-ocl{background-position:0 -40px !important}.jstree-default-dark-responsive.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-40px 0 !important}.jstree-default-dark-responsive .jstree-themeicon{background-position:-40px -40px}.jstree-default-dark-responsive .jstree-checkbox,.jstree-default-dark-responsive .jstree-checkbox:hover{background-position:-40px -80px}.jstree-default-dark-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-dark-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-dark-responsive .jstree-checked>.jstree-checkbox,.jstree-default-dark-responsive .jstree-checked>.jstree-checkbox:hover{background-position:0 -80px}.jstree-default-dark-responsive .jstree-anchor>.jstree-undetermined,.jstree-default-dark-responsive .jstree-anchor>.jstree-undetermined:hover{background-position:0 -120px}.jstree-default-dark-responsive .jstree-anchor{font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}.jstree-default-dark-responsive>.jstree-striped{background:transparent}.jstree-default-dark-responsive .jstree-wholerow{border-top:1px solid #666;border-bottom:1px solid #000;background:#333333;height:40px}.jstree-default-dark-responsive .jstree-wholerow-hovered{background:#555}.jstree-default-dark-responsive .jstree-wholerow-clicked{background:#5fa2db}.jstree-default-dark-responsive .jstree-children .jstree-last>.jstree-wholerow{box-shadow:inset 0 -6px 3px -5px #111111}.jstree-default-dark-responsive .jstree-children .jstree-open>.jstree-wholerow{box-shadow:inset 0 6px 3px -5px #111111;border-top:0}.jstree-default-dark-responsive .jstree-children .jstree-open+.jstree-open{box-shadow:none}.jstree-default-dark-responsive .jstree-node,.jstree-default-dark-responsive .jstree-icon,.jstree-default-dark-responsive .jstree-node>.jstree-ocl,.jstree-default-dark-responsive .jstree-themeicon,.jstree-default-dark-responsive .jstree-checkbox{background-image:url("40px.png");background-size:120px 240px}.jstree-default-dark-responsive .jstree-node{background-position:-80px 0;background-repeat:repeat-y}.jstree-default-dark-responsive .jstree-last{background:transparent}.jstree-default-dark-responsive .jstree-leaf>.jstree-ocl{background-position:-40px -120px}.jstree-default-dark-responsive .jstree-last>.jstree-ocl{background-position:-40px -160px}.jstree-default-dark-responsive .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-dark-responsive .jstree-file{background:url("40px.png") 0 -160px no-repeat;background-size:120px 240px}.jstree-default-dark-responsive .jstree-folder{background:url("40px.png") -40px -40px no-repeat;background-size:120px 240px}.jstree-default-dark-responsive>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}}.jstree-default-dark{background:#333}.jstree-default-dark .jstree-anchor{color:#999;text-shadow:1px 1px 0 rgba(0,0,0,0.5)}.jstree-default-dark .jstree-clicked,.jstree-default-dark .jstree-checked{color:white}.jstree-default-dark .jstree-hovered{color:white}#jstree-marker.jstree-default-dark{border-left-color:#999;background:transparent}.jstree-default-dark .jstree-anchor>.jstree-icon{opacity:.75}.jstree-default-dark .jstree-clicked>.jstree-icon,.jstree-default-dark .jstree-hovered>.jstree-icon,.jstree-default-dark .jstree-checked>.jstree-icon{opacity:1}.jstree-default-dark.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==")}.jstree-default-dark.jstree-rtl .jstree-last{background:transparent}.jstree-default-dark-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==")}.jstree-default-dark-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-dark-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAACZmZl+9SADAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==")}.jstree-default-dark-large.jstree-rtl .jstree-last{background:transparent} \ No newline at end of file diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/throbber.gif b/web/help/taseditor/vendors/jstree-3.3.10/themes/default-dark/throbber.gif new file mode 100644 index 0000000000000000000000000000000000000000..169062cda53296196d81c1e47816e40358d2523d GIT binary patch literal 1464 zcmZvceN0nV7>Ca-x8)Wpy+Fkag4|n5Efb_r&{j9n7J<@Wy@FyvG_6Bu)oDeY-6HOm z^3gJs3Jj_`bvlivkopWdo^HYA_f&J3A?gB1zKWaA-7|`uci_M55E_tX8YtZda?-Mx(K#qeCPT z5q|}$GPdNU%gBu6)j~fA06_d1kzTf2dw6#-epG*0hims}jr$I0i&yLSmmC1Z3z!}N z*dX3_(ie#WDQuYa*65ZW8E(5Y7Rs%ywc!;amUL1HW`Vy4lXCMS@OY%gaUqbvYFxZf zC5NMgDaToQarKDVeHMfzcx*p4#^&^?kLH(=spG8DcKV68xN^-OXW%df!d#cc;v69S zAa;SsgyS%5V+X%E1luf;A+p)WDVrCxI`OrFJ;_>B{0%NE*1Qm9nn@leW!NSY0KXCtvx1n6Hfojth$ zt3xV&07J*R>ZtsIa`&aCOxKN67(r++I~#bw08@2I*Jjv~xsONkxNib3yfT1`X1#Gs zzD;(lZHk1SM?w!$r}#@ZEOQ}v?1}Sm^&KML$!M#2BvV^f#MYj#p29HJ=2p@`l`(F# z6AxDioPin^357J@tF)EZ{U~Qvj7F|t_VT9_zV3g9E%G6YwFdbDGf=Np?obEC!6Va? z1YJPiS!$aiQHw#nbLl2?xAvLxH+w%!3Fj-KWZp7wQ(8Jp)+|wd5yh47RhC@j&`261 z!>7|LVS*NKUO?G9>irdQP7(Y(8)PG(7M`lt5PMT$6vGM7;Yp4k>u!bqBHzNZ zjOpOUVOIJ{Vc!5;`bOhFkh>_JGb5^Ski>S+cMOs7rm@pW-cN6h)O* za_$~c+|_=%JGib13*VPwJQM0t z(m(OO`1*$)FKz5ND>Cis98Nq~qm;Y`2Yhhr zKBvl?UNZD}fcQPY=9!V7WzkO$beCP`TLw*W1=rC)djBa*><=;1OE3Xam5_7DV2?6A zuhtw9RHWYLp9257^QybWIQ6VIJG#@zC84YC45mESiaZH!o83qi(rFXcaaSq(j-Owa z6CIkzqTzH?&sIi53vbMj7F6%rH6u#lLFP(4SVUU_nzw0O(G0%gHpQ*I+>3=mufOJE zafP$lxzy$Pke=Qav-?=?9H^LqhV&8ls=DoW(1KO5zW?mAaDb{Y(>Koc49sZgb+^uF qc@C8(Mp%rgx+mJC3dQo~8dbUO?Q85zP5Hs^+UpbJR`hQGVEx}cw(Vm8 literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default/32px.png b/web/help/taseditor/vendors/jstree-3.3.10/themes/default/32px.png new file mode 100644 index 0000000000000000000000000000000000000000..ca6af206777a87fb9d27dccf2184934065ceeae8 GIT binary patch literal 5660 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 literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default/40px.png b/web/help/taseditor/vendors/jstree-3.3.10/themes/default/40px.png new file mode 100644 index 0000000000000000000000000000000000000000..2a3fcb9dfacf4e82a4c3ac3a6cd1650af966fc29 GIT binary patch literal 2215 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 GnSTO{AtE3E literal 0 HcmV?d00001 diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default/style.css b/web/help/taseditor/vendors/jstree-3.3.10/themes/default/style.css new file mode 100644 index 00000000..0703168b --- /dev/null +++ b/web/help/taseditor/vendors/jstree-3.3.10/themes/default/style.css @@ -0,0 +1,1102 @@ +/* jsTree default theme */ +.jstree-node, +.jstree-children, +.jstree-container-ul { + display: block; + margin: 0; + padding: 0; + list-style-type: none; + list-style-image: none; +} +.jstree-node { + white-space: nowrap; +} +.jstree-anchor { + display: inline-block; + color: black; + white-space: nowrap; + padding: 0 4px 0 1px; + margin: 0; + vertical-align: top; +} +.jstree-anchor:focus { + outline: 0; +} +.jstree-anchor, +.jstree-anchor:link, +.jstree-anchor:visited, +.jstree-anchor:hover, +.jstree-anchor:active { + text-decoration: none; + color: inherit; +} +.jstree-icon { + display: inline-block; + text-decoration: none; + margin: 0; + padding: 0; + vertical-align: top; + text-align: center; +} +.jstree-icon:empty { + display: inline-block; + text-decoration: none; + margin: 0; + padding: 0; + vertical-align: top; + text-align: center; +} +.jstree-ocl { + cursor: pointer; +} +.jstree-leaf > .jstree-ocl { + cursor: default; +} +.jstree .jstree-open > .jstree-children { + display: block; +} +.jstree .jstree-closed > .jstree-children, +.jstree .jstree-leaf > .jstree-children { + display: none; +} +.jstree-anchor > .jstree-themeicon { + margin-right: 2px; +} +.jstree-no-icons .jstree-themeicon, +.jstree-anchor > .jstree-themeicon-hidden { + display: none; +} +.jstree-hidden, +.jstree-node.jstree-hidden { + display: none; +} +.jstree-rtl .jstree-anchor { + padding: 0 1px 0 4px; +} +.jstree-rtl .jstree-anchor > .jstree-themeicon { + margin-left: 2px; + margin-right: 0; +} +.jstree-rtl .jstree-node { + margin-left: 0; +} +.jstree-rtl .jstree-container-ul > .jstree-node { + margin-right: 0; +} +.jstree-wholerow-ul { + position: relative; + display: inline-block; + min-width: 100%; +} +.jstree-wholerow-ul .jstree-leaf > .jstree-ocl { + cursor: pointer; +} +.jstree-wholerow-ul .jstree-anchor, +.jstree-wholerow-ul .jstree-icon { + position: relative; +} +.jstree-wholerow-ul .jstree-wholerow { + width: 100%; + cursor: pointer; + position: absolute; + left: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.jstree-contextmenu .jstree-anchor { + -webkit-user-select: none; + /* disable selection/Copy of UIWebView */ + -webkit-touch-callout: none; + /* disable the IOS popup when long-press on a link */ +} +.vakata-context { + display: none; +} +.vakata-context, +.vakata-context ul { + margin: 0; + padding: 2px; + position: absolute; + background: #f5f5f5; + border: 1px solid #979797; + box-shadow: 2px 2px 2px #999999; +} +.vakata-context ul { + list-style: none; + left: 100%; + margin-top: -2.7em; + margin-left: -4px; +} +.vakata-context .vakata-context-right ul { + left: auto; + right: 100%; + margin-left: auto; + margin-right: -4px; +} +.vakata-context li { + list-style: none; +} +.vakata-context li > a { + display: block; + padding: 0 2em 0 2em; + text-decoration: none; + width: auto; + color: black; + white-space: nowrap; + line-height: 2.4em; + text-shadow: 1px 1px 0 white; + border-radius: 1px; +} +.vakata-context li > a:hover { + position: relative; + background-color: #e8eff7; + box-shadow: 0 0 2px #0a6aa1; +} +.vakata-context li > a.vakata-context-parent { + background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw=="); + background-position: right center; + background-repeat: no-repeat; +} +.vakata-context li > a:focus { + outline: 0; +} +.vakata-context .vakata-context-hover > a { + position: relative; + background-color: #e8eff7; + box-shadow: 0 0 2px #0a6aa1; +} +.vakata-context .vakata-context-separator > a, +.vakata-context .vakata-context-separator > a:hover { + background: white; + border: 0; + border-top: 1px solid #e2e3e3; + height: 1px; + min-height: 1px; + max-height: 1px; + padding: 0; + margin: 0 0 0 2.4em; + border-left: 1px solid #e0e0e0; + text-shadow: 0 0 0 transparent; + box-shadow: 0 0 0 transparent; + border-radius: 0; +} +.vakata-context .vakata-contextmenu-disabled a, +.vakata-context .vakata-contextmenu-disabled a:hover { + color: silver; + background-color: transparent; + border: 0; + box-shadow: 0 0 0; +} +.vakata-context .vakata-contextmenu-disabled > a > i { + filter: grayscale(100%); +} +.vakata-context li > a > i { + text-decoration: none; + display: inline-block; + width: 2.4em; + height: 2.4em; + background: transparent; + margin: 0 0 0 -2em; + vertical-align: top; + text-align: center; + line-height: 2.4em; +} +.vakata-context li > a > i:empty { + width: 2.4em; + line-height: 2.4em; +} +.vakata-context li > a .vakata-contextmenu-sep { + display: inline-block; + width: 1px; + height: 2.4em; + background: white; + margin: 0 0.5em 0 0; + border-left: 1px solid #e2e3e3; +} +.vakata-context .vakata-contextmenu-shortcut { + font-size: 0.8em; + color: silver; + opacity: 0.5; + display: none; +} +.vakata-context-rtl ul { + left: auto; + right: 100%; + margin-left: auto; + margin-right: -4px; +} +.vakata-context-rtl li > a.vakata-context-parent { + background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7"); + background-position: left center; + background-repeat: no-repeat; +} +.vakata-context-rtl .vakata-context-separator > a { + margin: 0 2.4em 0 0; + border-left: 0; + border-right: 1px solid #e2e3e3; +} +.vakata-context-rtl .vakata-context-left ul { + right: auto; + left: 100%; + margin-left: -4px; + margin-right: auto; +} +.vakata-context-rtl li > a > i { + margin: 0 -2em 0 0; +} +.vakata-context-rtl li > a .vakata-contextmenu-sep { + margin: 0 0 0 0.5em; + border-left-color: white; + background: #e2e3e3; +} +#jstree-marker { + position: absolute; + top: 0; + left: 0; + margin: -5px 0 0 0; + padding: 0; + border-right: 0; + border-top: 5px solid transparent; + border-bottom: 5px solid transparent; + border-left: 5px solid; + width: 0; + height: 0; + font-size: 0; + line-height: 0; +} +#jstree-dnd { + line-height: 16px; + margin: 0; + padding: 4px; +} +#jstree-dnd .jstree-icon, +#jstree-dnd .jstree-copy { + display: inline-block; + text-decoration: none; + margin: 0 2px 0 0; + padding: 0; + width: 16px; + height: 16px; +} +#jstree-dnd .jstree-ok { + background: green; +} +#jstree-dnd .jstree-er { + background: red; +} +#jstree-dnd .jstree-copy { + margin: 0 2px 0 2px; +} +.jstree-default .jstree-node, +.jstree-default .jstree-icon { + background-repeat: no-repeat; + background-color: transparent; +} +.jstree-default .jstree-anchor, +.jstree-default .jstree-animated, +.jstree-default .jstree-wholerow { + transition: background-color 0.15s, box-shadow 0.15s; +} +.jstree-default .jstree-hovered { + background: #e7f4f9; + border-radius: 2px; + box-shadow: inset 0 0 1px #cccccc; +} +.jstree-default .jstree-context { + background: #e7f4f9; + border-radius: 2px; + box-shadow: inset 0 0 1px #cccccc; +} +.jstree-default .jstree-clicked { + background: #beebff; + border-radius: 2px; + box-shadow: inset 0 0 1px #999999; +} +.jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon { + display: none; +} +.jstree-default .jstree-disabled { + background: transparent; + color: #666666; +} +.jstree-default .jstree-disabled.jstree-hovered { + background: transparent; + box-shadow: none; +} +.jstree-default .jstree-disabled.jstree-clicked { + background: #efefef; +} +.jstree-default .jstree-disabled > .jstree-icon { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default .jstree-search { + font-style: italic; + color: #8b0000; + font-weight: bold; +} +.jstree-default .jstree-no-checkboxes .jstree-checkbox { + display: none !important; +} +.jstree-default.jstree-checkbox-no-clicked .jstree-clicked { + background: transparent; + box-shadow: none; +} +.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered { + background: #e7f4f9; +} +.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked { + background: transparent; +} +.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered { + background: #e7f4f9; +} +.jstree-default > .jstree-striped { + min-width: 100%; + display: inline-block; + background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat; +} +.jstree-default > .jstree-wholerow-ul .jstree-hovered, +.jstree-default > .jstree-wholerow-ul .jstree-clicked { + background: transparent; + box-shadow: none; + border-radius: 0; +} +.jstree-default .jstree-wholerow { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +.jstree-default .jstree-wholerow-hovered { + background: #e7f4f9; +} +.jstree-default .jstree-wholerow-clicked { + background: #beebff; + background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%); + background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%); +} +.jstree-default .jstree-node { + min-height: 24px; + line-height: 24px; + margin-left: 24px; + min-width: 24px; +} +.jstree-default .jstree-anchor { + line-height: 24px; + height: 24px; +} +.jstree-default .jstree-icon { + width: 24px; + height: 24px; + line-height: 24px; +} +.jstree-default .jstree-icon:empty { + width: 24px; + height: 24px; + line-height: 24px; +} +.jstree-default.jstree-rtl .jstree-node { + margin-right: 24px; +} +.jstree-default .jstree-wholerow { + height: 24px; +} +.jstree-default .jstree-node, +.jstree-default .jstree-icon { + background-image: url("32px.png"); +} +.jstree-default .jstree-node { + background-position: -292px -4px; + background-repeat: repeat-y; +} +.jstree-default .jstree-last { + background: transparent; +} +.jstree-default .jstree-open > .jstree-ocl { + background-position: -132px -4px; +} +.jstree-default .jstree-closed > .jstree-ocl { + background-position: -100px -4px; +} +.jstree-default .jstree-leaf > .jstree-ocl { + background-position: -68px -4px; +} +.jstree-default .jstree-themeicon { + background-position: -260px -4px; +} +.jstree-default > .jstree-no-dots .jstree-node, +.jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -36px -4px; +} +.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -4px -4px; +} +.jstree-default .jstree-disabled { + background: transparent; +} +.jstree-default .jstree-disabled.jstree-hovered { + background: transparent; +} +.jstree-default .jstree-disabled.jstree-clicked { + background: #efefef; +} +.jstree-default .jstree-checkbox { + background-position: -164px -4px; +} +.jstree-default .jstree-checkbox:hover { + background-position: -164px -36px; +} +.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, +.jstree-default .jstree-checked > .jstree-checkbox { + background-position: -228px -4px; +} +.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, +.jstree-default .jstree-checked > .jstree-checkbox:hover { + background-position: -228px -36px; +} +.jstree-default .jstree-anchor > .jstree-undetermined { + background-position: -196px -4px; +} +.jstree-default .jstree-anchor > .jstree-undetermined:hover { + background-position: -196px -36px; +} +.jstree-default .jstree-checkbox-disabled { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default > .jstree-striped { + background-size: auto 48px; +} +.jstree-default.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); + background-position: 100% 1px; + background-repeat: repeat-y; +} +.jstree-default.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default.jstree-rtl .jstree-open > .jstree-ocl { + background-position: -132px -36px; +} +.jstree-default.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -100px -36px; +} +.jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl { + background-position: -68px -36px; +} +.jstree-default.jstree-rtl > .jstree-no-dots .jstree-node, +.jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -36px -36px; +} +.jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -4px -36px; +} +.jstree-default .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; +} +.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl { + background: url("throbber.gif") center center no-repeat; +} +.jstree-default .jstree-file { + background: url("32px.png") -100px -68px no-repeat; +} +.jstree-default .jstree-folder { + background: url("32px.png") -260px -4px no-repeat; +} +.jstree-default > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; +} +#jstree-dnd.jstree-default { + line-height: 24px; + padding: 0 4px; +} +#jstree-dnd.jstree-default .jstree-ok, +#jstree-dnd.jstree-default .jstree-er { + background-image: url("32px.png"); + background-repeat: no-repeat; + background-color: transparent; +} +#jstree-dnd.jstree-default i { + background: transparent; + width: 24px; + height: 24px; + line-height: 24px; +} +#jstree-dnd.jstree-default .jstree-ok { + background-position: -4px -68px; +} +#jstree-dnd.jstree-default .jstree-er { + background-position: -36px -68px; +} +.jstree-default .jstree-ellipsis { + overflow: hidden; +} +.jstree-default .jstree-ellipsis .jstree-anchor { + width: calc(100% - 29px); + text-overflow: ellipsis; + overflow: hidden; +} +.jstree-default.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); +} +.jstree-default.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-small .jstree-node { + min-height: 18px; + line-height: 18px; + margin-left: 18px; + min-width: 18px; +} +.jstree-default-small .jstree-anchor { + line-height: 18px; + height: 18px; +} +.jstree-default-small .jstree-icon { + width: 18px; + height: 18px; + line-height: 18px; +} +.jstree-default-small .jstree-icon:empty { + width: 18px; + height: 18px; + line-height: 18px; +} +.jstree-default-small.jstree-rtl .jstree-node { + margin-right: 18px; +} +.jstree-default-small .jstree-wholerow { + height: 18px; +} +.jstree-default-small .jstree-node, +.jstree-default-small .jstree-icon { + background-image: url("32px.png"); +} +.jstree-default-small .jstree-node { + background-position: -295px -7px; + background-repeat: repeat-y; +} +.jstree-default-small .jstree-last { + background: transparent; +} +.jstree-default-small .jstree-open > .jstree-ocl { + background-position: -135px -7px; +} +.jstree-default-small .jstree-closed > .jstree-ocl { + background-position: -103px -7px; +} +.jstree-default-small .jstree-leaf > .jstree-ocl { + background-position: -71px -7px; +} +.jstree-default-small .jstree-themeicon { + background-position: -263px -7px; +} +.jstree-default-small > .jstree-no-dots .jstree-node, +.jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -39px -7px; +} +.jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -7px -7px; +} +.jstree-default-small .jstree-disabled { + background: transparent; +} +.jstree-default-small .jstree-disabled.jstree-hovered { + background: transparent; +} +.jstree-default-small .jstree-disabled.jstree-clicked { + background: #efefef; +} +.jstree-default-small .jstree-checkbox { + background-position: -167px -7px; +} +.jstree-default-small .jstree-checkbox:hover { + background-position: -167px -39px; +} +.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, +.jstree-default-small .jstree-checked > .jstree-checkbox { + background-position: -231px -7px; +} +.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, +.jstree-default-small .jstree-checked > .jstree-checkbox:hover { + background-position: -231px -39px; +} +.jstree-default-small .jstree-anchor > .jstree-undetermined { + background-position: -199px -7px; +} +.jstree-default-small .jstree-anchor > .jstree-undetermined:hover { + background-position: -199px -39px; +} +.jstree-default-small .jstree-checkbox-disabled { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default-small > .jstree-striped { + background-size: auto 36px; +} +.jstree-default-small.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); + background-position: 100% 1px; + background-repeat: repeat-y; +} +.jstree-default-small.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl { + background-position: -135px -39px; +} +.jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -103px -39px; +} +.jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl { + background-position: -71px -39px; +} +.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node, +.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -39px -39px; +} +.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: -7px -39px; +} +.jstree-default-small .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; +} +.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl { + background: url("throbber.gif") center center no-repeat; +} +.jstree-default-small .jstree-file { + background: url("32px.png") -103px -71px no-repeat; +} +.jstree-default-small .jstree-folder { + background: url("32px.png") -263px -7px no-repeat; +} +.jstree-default-small > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; +} +#jstree-dnd.jstree-default-small { + line-height: 18px; + padding: 0 4px; +} +#jstree-dnd.jstree-default-small .jstree-ok, +#jstree-dnd.jstree-default-small .jstree-er { + background-image: url("32px.png"); + background-repeat: no-repeat; + background-color: transparent; +} +#jstree-dnd.jstree-default-small i { + background: transparent; + width: 18px; + height: 18px; + line-height: 18px; +} +#jstree-dnd.jstree-default-small .jstree-ok { + background-position: -7px -71px; +} +#jstree-dnd.jstree-default-small .jstree-er { + background-position: -39px -71px; +} +.jstree-default-small .jstree-ellipsis { + overflow: hidden; +} +.jstree-default-small .jstree-ellipsis .jstree-anchor { + width: calc(100% - 23px); + text-overflow: ellipsis; + overflow: hidden; +} +.jstree-default-small.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg=="); +} +.jstree-default-small.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-large .jstree-node { + min-height: 32px; + line-height: 32px; + margin-left: 32px; + min-width: 32px; +} +.jstree-default-large .jstree-anchor { + line-height: 32px; + height: 32px; +} +.jstree-default-large .jstree-icon { + width: 32px; + height: 32px; + line-height: 32px; +} +.jstree-default-large .jstree-icon:empty { + width: 32px; + height: 32px; + line-height: 32px; +} +.jstree-default-large.jstree-rtl .jstree-node { + margin-right: 32px; +} +.jstree-default-large .jstree-wholerow { + height: 32px; +} +.jstree-default-large .jstree-node, +.jstree-default-large .jstree-icon { + background-image: url("32px.png"); +} +.jstree-default-large .jstree-node { + background-position: -288px 0px; + background-repeat: repeat-y; +} +.jstree-default-large .jstree-last { + background: transparent; +} +.jstree-default-large .jstree-open > .jstree-ocl { + background-position: -128px 0px; +} +.jstree-default-large .jstree-closed > .jstree-ocl { + background-position: -96px 0px; +} +.jstree-default-large .jstree-leaf > .jstree-ocl { + background-position: -64px 0px; +} +.jstree-default-large .jstree-themeicon { + background-position: -256px 0px; +} +.jstree-default-large > .jstree-no-dots .jstree-node, +.jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -32px 0px; +} +.jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: 0px 0px; +} +.jstree-default-large .jstree-disabled { + background: transparent; +} +.jstree-default-large .jstree-disabled.jstree-hovered { + background: transparent; +} +.jstree-default-large .jstree-disabled.jstree-clicked { + background: #efefef; +} +.jstree-default-large .jstree-checkbox { + background-position: -160px 0px; +} +.jstree-default-large .jstree-checkbox:hover { + background-position: -160px -32px; +} +.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, +.jstree-default-large .jstree-checked > .jstree-checkbox { + background-position: -224px 0px; +} +.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, +.jstree-default-large .jstree-checked > .jstree-checkbox:hover { + background-position: -224px -32px; +} +.jstree-default-large .jstree-anchor > .jstree-undetermined { + background-position: -192px 0px; +} +.jstree-default-large .jstree-anchor > .jstree-undetermined:hover { + background-position: -192px -32px; +} +.jstree-default-large .jstree-checkbox-disabled { + opacity: 0.8; + filter: url("data:image/svg+xml;utf8,#jstree-grayscale"); + /* Firefox 10+ */ + filter: gray; + /* IE6-9 */ + -webkit-filter: grayscale(100%); + /* Chrome 19+ & Safari 6+ */ +} +.jstree-default-large > .jstree-striped { + background-size: auto 64px; +} +.jstree-default-large.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg=="); + background-position: 100% 1px; + background-repeat: repeat-y; +} +.jstree-default-large.jstree-rtl .jstree-last { + background: transparent; +} +.jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl { + background-position: -128px -32px; +} +.jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -96px -32px; +} +.jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl { + background-position: -64px -32px; +} +.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node, +.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl { + background: transparent; +} +.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl { + background-position: -32px -32px; +} +.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl { + background-position: 0px -32px; +} +.jstree-default-large .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; +} +.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl { + background: url("throbber.gif") center center no-repeat; +} +.jstree-default-large .jstree-file { + background: url("32px.png") -96px -64px no-repeat; +} +.jstree-default-large .jstree-folder { + background: url("32px.png") -256px 0px no-repeat; +} +.jstree-default-large > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; +} +#jstree-dnd.jstree-default-large { + line-height: 32px; + padding: 0 4px; +} +#jstree-dnd.jstree-default-large .jstree-ok, +#jstree-dnd.jstree-default-large .jstree-er { + background-image: url("32px.png"); + background-repeat: no-repeat; + background-color: transparent; +} +#jstree-dnd.jstree-default-large i { + background: transparent; + width: 32px; + height: 32px; + line-height: 32px; +} +#jstree-dnd.jstree-default-large .jstree-ok { + background-position: 0px -64px; +} +#jstree-dnd.jstree-default-large .jstree-er { + background-position: -32px -64px; +} +.jstree-default-large .jstree-ellipsis { + overflow: hidden; +} +.jstree-default-large .jstree-ellipsis .jstree-anchor { + width: calc(100% - 37px); + text-overflow: ellipsis; + overflow: hidden; +} +.jstree-default-large.jstree-rtl .jstree-node { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg=="); +} +.jstree-default-large.jstree-rtl .jstree-last { + background: transparent; +} +@media (max-width: 768px) { + #jstree-dnd.jstree-dnd-responsive { + line-height: 40px; + font-weight: bold; + font-size: 1.1em; + text-shadow: 1px 1px white; + } + #jstree-dnd.jstree-dnd-responsive > i { + background: transparent; + width: 40px; + height: 40px; + } + #jstree-dnd.jstree-dnd-responsive > .jstree-ok { + background-image: url("40px.png"); + background-position: 0 -200px; + background-size: 120px 240px; + } + #jstree-dnd.jstree-dnd-responsive > .jstree-er { + background-image: url("40px.png"); + background-position: -40px -200px; + background-size: 120px 240px; + } + #jstree-marker.jstree-dnd-responsive { + border-left-width: 10px; + border-top-width: 10px; + border-bottom-width: 10px; + margin-top: -10px; + } +} +@media (max-width: 768px) { + .jstree-default-responsive { + /* + .jstree-open > .jstree-ocl, + .jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; } + */ + } + .jstree-default-responsive .jstree-icon { + background-image: url("40px.png"); + } + .jstree-default-responsive .jstree-node, + .jstree-default-responsive .jstree-leaf > .jstree-ocl { + background: transparent; + } + .jstree-default-responsive .jstree-node { + min-height: 40px; + line-height: 40px; + margin-left: 40px; + min-width: 40px; + white-space: nowrap; + } + .jstree-default-responsive .jstree-anchor { + line-height: 40px; + height: 40px; + } + .jstree-default-responsive .jstree-icon, + .jstree-default-responsive .jstree-icon:empty { + width: 40px; + height: 40px; + line-height: 40px; + } + .jstree-default-responsive > .jstree-container-ul > .jstree-node { + margin-left: 0; + } + .jstree-default-responsive.jstree-rtl .jstree-node { + margin-left: 0; + margin-right: 40px; + background: transparent; + } + .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node { + margin-right: 0; + } + .jstree-default-responsive .jstree-ocl, + .jstree-default-responsive .jstree-themeicon, + .jstree-default-responsive .jstree-checkbox { + background-size: 120px 240px; + } + .jstree-default-responsive .jstree-leaf > .jstree-ocl, + .jstree-default-responsive.jstree-rtl .jstree-leaf > .jstree-ocl { + background: transparent; + } + .jstree-default-responsive .jstree-open > .jstree-ocl { + background-position: 0 0 !important; + } + .jstree-default-responsive .jstree-closed > .jstree-ocl { + background-position: 0 -40px !important; + } + .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl { + background-position: -40px 0 !important; + } + .jstree-default-responsive .jstree-themeicon { + background-position: -40px -40px; + } + .jstree-default-responsive .jstree-checkbox, + .jstree-default-responsive .jstree-checkbox:hover { + background-position: -40px -80px; + } + .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox, + .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover, + .jstree-default-responsive .jstree-checked > .jstree-checkbox, + .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover { + background-position: 0 -80px; + } + .jstree-default-responsive .jstree-anchor > .jstree-undetermined, + .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover { + background-position: 0 -120px; + } + .jstree-default-responsive .jstree-anchor { + font-weight: bold; + font-size: 1.1em; + text-shadow: 1px 1px white; + } + .jstree-default-responsive > .jstree-striped { + background: transparent; + } + .jstree-default-responsive .jstree-wholerow { + border-top: 1px solid rgba(255, 255, 255, 0.7); + border-bottom: 1px solid rgba(64, 64, 64, 0.2); + background: #ebebeb; + height: 40px; + } + .jstree-default-responsive .jstree-wholerow-hovered { + background: #e7f4f9; + } + .jstree-default-responsive .jstree-wholerow-clicked { + background: #beebff; + } + .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow { + box-shadow: inset 0 -6px 3px -5px #666666; + } + .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow { + box-shadow: inset 0 6px 3px -5px #666666; + border-top: 0; + } + .jstree-default-responsive .jstree-children .jstree-open + .jstree-open { + box-shadow: none; + } + .jstree-default-responsive .jstree-node, + .jstree-default-responsive .jstree-icon, + .jstree-default-responsive .jstree-node > .jstree-ocl, + .jstree-default-responsive .jstree-themeicon, + .jstree-default-responsive .jstree-checkbox { + background-image: url("40px.png"); + background-size: 120px 240px; + } + .jstree-default-responsive .jstree-node { + background-position: -80px 0; + background-repeat: repeat-y; + } + .jstree-default-responsive .jstree-last { + background: transparent; + } + .jstree-default-responsive .jstree-leaf > .jstree-ocl { + background-position: -40px -120px; + } + .jstree-default-responsive .jstree-last > .jstree-ocl { + background-position: -40px -160px; + } + .jstree-default-responsive .jstree-themeicon-custom { + background-color: transparent; + background-image: none; + background-position: 0 0; + } + .jstree-default-responsive .jstree-file { + background: url("40px.png") 0 -160px no-repeat; + background-size: 120px 240px; + } + .jstree-default-responsive .jstree-folder { + background: url("40px.png") -40px -40px no-repeat; + background-size: 120px 240px; + } + .jstree-default-responsive > .jstree-container-ul > .jstree-node { + margin-left: 0; + margin-right: 0; + } +} diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default/style.min.css b/web/help/taseditor/vendors/jstree-3.3.10/themes/default/style.min.css new file mode 100644 index 00000000..93f80e91 --- /dev/null +++ b/web/help/taseditor/vendors/jstree-3.3.10/themes/default/style.min.css @@ -0,0 +1 @@ +.jstree-node,.jstree-children,.jstree-container-ul{display:block;margin:0;padding:0;list-style-type:none;list-style-image:none}.jstree-node{white-space:nowrap}.jstree-anchor{display:inline-block;color:black;white-space:nowrap;padding:0 4px 0 1px;margin:0;vertical-align:top}.jstree-anchor:focus{outline:0}.jstree-anchor,.jstree-anchor:link,.jstree-anchor:visited,.jstree-anchor:hover,.jstree-anchor:active{text-decoration:none;color:inherit}.jstree-icon{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-icon:empty{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-ocl{cursor:pointer}.jstree-leaf>.jstree-ocl{cursor:default}.jstree .jstree-open>.jstree-children{display:block}.jstree .jstree-closed>.jstree-children,.jstree .jstree-leaf>.jstree-children{display:none}.jstree-anchor>.jstree-themeicon{margin-right:2px}.jstree-no-icons .jstree-themeicon,.jstree-anchor>.jstree-themeicon-hidden{display:none}.jstree-hidden,.jstree-node.jstree-hidden{display:none}.jstree-rtl .jstree-anchor{padding:0 1px 0 4px}.jstree-rtl .jstree-anchor>.jstree-themeicon{margin-left:2px;margin-right:0}.jstree-rtl .jstree-node{margin-left:0}.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-wholerow-ul{position:relative;display:inline-block;min-width:100%}.jstree-wholerow-ul .jstree-leaf>.jstree-ocl{cursor:pointer}.jstree-wholerow-ul .jstree-anchor,.jstree-wholerow-ul .jstree-icon{position:relative}.jstree-wholerow-ul .jstree-wholerow{width:100%;cursor:pointer;position:absolute;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jstree-contextmenu .jstree-anchor{-webkit-user-select:none;-webkit-touch-callout:none}.vakata-context{display:none}.vakata-context,.vakata-context ul{margin:0;padding:2px;position:absolute;background:#f5f5f5;border:1px solid #979797;box-shadow:2px 2px 2px #999999}.vakata-context ul{list-style:none;left:100%;margin-top:-2.7em;margin-left:-4px}.vakata-context .vakata-context-right ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context li{list-style:none}.vakata-context li>a{display:block;padding:0 2em 0 2em;text-decoration:none;width:auto;color:black;white-space:nowrap;line-height:2.4em;text-shadow:1px 1px 0 white;border-radius:1px}.vakata-context li>a:hover{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");background-position:right center;background-repeat:no-repeat}.vakata-context li>a:focus{outline:0}.vakata-context .vakata-context-hover>a{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context .vakata-context-separator>a,.vakata-context .vakata-context-separator>a:hover{background:white;border:0;border-top:1px solid #e2e3e3;height:1px;min-height:1px;max-height:1px;padding:0;margin:0 0 0 2.4em;border-left:1px solid #e0e0e0;text-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;border-radius:0}.vakata-context .vakata-contextmenu-disabled a,.vakata-context .vakata-contextmenu-disabled a:hover{color:silver;background-color:transparent;border:0;box-shadow:0 0 0}.vakata-context .vakata-contextmenu-disabled>a>i{filter:grayscale(100%)}.vakata-context li>a>i{text-decoration:none;display:inline-block;width:2.4em;height:2.4em;background:transparent;margin:0 0 0 -2em;vertical-align:top;text-align:center;line-height:2.4em}.vakata-context li>a>i:empty{width:2.4em;line-height:2.4em}.vakata-context li>a .vakata-contextmenu-sep{display:inline-block;width:1px;height:2.4em;background:white;margin:0 .5em 0 0;border-left:1px solid #e2e3e3}.vakata-context .vakata-contextmenu-shortcut{font-size:.8em;color:silver;opacity:.5;display:none}.vakata-context-rtl ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context-rtl li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");background-position:left center;background-repeat:no-repeat}.vakata-context-rtl .vakata-context-separator>a{margin:0 2.4em 0 0;border-left:0;border-right:1px solid #e2e3e3}.vakata-context-rtl .vakata-context-left ul{right:auto;left:100%;margin-left:-4px;margin-right:auto}.vakata-context-rtl li>a>i{margin:0 -2em 0 0}.vakata-context-rtl li>a .vakata-contextmenu-sep{margin:0 0 0 .5em;border-left-color:white;background:#e2e3e3}#jstree-marker{position:absolute;top:0;left:0;margin:-5px 0 0 0;padding:0;border-right:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid;width:0;height:0;font-size:0;line-height:0}#jstree-dnd{line-height:16px;margin:0;padding:4px}#jstree-dnd .jstree-icon,#jstree-dnd .jstree-copy{display:inline-block;text-decoration:none;margin:0 2px 0 0;padding:0;width:16px;height:16px}#jstree-dnd .jstree-ok{background:green}#jstree-dnd .jstree-er{background:red}#jstree-dnd .jstree-copy{margin:0 2px 0 2px}.jstree-default .jstree-node,.jstree-default .jstree-icon{background-repeat:no-repeat;background-color:transparent}.jstree-default .jstree-anchor,.jstree-default .jstree-animated,.jstree-default .jstree-wholerow{transition:background-color .15s,box-shadow .15s}.jstree-default .jstree-hovered{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #cccccc}.jstree-default .jstree-context{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #cccccc}.jstree-default .jstree-clicked{background:#beebff;border-radius:2px;box-shadow:inset 0 0 1px #999999}.jstree-default .jstree-no-icons .jstree-anchor>.jstree-themeicon{display:none}.jstree-default .jstree-disabled{background:transparent;color:#666666}.jstree-default .jstree-disabled.jstree-hovered{background:transparent;box-shadow:none}.jstree-default .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default .jstree-disabled>.jstree-icon{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default .jstree-search{font-style:italic;color:#8b0000;font-weight:bold}.jstree-default .jstree-no-checkboxes .jstree-checkbox{display:none !important}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked{background:transparent;box-shadow:none}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered{background:#e7f4f9}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked{background:transparent}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered{background:#e7f4f9}.jstree-default>.jstree-striped{min-width:100%;display:inline-block;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat}.jstree-default>.jstree-wholerow-ul .jstree-hovered,.jstree-default>.jstree-wholerow-ul .jstree-clicked{background:transparent;box-shadow:none;border-radius:0}.jstree-default .jstree-wholerow{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jstree-default .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default .jstree-wholerow-clicked{background:#beebff;background:-webkit-linear-gradient(top, #beebff 0, #a8e4ff 100%);background:linear-gradient(to bottom, #beebff 0, #a8e4ff 100%)}.jstree-default .jstree-node{min-height:24px;line-height:24px;margin-left:24px;min-width:24px}.jstree-default .jstree-anchor{line-height:24px;height:24px}.jstree-default .jstree-icon{width:24px;height:24px;line-height:24px}.jstree-default .jstree-icon:empty{width:24px;height:24px;line-height:24px}.jstree-default.jstree-rtl .jstree-node{margin-right:24px}.jstree-default .jstree-wholerow{height:24px}.jstree-default .jstree-node,.jstree-default .jstree-icon{background-image:url("32px.png")}.jstree-default .jstree-node{background-position:-292px -4px;background-repeat:repeat-y}.jstree-default .jstree-last{background:transparent}.jstree-default .jstree-open>.jstree-ocl{background-position:-132px -4px}.jstree-default .jstree-closed>.jstree-ocl{background-position:-100px -4px}.jstree-default .jstree-leaf>.jstree-ocl{background-position:-68px -4px}.jstree-default .jstree-themeicon{background-position:-260px -4px}.jstree-default>.jstree-no-dots .jstree-node,.jstree-default>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -4px}.jstree-default>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -4px}.jstree-default .jstree-disabled{background:transparent}.jstree-default .jstree-disabled.jstree-hovered{background:transparent}.jstree-default .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default .jstree-checkbox{background-position:-164px -4px}.jstree-default .jstree-checkbox:hover{background-position:-164px -36px}.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default .jstree-checked>.jstree-checkbox{background-position:-228px -4px}.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default .jstree-checked>.jstree-checkbox:hover{background-position:-228px -36px}.jstree-default .jstree-anchor>.jstree-undetermined{background-position:-196px -4px}.jstree-default .jstree-anchor>.jstree-undetermined:hover{background-position:-196px -36px}.jstree-default .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default>.jstree-striped{background-size:auto 48px}.jstree-default.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default.jstree-rtl .jstree-last{background:transparent}.jstree-default.jstree-rtl .jstree-open>.jstree-ocl{background-position:-132px -36px}.jstree-default.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-100px -36px}.jstree-default.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-68px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -36px}.jstree-default .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default .jstree-file{background:url("32px.png") -100px -68px no-repeat}.jstree-default .jstree-folder{background:url("32px.png") -260px -4px no-repeat}.jstree-default>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default{line-height:24px;padding:0 4px}#jstree-dnd.jstree-default .jstree-ok,#jstree-dnd.jstree-default .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default i{background:transparent;width:24px;height:24px;line-height:24px}#jstree-dnd.jstree-default .jstree-ok{background-position:-4px -68px}#jstree-dnd.jstree-default .jstree-er{background-position:-36px -68px}.jstree-default .jstree-ellipsis{overflow:hidden}.jstree-default .jstree-ellipsis .jstree-anchor{width:calc(100% - 29px);text-overflow:ellipsis;overflow:hidden}.jstree-default.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==")}.jstree-default.jstree-rtl .jstree-last{background:transparent}.jstree-default-small .jstree-node{min-height:18px;line-height:18px;margin-left:18px;min-width:18px}.jstree-default-small .jstree-anchor{line-height:18px;height:18px}.jstree-default-small .jstree-icon{width:18px;height:18px;line-height:18px}.jstree-default-small .jstree-icon:empty{width:18px;height:18px;line-height:18px}.jstree-default-small.jstree-rtl .jstree-node{margin-right:18px}.jstree-default-small .jstree-wholerow{height:18px}.jstree-default-small .jstree-node,.jstree-default-small .jstree-icon{background-image:url("32px.png")}.jstree-default-small .jstree-node{background-position:-295px -7px;background-repeat:repeat-y}.jstree-default-small .jstree-last{background:transparent}.jstree-default-small .jstree-open>.jstree-ocl{background-position:-135px -7px}.jstree-default-small .jstree-closed>.jstree-ocl{background-position:-103px -7px}.jstree-default-small .jstree-leaf>.jstree-ocl{background-position:-71px -7px}.jstree-default-small .jstree-themeicon{background-position:-263px -7px}.jstree-default-small>.jstree-no-dots .jstree-node,.jstree-default-small>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-small>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -7px}.jstree-default-small>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -7px}.jstree-default-small .jstree-disabled{background:transparent}.jstree-default-small .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-small .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-small .jstree-checkbox{background-position:-167px -7px}.jstree-default-small .jstree-checkbox:hover{background-position:-167px -39px}.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-small .jstree-checked>.jstree-checkbox{background-position:-231px -7px}.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-small .jstree-checked>.jstree-checkbox:hover{background-position:-231px -39px}.jstree-default-small .jstree-anchor>.jstree-undetermined{background-position:-199px -7px}.jstree-default-small .jstree-anchor>.jstree-undetermined:hover{background-position:-199px -39px}.jstree-default-small .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-small>.jstree-striped{background-size:auto 36px}.jstree-default-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-small.jstree-rtl .jstree-open>.jstree-ocl{background-position:-135px -39px}.jstree-default-small.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-103px -39px}.jstree-default-small.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-71px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -39px}.jstree-default-small .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-small>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-small .jstree-file{background:url("32px.png") -103px -71px no-repeat}.jstree-default-small .jstree-folder{background:url("32px.png") -263px -7px no-repeat}.jstree-default-small>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-small{line-height:18px;padding:0 4px}#jstree-dnd.jstree-default-small .jstree-ok,#jstree-dnd.jstree-default-small .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-small i{background:transparent;width:18px;height:18px;line-height:18px}#jstree-dnd.jstree-default-small .jstree-ok{background-position:-7px -71px}#jstree-dnd.jstree-default-small .jstree-er{background-position:-39px -71px}.jstree-default-small .jstree-ellipsis{overflow:hidden}.jstree-default-small .jstree-ellipsis .jstree-anchor{width:calc(100% - 23px);text-overflow:ellipsis;overflow:hidden}.jstree-default-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==")}.jstree-default-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-large .jstree-node{min-height:32px;line-height:32px;margin-left:32px;min-width:32px}.jstree-default-large .jstree-anchor{line-height:32px;height:32px}.jstree-default-large .jstree-icon{width:32px;height:32px;line-height:32px}.jstree-default-large .jstree-icon:empty{width:32px;height:32px;line-height:32px}.jstree-default-large.jstree-rtl .jstree-node{margin-right:32px}.jstree-default-large .jstree-wholerow{height:32px}.jstree-default-large .jstree-node,.jstree-default-large .jstree-icon{background-image:url("32px.png")}.jstree-default-large .jstree-node{background-position:-288px 0;background-repeat:repeat-y}.jstree-default-large .jstree-last{background:transparent}.jstree-default-large .jstree-open>.jstree-ocl{background-position:-128px 0}.jstree-default-large .jstree-closed>.jstree-ocl{background-position:-96px 0}.jstree-default-large .jstree-leaf>.jstree-ocl{background-position:-64px 0}.jstree-default-large .jstree-themeicon{background-position:-256px 0}.jstree-default-large>.jstree-no-dots .jstree-node,.jstree-default-large>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-large>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px 0}.jstree-default-large>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 0}.jstree-default-large .jstree-disabled{background:transparent}.jstree-default-large .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-large .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-large .jstree-checkbox{background-position:-160px 0}.jstree-default-large .jstree-checkbox:hover{background-position:-160px -32px}.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-large .jstree-checked>.jstree-checkbox{background-position:-224px 0}.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-large .jstree-checked>.jstree-checkbox:hover{background-position:-224px -32px}.jstree-default-large .jstree-anchor>.jstree-undetermined{background-position:-192px 0}.jstree-default-large .jstree-anchor>.jstree-undetermined:hover{background-position:-192px -32px}.jstree-default-large .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-large>.jstree-striped{background-size:auto 64px}.jstree-default-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-large.jstree-rtl .jstree-last{background:transparent}.jstree-default-large.jstree-rtl .jstree-open>.jstree-ocl{background-position:-128px -32px}.jstree-default-large.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-96px -32px}.jstree-default-large.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-64px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 -32px}.jstree-default-large .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-large>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-large .jstree-file{background:url("32px.png") -96px -64px no-repeat}.jstree-default-large .jstree-folder{background:url("32px.png") -256px 0 no-repeat}.jstree-default-large>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-large{line-height:32px;padding:0 4px}#jstree-dnd.jstree-default-large .jstree-ok,#jstree-dnd.jstree-default-large .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-large i{background:transparent;width:32px;height:32px;line-height:32px}#jstree-dnd.jstree-default-large .jstree-ok{background-position:0 -64px}#jstree-dnd.jstree-default-large .jstree-er{background-position:-32px -64px}.jstree-default-large .jstree-ellipsis{overflow:hidden}.jstree-default-large .jstree-ellipsis .jstree-anchor{width:calc(100% - 37px);text-overflow:ellipsis;overflow:hidden}.jstree-default-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==")}.jstree-default-large.jstree-rtl .jstree-last{background:transparent}@media (max-width:768px){#jstree-dnd.jstree-dnd-responsive{line-height:40px;font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}#jstree-dnd.jstree-dnd-responsive>i{background:transparent;width:40px;height:40px}#jstree-dnd.jstree-dnd-responsive>.jstree-ok{background-image:url("40px.png");background-position:0 -200px;background-size:120px 240px}#jstree-dnd.jstree-dnd-responsive>.jstree-er{background-image:url("40px.png");background-position:-40px -200px;background-size:120px 240px}#jstree-marker.jstree-dnd-responsive{border-left-width:10px;border-top-width:10px;border-bottom-width:10px;margin-top:-10px}}@media (max-width:768px){.jstree-default-responsive .jstree-icon{background-image:url("40px.png")}.jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-responsive .jstree-node{min-height:40px;line-height:40px;margin-left:40px;min-width:40px;white-space:nowrap}.jstree-default-responsive .jstree-anchor{line-height:40px;height:40px}.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-icon:empty{width:40px;height:40px;line-height:40px}.jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0}.jstree-default-responsive.jstree-rtl .jstree-node{margin-left:0;margin-right:40px;background:transparent}.jstree-default-responsive.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-default-responsive .jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-size:120px 240px}.jstree-default-responsive .jstree-leaf>.jstree-ocl,.jstree-default-responsive.jstree-rtl .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-responsive .jstree-open>.jstree-ocl{background-position:0 0 !important}.jstree-default-responsive .jstree-closed>.jstree-ocl{background-position:0 -40px !important}.jstree-default-responsive.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-40px 0 !important}.jstree-default-responsive .jstree-themeicon{background-position:-40px -40px}.jstree-default-responsive .jstree-checkbox,.jstree-default-responsive .jstree-checkbox:hover{background-position:-40px -80px}.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-responsive .jstree-checked>.jstree-checkbox,.jstree-default-responsive .jstree-checked>.jstree-checkbox:hover{background-position:0 -80px}.jstree-default-responsive .jstree-anchor>.jstree-undetermined,.jstree-default-responsive .jstree-anchor>.jstree-undetermined:hover{background-position:0 -120px}.jstree-default-responsive .jstree-anchor{font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}.jstree-default-responsive>.jstree-striped{background:transparent}.jstree-default-responsive .jstree-wholerow{border-top:1px solid rgba(255,255,255,0.7);border-bottom:1px solid rgba(64,64,64,0.2);background:#ebebeb;height:40px}.jstree-default-responsive .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default-responsive .jstree-wholerow-clicked{background:#beebff}.jstree-default-responsive .jstree-children .jstree-last>.jstree-wholerow{box-shadow:inset 0 -6px 3px -5px #666666}.jstree-default-responsive .jstree-children .jstree-open>.jstree-wholerow{box-shadow:inset 0 6px 3px -5px #666666;border-top:0}.jstree-default-responsive .jstree-children .jstree-open+.jstree-open{box-shadow:none}.jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-node>.jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-image:url("40px.png");background-size:120px 240px}.jstree-default-responsive .jstree-node{background-position:-80px 0;background-repeat:repeat-y}.jstree-default-responsive .jstree-last{background:transparent}.jstree-default-responsive .jstree-leaf>.jstree-ocl{background-position:-40px -120px}.jstree-default-responsive .jstree-last>.jstree-ocl{background-position:-40px -160px}.jstree-default-responsive .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-responsive .jstree-file{background:url("40px.png") 0 -160px no-repeat;background-size:120px 240px}.jstree-default-responsive .jstree-folder{background:url("40px.png") -40px -40px no-repeat;background-size:120px 240px}.jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}} \ No newline at end of file diff --git a/web/help/taseditor/vendors/jstree-3.3.10/themes/default/throbber.gif b/web/help/taseditor/vendors/jstree-3.3.10/themes/default/throbber.gif new file mode 100644 index 0000000000000000000000000000000000000000..cf06c1ad0f00be54b10f73e03c11d182d411fad1 GIT binary patch literal 1464 zcmZvceN0nV9EQ&=r=^8TFHo@{ANQ70%LFN(7Ima80;R!PL9rm3)*-a&w4%$!u$DOG!y_yWJ*}DKj&Z!{KyycdONE2;suQ z0>0oY%h;NiE|O;?tl@hho}Kt#A?am%R7ds{W5+Z{)R=0oO1J-@s(6j&K*>RXzl3BT zzyL9xm7Yix2%*;PtW~c(I@)n*B9Lt|nX$@5x^P+w+`!wx60-9`uo!Bs<$^EHs)-UfnV9p;}KqjClm$MVbM$&>WbPV&ij*ka|M=U@X9sGyLDa1jBO)0C&2bFU5^USyT%ow`Y6z3+!yPy*Q>C*G{34S5-7|bGDZQ z;p6Czucr+YRHzuORgJ5K?Gb~I)~a}v9rie@5~I_JSG?&Y0H19O93PH4T#q0ADD;!P zk^f0VJ^TO`dJ=PNij?y~;w)~e*CcK*ZY52{2MQ$)2O(_;C7G%3Zo-!*0`gZhYhSL< znt;k5!N~ERdLnRmTxxns-8=KZykgLf4(wIkTqMjv3H^P0 z0}wE)29!5I&o+~aFX!~k)T{bi(Dhe zIH87(qxAGc0w`-lB2B++2#J?l`gGWV+B}h2SM(t^bWT#g9>Fcs52mlk>PRPILR$oj*LlzNEnI}n!K<3 z)aPyCTC2f!DRM}V09yub^?|M=!+Y@mELj`_)TX%OO>kCHio!~( znD>rK?x{ZA<6qyz3f`ZjI~5!kK{oSzRuM%1ivpD2V-;hMHZiNKhH-%|h?1H9lphlk zFgW#r;6}N_Nt!r84^6u^hv5%Xq^WPf0T0|iW8f(hZ6Nk)qHY$>y?>U{G)$G{h>Nyn zpO@v$E*p6=g#Y1VcDTfCbn@Au-m=SFxmH%8-f*3fsjN8kedp=8=1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;n(this,e),this.ctx=t,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return r(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t=e.getAttribute("src").trim();return"about:blank"===e.contentWindow.location.href&&"about:blank"!==t&&t}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),a=function(){function e(t){n(this,e),this.ctx=t,this.ie=!1;var r=window.navigator.userAgent;(r.indexOf("MSIE")>-1||r.indexOf("Trident")>-1)&&(this.ie=!0)}return r(e,[{key:"log",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":t(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+e)}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createRegExp",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e)}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynomyms(a)+"|"+this.processSynomyms(s)+")"+r))}return e}},{key:"processSynomyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return o.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];)if(n(i[a],t)){var s=i.index;if(0!==a)for(var c=1;c #mq-test-1 { width: 42px; }',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){u(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))};if(c.ajax=f,c.queue=d,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var g,h,i,j=a.document,k=j.documentElement,l=[],m=[],n=[],o={},p=30,q=j.getElementsByTagName("head")[0]||k,r=j.getElementsByTagName("base")[0],s=q.getElementsByTagName("link"),t=function(){var a,b=j.createElement("div"),c=j.body,d=k.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=j.createElement("body"),c.style.background="none"),k.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&k.insertBefore(c,k.firstChild),a=b.offsetWidth,f?k.removeChild(c):c.removeChild(b),k.style.fontSize=d,e&&(c.style.fontSize=e),a=i=parseFloat(a)},u=function(b){var c="clientWidth",d=k[c],e="CSS1Compat"===j.compatMode&&d||j.body[c]||d,f={},o=s[s.length-1],r=(new Date).getTime();if(b&&g&&p>r-g)return a.clearTimeout(h),h=a.setTimeout(u,p),void 0;g=r;for(var v in l)if(l.hasOwnProperty(v)){var w=l[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?i||t():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?i||t():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(m[w.rules]))}for(var C in n)n.hasOwnProperty(C)&&n[C]&&n[C].parentNode===q&&q.removeChild(n[C]);n.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=j.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,q.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(j.createTextNode(F)),n.push(E)}},v=function(a,b,d){var e=a.replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var g=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},h=!f&&d;b.length&&(b+="/"),h&&(f=1);for(var i=0;f>i;i++){var j,k,n,o;h?(j=d,m.push(g(a))):(j=e[i].match(c.regex.findStyles)&&RegExp.$1,m.push(RegExp.$2&&g(RegExp.$2))),n=j.split(","),o=n.length;for(var p=0;o>p;p++)k=n[p],l.push({media:k.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:m.length-1,hasquery:k.indexOf("(")>-1,minw:k.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:k.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},w=function(){if(d.length){var b=d.shift();f(b.href,function(c){v(c,b.href,b.media),o[b.href]=!0,a.setTimeout(function(){w()},0)})}},x=function(){for(var b=0;bE;E++)if("0"===m[0]&&1E&&(m=k,E=z)):"0"===l[q]&&(p=!0,k=q,z=1);z>E&&(m=k,E=z);1=L&&D>>10&1023|55296),t=56320|t&1023);return D+=y(t)}).join("")}function E(n,t){return n+22+75*(26>n)-((0!=t)<<5)}function z(n,t,D){var x=0;n=D?g(n/700):n>>1;for(n+=g(n/t);455e&&(e=0);for(b=0;b=D&&w("invalid-input");var h=n.charCodeAt(e++); +h=10>h-48?h-22:26>h-65?h-65:26>h-97?h-97:36;(36<=h||h>g((2147483647-x)/f))&&w("overflow");x+=h*f;var A=c<=a?1:c>=a+26?26:c-a;if(hg(2147483647/h)&&w("overflow");f*=h}f=t.length+1;a=z(x-b,f,0==b);g(x/f)>2147483647-L&&w("overflow");L+=g(x/f);x%=f;t.splice(x++,0,L)}return q(t)}function p(n){var t,D,x,L=[];n=d(n);var a=n.length;var b=128;var c=0;var e=72;for(x=0;xf&&L.push(y(f))}for((t=D=L.length)&&L.push("-");t=b&& +fg((2147483647-c)/A)&&w("overflow");c+=(h-b)*A;b=h;for(x=0;x=e+26?26:h-e;if(J= 0x80 (not a basic code point)","invalid-input":"Invalid input"},g=Math.floor,y=String.fromCharCode,H;var G={version:"1.3.2",ucs2:{decode:d,encode:q},decode:k,encode:p,toASCII:function(n){return m(n,function(t){return u.test(t)?"xn--"+p(t):t})},toUnicode:function(n){return m(n,function(t){return F.test(t)?k(t.slice(4).toLowerCase()): +t})}};if("function"==typeof define&&"object"==typeof define.amd&&define.amd)define("punycode",function(){return G});else if(B&&v)if(module.exports==B)v.exports=G;else for(H in G)G.hasOwnProperty(H)&&(B[H]=G[H]);else r.punycode=G})(this); +(function(r,w){"object"===typeof module&&module.exports?module.exports=w():"function"===typeof define&&define.amd?define(w):r.SecondLevelDomains=w(r)})(this,function(r){var w=r&&r.SecondLevelDomains,l={list:{ac:" com gov mil net org ",ae:" ac co gov mil name net org pro sch ",af:" com edu gov net org ",al:" com edu gov mil net org ",ao:" co ed gv it og pb ",ar:" com edu gob gov int mil net org tur ",at:" ac co gv or ",au:" asn com csiro edu gov id net org ",ba:" co com edu gov mil net org rs unbi unmo unsa untz unze ", +bb:" biz co com edu gov info net org store tv ",bh:" biz cc com edu gov info net org ",bn:" com edu gov net org ",bo:" com edu gob gov int mil net org tv ",br:" adm adv agr am arq art ato b bio blog bmd cim cng cnt com coop ecn edu eng esp etc eti far flog fm fnd fot fst g12 ggf gov imb ind inf jor jus lel mat med mil mus net nom not ntr odo org ppg pro psc psi qsl rec slg srv tmp trd tur tv vet vlog wiki zlg ",bs:" com edu gov net org ",bz:" du et om ov rg ",ca:" ab bc mb nb nf nl ns nt nu on pe qc sk yk ", +ck:" biz co edu gen gov info net org ",cn:" ac ah bj com cq edu fj gd gov gs gx gz ha hb he hi hl hn jl js jx ln mil net nm nx org qh sc sd sh sn sx tj tw xj xz yn zj ",co:" com edu gov mil net nom org ",cr:" ac c co ed fi go or sa ",cy:" ac biz com ekloges gov ltd name net org parliament press pro tm ","do":" art com edu gob gov mil net org sld web ",dz:" art asso com edu gov net org pol ",ec:" com edu fin gov info med mil net org pro ",eg:" com edu eun gov mil name net org sci ",er:" com edu gov ind mil net org rochest w ", +es:" com edu gob nom org ",et:" biz com edu gov info name net org ",fj:" ac biz com info mil name net org pro ",fk:" ac co gov net nom org ",fr:" asso com f gouv nom prd presse tm ",gg:" co net org ",gh:" com edu gov mil org ",gn:" ac com gov net org ",gr:" com edu gov mil net org ",gt:" com edu gob ind mil net org ",gu:" com edu gov net org ",hk:" com edu gov idv net org ",hu:" 2000 agrar bolt casino city co erotica erotika film forum games hotel info ingatlan jogasz konyvelo lakas media news org priv reklam sex shop sport suli szex tm tozsde utazas video ", +id:" ac co go mil net or sch web ",il:" ac co gov idf k12 muni net org ","in":" ac co edu ernet firm gen gov i ind mil net nic org res ",iq:" com edu gov i mil net org ",ir:" ac co dnssec gov i id net org sch ",it:" edu gov ",je:" co net org ",jo:" com edu gov mil name net org sch ",jp:" ac ad co ed go gr lg ne or ",ke:" ac co go info me mobi ne or sc ",kh:" com edu gov mil net org per ",ki:" biz com de edu gov info mob net org tel ",km:" asso com coop edu gouv k medecin mil nom notaires pharmaciens presse tm veterinaire ", +kn:" edu gov net org ",kr:" ac busan chungbuk chungnam co daegu daejeon es gangwon go gwangju gyeongbuk gyeonggi gyeongnam hs incheon jeju jeonbuk jeonnam k kg mil ms ne or pe re sc seoul ulsan ",kw:" com edu gov net org ",ky:" com edu gov net org ",kz:" com edu gov mil net org ",lb:" com edu gov net org ",lk:" assn com edu gov grp hotel int ltd net ngo org sch soc web ",lr:" com edu gov net org ",lv:" asn com conf edu gov id mil net org ",ly:" com edu gov id med net org plc sch ",ma:" ac co gov m net org press ", +mc:" asso tm ",me:" ac co edu gov its net org priv ",mg:" com edu gov mil nom org prd tm ",mk:" com edu gov inf name net org pro ",ml:" com edu gov net org presse ",mn:" edu gov org ",mo:" com edu gov net org ",mt:" com edu gov net org ",mv:" aero biz com coop edu gov info int mil museum name net org pro ",mw:" ac co com coop edu gov int museum net org ",mx:" com edu gob net org ",my:" com edu gov mil name net org sch ",nf:" arts com firm info net other per rec store web ",ng:" biz com edu gov mil mobi name net org sch ", +ni:" ac co com edu gob mil net nom org ",np:" com edu gov mil net org ",nr:" biz com edu gov info net org ",om:" ac biz co com edu gov med mil museum net org pro sch ",pe:" com edu gob mil net nom org sld ",ph:" com edu gov i mil net ngo org ",pk:" biz com edu fam gob gok gon gop gos gov net org web ",pl:" art bialystok biz com edu gda gdansk gorzow gov info katowice krakow lodz lublin mil net ngo olsztyn org poznan pwr radom slupsk szczecin torun warszawa waw wroc wroclaw zgora ",pr:" ac biz com edu est gov info isla name net org pro prof ", +ps:" com edu gov net org plo sec ",pw:" belau co ed go ne or ",ro:" arts com firm info nom nt org rec store tm www ",rs:" ac co edu gov in org ",sb:" com edu gov net org ",sc:" com edu gov net org ",sh:" co com edu gov net nom org ",sl:" com edu gov net org ",st:" co com consulado edu embaixada gov mil net org principe saotome store ",sv:" com edu gob org red ",sz:" ac co org ",tr:" av bbs bel biz com dr edu gen gov info k12 name net org pol tel tsk tv web ",tt:" aero biz cat co com coop edu gov info int jobs mil mobi museum name net org pro tel travel ", +tw:" club com ebiz edu game gov idv mil net org ",mu:" ac co com gov net or org ",mz:" ac co edu gov org ",na:" co com ",nz:" ac co cri geek gen govt health iwi maori mil net org parliament school ",pa:" abo ac com edu gob ing med net nom org sld ",pt:" com edu gov int net nome org publ ",py:" com edu gov mil net org ",qa:" com edu gov mil net org ",re:" asso com nom ",ru:" ac adygeya altai amur arkhangelsk astrakhan bashkiria belgorod bir bryansk buryatia cbg chel chelyabinsk chita chukotka chuvashia com dagestan e-burg edu gov grozny int irkutsk ivanovo izhevsk jar joshkar-ola kalmykia kaluga kamchatka karelia kazan kchr kemerovo khabarovsk khakassia khv kirov koenig komi kostroma kranoyarsk kuban kurgan kursk lipetsk magadan mari mari-el marine mil mordovia mosreg msk murmansk nalchik net nnov nov novosibirsk nsk omsk orenburg org oryol penza perm pp pskov ptz rnd ryazan sakhalin samara saratov simbirsk smolensk spb stavropol stv surgut tambov tatarstan tom tomsk tsaritsyn tsk tula tuva tver tyumen udm udmurtia ulan-ude vladikavkaz vladimir vladivostok volgograd vologda voronezh vrn vyatka yakutia yamal yekaterinburg yuzhno-sakhalinsk ", +rw:" ac co com edu gouv gov int mil net ",sa:" com edu gov med net org pub sch ",sd:" com edu gov info med net org tv ",se:" a ac b bd c d e f g h i k l m n o org p parti pp press r s t tm u w x y z ",sg:" com edu gov idn net org per ",sn:" art com edu gouv org perso univ ",sy:" com edu gov mil net news org ",th:" ac co go in mi net or ",tj:" ac biz co com edu go gov info int mil name net nic org test web ",tn:" agrinet com defense edunet ens fin gov ind info intl mincom nat net org perso rnrt rns rnu tourism ", +tz:" ac co go ne or ",ua:" biz cherkassy chernigov chernovtsy ck cn co com crimea cv dn dnepropetrovsk donetsk dp edu gov if in ivano-frankivsk kh kharkov kherson khmelnitskiy kiev kirovograd km kr ks kv lg lugansk lutsk lviv me mk net nikolaev od odessa org pl poltava pp rovno rv sebastopol sumy te ternopil uzhgorod vinnica vn zaporizhzhe zhitomir zp zt ",ug:" ac co go ne or org sc ",uk:" ac bl british-library co cym gov govt icnet jet lea ltd me mil mod national-library-scotland nel net nhs nic nls org orgn parliament plc police sch scot soc ", +us:" dni fed isa kids nsn ",uy:" com edu gub mil net org ",ve:" co com edu gob info mil net org web ",vi:" co com k12 net org ",vn:" ac biz com edu gov health info int name net org pro ",ye:" co com gov ltd me net org plc ",yu:" ac co edu gov org ",za:" ac agric alt bourse city co cybernet db edu gov grondar iaccess imt inca landesign law mil net ngo nis nom olivetti org pix school tm web ",zm:" ac co com edu gov net org sch ",com:"ar br cn de eu gb gr hu jpn kr no qc ru sa se uk us uy za ",net:"gb jp se uk ", +org:"ae",de:"com "},has:function(m){var d=m.lastIndexOf(".");if(0>=d||d>=m.length-1)return!1;var q=m.lastIndexOf(".",d-1);if(0>=q||q>=d-1)return!1;var E=l.list[m.slice(d+1)];return E?0<=E.indexOf(" "+m.slice(q+1,d)+" "):!1},is:function(m){var d=m.lastIndexOf(".");if(0>=d||d>=m.length-1||0<=m.lastIndexOf(".",d-1))return!1;var q=l.list[m.slice(d+1)];return q?0<=q.indexOf(" "+m.slice(0,d)+" "):!1},get:function(m){var d=m.lastIndexOf(".");if(0>=d||d>=m.length-1)return null;var q=m.lastIndexOf(".",d-1); +if(0>=q||q>=d-1)return null;var E=l.list[m.slice(d+1)];return!E||0>E.indexOf(" "+m.slice(q+1,d)+" ")?null:m.slice(q+1)},noConflict:function(){r.SecondLevelDomains===this&&(r.SecondLevelDomains=w);return this}};return l}); +(function(r,w){"object"===typeof module&&module.exports?module.exports=w(require("./punycode"),require("./IPv6"),require("./SecondLevelDomains")):"function"===typeof define&&define.amd?define(["./punycode","./IPv6","./SecondLevelDomains"],w):r.URI=w(r.punycode,r.IPv6,r.SecondLevelDomains,r)})(this,function(r,w,l,m){function d(a,b){var c=1<=arguments.length,e=2<=arguments.length;if(!(this instanceof d))return c?e?new d(a,b):new d(a):new d;if(void 0===a){if(c)throw new TypeError("undefined is not a valid argument for URI"); +a="undefined"!==typeof location?location.href+"":""}if(null===a&&c)throw new TypeError("null is not a valid argument for URI");this.href(a);return void 0!==b?this.absoluteTo(b):this}function q(a){return a.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function E(a){return void 0===a?"Undefined":String(Object.prototype.toString.call(a)).slice(8,-1)}function z(a){return"Array"===E(a)}function k(a,b){var c={},e;if("RegExp"===E(b))c=null;else if(z(b)){var f=0;for(e=b.length;f]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u2018\u2019]))/ig;d.findUri={start:/\b(?:([a-z][a-z0-9.+-]*:\/\/)|www\.)/gi,end:/[\s\r\n]|$/,trim:/[`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u201e\u2018\u2019]+$/,parens:/(\([^\)]*\)|\[[^\]]*\]|\{[^}]*\}|<[^>]*>)/g};d.defaultPorts={http:"80",https:"443",ftp:"21", +gopher:"70",ws:"80",wss:"443"};d.hostProtocols=["http","https"];d.invalid_hostname_characters=/[^a-zA-Z0-9\.\-:_]/;d.domAttributes={a:"href",blockquote:"cite",link:"href",base:"href",script:"src",form:"action",img:"src",area:"href",iframe:"src",embed:"src",source:"src",track:"src",input:"src",audio:"src",video:"src"};d.getDomAttribute=function(a){if(a&&a.nodeName){var b=a.nodeName.toLowerCase();if("input"!==b||"image"===a.type)return d.domAttributes[b]}};d.encode=F;d.decode=decodeURIComponent;d.iso8859= +function(){d.encode=escape;d.decode=unescape};d.unicode=function(){d.encode=F;d.decode=decodeURIComponent};d.characters={pathname:{encode:{expression:/%(24|26|2B|2C|3B|3D|3A|40)/ig,map:{"%24":"$","%26":"&","%2B":"+","%2C":",","%3B":";","%3D":"=","%3A":":","%40":"@"}},decode:{expression:/[\/\?#]/g,map:{"/":"%2F","?":"%3F","#":"%23"}}},reserved:{encode:{expression:/%(21|23|24|26|27|28|29|2A|2B|2C|2F|3A|3B|3D|3F|40|5B|5D)/ig,map:{"%3A":":","%2F":"/","%3F":"?","%23":"#","%5B":"[","%5D":"]","%40":"@", +"%21":"!","%24":"$","%26":"&","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"="}}},urnpath:{encode:{expression:/%(21|24|27|28|29|2A|2B|2C|3B|3D|40)/ig,map:{"%21":"!","%24":"$","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"=","%40":"@"}},decode:{expression:/[\/\?#:]/g,map:{"/":"%2F","?":"%3F","#":"%23",":":"%3A"}}}};d.encodeQuery=function(a,b){var c=d.encode(a+"");void 0===b&&(b=d.escapeQuerySpace);return b?c.replace(/%20/g,"+"):c};d.decodeQuery= +function(a,b){a+="";void 0===b&&(b=d.escapeQuerySpace);try{return d.decode(b?a.replace(/\+/g,"%20"):a)}catch(c){return a}};var H={encode:"encode",decode:"decode"},G,n=function(a,b){return function(c){try{return d[b](c+"").replace(d.characters[a][b].expression,function(e){return d.characters[a][b].map[e]})}catch(e){return c}}};for(G in H)d[G+"PathSegment"]=n("pathname",H[G]),d[G+"UrnPathSegment"]=n("urnpath",H[G]);H=function(a,b,c){return function(e){var f=c?function(J){return d[b](d[c](J))}:d[b]; +e=(e+"").split(a);for(var h=0,A=e.length;he)return a.charAt(0)===b.charAt(0)&&"/"===a.charAt(0)?"/":"";if("/"!==a.charAt(e)||"/"!==b.charAt(e))e=a.substring(0,e).lastIndexOf("/");return a.substring(0,e+1)};d.withinString=function(a,b,c){c||(c={});var e=c.start||d.findUri.start,f=c.end||d.findUri.end,h=c.trim||d.findUri.trim,A=c.parens||d.findUri.parens,J=/[a-z0-9-]=["']?$/i; +for(e.lastIndex=0;;){var M=e.exec(a);if(!M)break;var P=M.index;if(c.ignoreHtml){var N=a.slice(Math.max(P-3,0),P);if(N&&J.test(N))continue}var O=P+a.slice(P).search(f);N=a.slice(P,O);for(O=-1;;){var Q=A.exec(N);if(!Q)break;O=Math.max(O,Q.index+Q[0].length)}N=-1b))throw new TypeError('Port "'+a+'" is not a valid port');}};d.noConflict=function(a){if(a)return a={URI:this.noConflict()},m.URITemplate&&"function"===typeof m.URITemplate.noConflict&&(a.URITemplate=m.URITemplate.noConflict()),m.IPv6&&"function"===typeof m.IPv6.noConflict&&(a.IPv6=m.IPv6.noConflict()),m.SecondLevelDomains&&"function"===typeof m.SecondLevelDomains.noConflict&&(a.SecondLevelDomains=m.SecondLevelDomains.noConflict()),a;m.URI===this&&(m.URI= +C);return this};g.build=function(a){if(!0===a)this._deferred_build=!0;else if(void 0===a||this._deferred_build)this._string=d.build(this._parts),this._deferred_build=!1;return this};g.clone=function(){return new d(this)};g.valueOf=g.toString=function(){return this.build(!1)._string};g.protocol=u("protocol");g.username=u("username");g.password=u("password");g.hostname=u("hostname");g.port=u("port");g.query=I("query","?");g.fragment=I("fragment","#");g.search=function(a,b){var c=this.query(a,b);return"string"=== +typeof c&&c.length?"?"+c:c};g.hash=function(a,b){var c=this.fragment(a,b);return"string"===typeof c&&c.length?"#"+c:c};g.pathname=function(a,b){if(void 0===a||!0===a){var c=this._parts.path||(this._parts.hostname?"/":"");return a?(this._parts.urn?d.decodeUrnPath:d.decodePath)(c):c}this._parts.path=this._parts.urn?a?d.recodeUrnPath(a):"":a?d.recodePath(a):"/";this.build(!b);return this};g.path=g.pathname;g.href=function(a,b){var c;if(void 0===a)return this.toString();this._string="";this._parts=d._parts(); +var e=a instanceof d,f="object"===typeof a&&(a.hostname||a.path||a.pathname);a.nodeName&&(f=d.getDomAttribute(a),a=a[f]||"",f=!1);!e&&f&&void 0!==a.pathname&&(a=a.toString());if("string"===typeof a||a instanceof String)this._parts=d.parse(String(a),this._parts);else if(e||f){e=e?a._parts:a;for(c in e)"query"!==c&&y.call(this._parts,c)&&(this._parts[c]=e[c]);e.query&&this.query(e.query,!1)}else throw new TypeError("invalid input");this.build(!b);return this};g.is=function(a){var b=!1,c=!1,e=!1,f=!1, +h=!1,A=!1,J=!1,M=!this._parts.urn;this._parts.hostname&&(M=!1,c=d.ip4_expression.test(this._parts.hostname),e=d.ip6_expression.test(this._parts.hostname),b=c||e,h=(f=!b)&&l&&l.has(this._parts.hostname),A=f&&d.idn_expression.test(this._parts.hostname),J=f&&d.punycode_expression.test(this._parts.hostname));switch(a.toLowerCase()){case "relative":return M;case "absolute":return!M;case "domain":case "name":return f;case "sld":return h;case "ip":return b;case "ip4":case "ipv4":case "inet4":return c;case "ip6":case "ipv6":case "inet6":return e; +case "idn":return A;case "url":return!this._parts.urn;case "urn":return!!this._parts.urn;case "punycode":return J}return null};var t=g.protocol,D=g.port,x=g.hostname;g.protocol=function(a,b){if(a&&(a=a.replace(/:(\/\/)?$/,""),!a.match(d.protocol_expression)))throw new TypeError('Protocol "'+a+"\" contains characters other than [A-Z0-9.+-] or doesn't start with [A-Z]");return t.call(this,a,b)};g.scheme=g.protocol;g.port=function(a,b){if(this._parts.urn)return void 0===a?"":this;void 0!==a&&(0===a&& +(a=null),a&&(a+="",":"===a.charAt(0)&&(a=a.substring(1)),d.ensureValidPort(a)));return D.call(this,a,b)};g.hostname=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0!==a){var c={preventInvalidHostname:this._parts.preventInvalidHostname};if("/"!==d.parseHost(a,c))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');a=c.hostname;this._parts.preventInvalidHostname&&d.ensureValidHostname(a,this._parts.protocol)}return x.call(this,a,b)};g.origin=function(a, +b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){var c=this.protocol();return this.authority()?(c?c+"://":"")+this.authority():""}c=d(a);this.protocol(c.protocol()).authority(c.authority()).build(!b);return this};g.host=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a)return this._parts.hostname?d.buildHost(this._parts):"";if("/"!==d.parseHost(a,this._parts))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');this.build(!b);return this}; +g.authority=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a)return this._parts.hostname?d.buildAuthority(this._parts):"";if("/"!==d.parseAuthority(a,this._parts))throw new TypeError('Hostname "'+a+'" contains characters other than [A-Z0-9.-]');this.build(!b);return this};g.userinfo=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){var c=d.buildUserinfo(this._parts);return c?c.substring(0,c.length-1):c}"@"!==a[a.length-1]&&(a+="@");d.parseUserinfo(a, +this._parts);this.build(!b);return this};g.resource=function(a,b){if(void 0===a)return this.path()+this.search()+this.hash();var c=d.parse(a);this._parts.path=c.path;this._parts.query=c.query;this._parts.fragment=c.fragment;this.build(!b);return this};g.subdomain=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.length-this.domain().length-1;return this._parts.hostname.substring(0,c)||""}c=this._parts.hostname.length- +this.domain().length;c=this._parts.hostname.substring(0,c);c=new RegExp("^"+q(c));a&&"."!==a.charAt(a.length-1)&&(a+=".");if(-1!==a.indexOf(":"))throw new TypeError("Domains cannot contain colons");a&&d.ensureValidHostname(a,this._parts.protocol);this._parts.hostname=this._parts.hostname.replace(c,a);this.build(!b);return this};g.domain=function(a,b){if(this._parts.urn)return void 0===a?"":this;"boolean"===typeof a&&(b=a,a=void 0);if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c= +this._parts.hostname.match(/\./g);if(c&&2>c.length)return this._parts.hostname;c=this._parts.hostname.length-this.tld(b).length-1;c=this._parts.hostname.lastIndexOf(".",c-1)+1;return this._parts.hostname.substring(c)||""}if(!a)throw new TypeError("cannot set domain empty");if(-1!==a.indexOf(":"))throw new TypeError("Domains cannot contain colons");d.ensureValidHostname(a,this._parts.protocol);!this._parts.hostname||this.is("IP")?this._parts.hostname=a:(c=new RegExp(q(this.domain())+"$"),this._parts.hostname= +this._parts.hostname.replace(c,a));this.build(!b);return this};g.tld=function(a,b){if(this._parts.urn)return void 0===a?"":this;"boolean"===typeof a&&(b=a,a=void 0);if(void 0===a){if(!this._parts.hostname||this.is("IP"))return"";var c=this._parts.hostname.lastIndexOf(".");c=this._parts.hostname.substring(c+1);return!0!==b&&l&&l.list[c.toLowerCase()]?l.get(this._parts.hostname)||c:c}if(a)if(a.match(/[^a-zA-Z0-9-]/))if(l&&l.is(a))c=new RegExp(q(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(c, +a);else throw new TypeError('TLD "'+a+'" contains characters other than [A-Z0-9]');else{if(!this._parts.hostname||this.is("IP"))throw new ReferenceError("cannot set TLD on non-domain host");c=new RegExp(q(this.tld())+"$");this._parts.hostname=this._parts.hostname.replace(c,a)}else throw new TypeError("cannot set TLD empty");this.build(!b);return this};g.directory=function(a,b){if(this._parts.urn)return void 0===a?"":this;if(void 0===a||!0===a){if(!this._parts.path&&!this._parts.hostname)return""; +if("/"===this._parts.path)return"/";var c=this._parts.path.length-this.filename().length-1;c=this._parts.path.substring(0,c)||(this._parts.hostname?"/":"");return a?d.decodePath(c):c}c=this._parts.path.length-this.filename().length;c=this._parts.path.substring(0,c);c=new RegExp("^"+q(c));this.is("relative")||(a||(a="/"),"/"!==a.charAt(0)&&(a="/"+a));a&&"/"!==a.charAt(a.length-1)&&(a+="/");a=d.recodePath(a);this._parts.path=this._parts.path.replace(c,a);this.build(!b);return this};g.filename=function(a, +b){if(this._parts.urn)return void 0===a?"":this;if("string"!==typeof a){if(!this._parts.path||"/"===this._parts.path)return"";var c=this._parts.path.lastIndexOf("/");c=this._parts.path.substring(c+1);return a?d.decodePathSegment(c):c}c=!1;"/"===a.charAt(0)&&(a=a.substring(1));a.match(/\.?\//)&&(c=!0);var e=new RegExp(q(this.filename())+"$");a=d.recodePath(a);this._parts.path=this._parts.path.replace(e,a);c?this.normalizePath(b):this.build(!b);return this};g.suffix=function(a,b){if(this._parts.urn)return void 0=== +a?"":this;if(void 0===a||!0===a){if(!this._parts.path||"/"===this._parts.path)return"";var c=this.filename(),e=c.lastIndexOf(".");if(-1===e)return"";c=c.substring(e+1);c=/^[a-z0-9%]+$/i.test(c)?c:"";return a?d.decodePathSegment(c):c}"."===a.charAt(0)&&(a=a.substring(1));if(c=this.suffix())e=a?new RegExp(q(c)+"$"):new RegExp(q("."+c)+"$");else{if(!a)return this;this._parts.path+="."+d.recodePath(a)}e&&(a=d.recodePath(a),this._parts.path=this._parts.path.replace(e,a));this.build(!b);return this};g.segment= +function(a,b,c){var e=this._parts.urn?":":"/",f=this.path(),h="/"===f.substring(0,1);f=f.split(e);void 0!==a&&"number"!==typeof a&&(c=b,b=a,a=void 0);if(void 0!==a&&"number"!==typeof a)throw Error('Bad segment "'+a+'", must be 0-based integer');h&&f.shift();0>a&&(a=Math.max(f.length+a,0));if(void 0===b)return void 0===a?f:f[a];if(null===a||void 0===f[a])if(z(b)){f=[];a=0;for(var A=b.length;a{}"`^| \\]/;l.expand=function(k,p,B){var v=z[k.operator],K=v.named?"Named":"Unnamed";k=k.variables;var F=[],u,I;for(I=0;u=k[I];I++){var C=p.get(u.name);if(0===C.type&&B&&B.strict)throw Error('Missing expansion value for variable "'+ +u.name+'"');if(C.val.length){if(1 Date: Wed, 16 Dec 2020 20:13:49 -0500 Subject: [PATCH 226/234] Updated taseditor.hnd file. Helpndoc 7.0.0.119 --- vc/Help/taseditor.hnd | Bin 2203648 -> 2215936 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/vc/Help/taseditor.hnd b/vc/Help/taseditor.hnd index 911c8ce99f026774aa756c92447911e2ecbd23c5..ca46ac21912ca672a20eeb797a8c70dd7974436a 100644 GIT binary patch delta 2662 zcmeHJUrbwN6hHTtdwc(XZISV}mMUbRl>V7nB9m}|5!W~ngt}oI6r^q#0kfjn7L8n@ zcMr<4S?!IOWnf}5MH96NH9RQB#3!RO#LVbScp}jUVQQEQk$Aq+l5QH4@#Mq$<@ep* zbARW2=bZ1~nOHQLiJ8;P*>bKQfOVg%Y-0L9imvuaY8X^jFjRm<@Jw@Ry8lT>gaZJE zY+%p2$%e9rw{sC&jQxQ<#cVR~Gac|JB;h{%ocD_o-W^0UJunO-5QAgTfX@-Agl1@m zPH3m*y-|%1x{=imV=xNi$U2z$cQnIAK4lg4sJyr623Gcq`*DS@rTY6}08Vb}4nd|_ z&Y##8hs>8!-7N;nsl|P#B;FUvO2^T=+^AVis6#*7v#k=X(f5;Ejp}>)MBeSo({Beq zvi#eeZx>p^g20FA7_IOu9LE;RL`eOhBj)mQlO~SyubE23;&lZ9cpj|TH;JD5F1}j{ z09!#MOu0*(1M(WVTlra;R$AqCc~^ihg&YS;* zrq7}FaJ4Ahp0x~BQ4VsYIVq*N6l5&7~BVflIW0nu$sWA#IxKl=v zbJbc5+NMq2X6gl|&Y3!I>UL8XOkFf}$<$?2S4>@<*R_HVZN-qZ>}y&*lS~X$M)w(! zdeNu`Y86kN<9NC}g-iblwA_u)acp#?qY#IO;W?DhojQzrIR^cSS0#5Mv}B~mu4+k5 zgasgnwTl{Wp}*DKIeZ_)A$)JdNaTJaA{f;f*LOC^#DRL_LBSArVgjQ%mf6g48c`y+ zWHA2pV=Q@36^daFV2(Lr2@Z0>nk*wliFYqo(DggX-DB@E)WioXF>7&E(;0hObdl?- zave%AeDW5l*S<+;%T+wT0Ymo5#NK7kemY^>KckSRAu~G*Sm$uF@oeg^Rgz1c_*4ulioLKGtIKolW%A&L1ASr88+qlzm&P!c^i-Yp9d0Oc{N$LRT)kVGtOAUPHAO zN7!a7dck|ZIyA;MxkC^D9|R$k>G$G&K_v|+*#iw$@H1Q6eAHXs#0j|MMeFksR;S7{ zuX7wnLO?=z3Dl6V@sM9MM7$SoeOKI+^yVL5PCi4pPQ3rgOR7_O=XQDUe<%;`Rg#xv zPSmadIZGbUuHdwPt$F%fypNVkdAEP&@XIT03LkOuZdx$qIQWfToc>V824Xa97SFM0 zc3o(ZVghhVycLe7wbkcMoYHX~FGu{8d0tS6tFI!yw}y-qXxGD~@NTimqLh!D+yyua zn}DxyRD26W+_mVYn)Y&74gbb3#O}d*@g&}|9NvZK*ckqC!lDcu^R`{n=;O`#?J^RN zWQkAqkiBGxHT@*=8pcly7N*nv VMyW7v19W&wf4O5w-B>F1{sCUHt+)UH From a2e4b6bdaf1ebe28e7ec53827821fd7bfbd017e6 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Wed, 16 Dec 2020 20:26:42 -0500 Subject: [PATCH 227/234] Added notes to help doc readme file that mention that the fceux.hnd and taseditor.hnd files have been updated to the HelpNDoc 7.0.0.119 format. --- vc/Help/readme.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vc/Help/readme.txt b/vc/Help/readme.txt index e4deb0c5..7cf41f2e 100644 --- a/vc/Help/readme.txt +++ b/vc/Help/readme.txt @@ -1,6 +1,10 @@ -This .hnd files are used to create documentation. -Made with HelpNDoc v3.0 Freeware Version. +These .hnd files are used to create documentation. +Originally made with HelpNDoc v3.0 Freeware Version. +fceux.hnd has been updated to HelpNDoc v7.0 format (no longer compatible with v3) +taseditor.hnd has been updated to HelpNDoc v7.0 format + +taseditor-ru.hnd is assumed to be still be v3.0 After compiling the docs into CHM/HTML format, you should do the following: From 2b0d966b449df91696b8b5c2f375e6248830230c Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Wed, 16 Dec 2020 21:38:04 -0500 Subject: [PATCH 228/234] Force inclusion of web files that start with an '_' --- _config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_config.yml b/_config.yml index 80eccb95..f270cc5a 100644 --- a/_config.yml +++ b/_config.yml @@ -5,6 +5,13 @@ # - web/ # - fceux.png # - index.html +include: +- web/help/_translations.js +- web/help/_keywords.json +- web/help/_toc.json +- web/help/taseditor/_translations.json +- web/help/taseditor/_keywords.json +- web/help/taseditor/_toc.json exclude: - attic - fceux-server From 022b36b6ea79279b3c65dc452d63ae4da64616f7 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Wed, 16 Dec 2020 21:55:36 -0500 Subject: [PATCH 229/234] Try #2 for getting _ files to be included by jeykll --- _config.yml | 79 +++++++++++++++++++++++++++-------------------------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/_config.yml b/_config.yml index f270cc5a..7372eef1 100644 --- a/_config.yml +++ b/_config.yml @@ -6,43 +6,44 @@ # - fceux.png # - index.html include: -- web/help/_translations.js -- web/help/_keywords.json -- web/help/_toc.json -- web/help/taseditor/_translations.json -- web/help/taseditor/_keywords.json -- web/help/taseditor/_toc.json + - web/help/_translations.js + - web/help/_keywords.json + - web/help/_toc.json + - web/help/taseditor/_translations.json + - web/help/taseditor/_keywords.json + - web/help/taseditor/_toc.json + exclude: -- attic -- fceux-server -- getSDLKey -- gfceu -- m4 -- output -- pipelines -- src -- vc -- .gitignore -- COPYING -- ChangeLog -- INSTALL -- Makefile.am -- NEWS -- NewPPUtests.txt -- README -- STYLE-GUIDELINES-SDL -- TODO-SDL -- _config.yml -- appveyor.yml -- autogen.sh -- azure-pipelines.yml -- changelog.txt -- configure.ac -- doxygen -- fceux.desktop -- readme.md -- fceux-server/fceux-net-server.exe -- vc/BizHawk.Build.Tool.exe -- vc/pscp.exe -- vc/upx.exe -- vc/zip.exe + - attic + - fceux-server + - getSDLKey + - gfceu + - m4 + - output + - pipelines + - src + - vc + - .gitignore + - COPYING + - ChangeLog + - INSTALL + - Makefile.am + - NEWS + - NewPPUtests.txt + - README + - STYLE-GUIDELINES-SDL + - TODO-SDL + - _config.yml + - appveyor.yml + - autogen.sh + - azure-pipelines.yml + - changelog.txt + - configure.ac + - doxygen + - fceux.desktop + - readme.md + - fceux-server/fceux-net-server.exe + - vc/BizHawk.Build.Tool.exe + - vc/pscp.exe + - vc/upx.exe + - vc/zip.exe From 68d5b723b566b710a390e47df7c7d4b86e5abf79 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Wed, 16 Dec 2020 21:59:16 -0500 Subject: [PATCH 230/234] Try #3 for web page. --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 7372eef1..c810351e 100644 --- a/_config.yml +++ b/_config.yml @@ -9,7 +9,7 @@ include: - web/help/_translations.js - web/help/_keywords.json - web/help/_toc.json - - web/help/taseditor/_translations.json + - web/help/taseditor/_translations.js - web/help/taseditor/_keywords.json - web/help/taseditor/_toc.json From a3e852df0cde27f65887fb1b2e2416e29338ebc8 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Wed, 16 Dec 2020 22:19:36 -0500 Subject: [PATCH 231/234] Try #4 --- _config.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/_config.yml b/_config.yml index c810351e..a624af3e 100644 --- a/_config.yml +++ b/_config.yml @@ -5,13 +5,6 @@ # - web/ # - fceux.png # - index.html -include: - - web/help/_translations.js - - web/help/_keywords.json - - web/help/_toc.json - - web/help/taseditor/_translations.js - - web/help/taseditor/_keywords.json - - web/help/taseditor/_toc.json exclude: - attic @@ -47,3 +40,11 @@ exclude: - vc/pscp.exe - vc/upx.exe - vc/zip.exe + +include: + - web/help/_translations.js + - web/help/_keywords.json + - web/help/_toc.json + - web/help/taseditor/_translations.js + - web/help/taseditor/_keywords.json + - web/help/taseditor/_toc.json From aae05ff0bf5d625776aee75248aa26009f7840c3 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Wed, 16 Dec 2020 23:02:51 -0500 Subject: [PATCH 232/234] Added a wildcard pattern to force jekyll to include _*.js and _*.json files. --- _config.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/_config.yml b/_config.yml index a624af3e..01659313 100644 --- a/_config.yml +++ b/_config.yml @@ -41,10 +41,5 @@ exclude: - vc/upx.exe - vc/zip.exe -include: - - web/help/_translations.js - - web/help/_keywords.json - - web/help/_toc.json - - web/help/taseditor/_translations.js - - web/help/taseditor/_keywords.json - - web/help/taseditor/_toc.json +# Include all .js and .json files that start with an '_' +include: [ "_*.js", "_*.json" ] From f08b853f19a8995eedf2e25b45eb67d371e23c10 Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 18 Dec 2020 19:42:40 -0500 Subject: [PATCH 233/234] update aboutbox a bit --- src/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.cpp b/src/config.cpp index f998a749..fcb3a515 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -18,10 +18,10 @@ char *FCEUI_GetAboutString() { const char *aboutTemplate = FCEU_NAME_AND_VERSION "\n\n" "Administrators:\n" - "zeromus, punkrockguy318 (Lukas Sabota), feos\n" + "zeromus, mjbudd77, feos\n" "\n" "Current Contributors:\n" - "CaH4e3, rainwarrior\n" + "CaH4e3, rainwarrior, owomomo, punkrockguy318\n" "\n" "Past Contributors:\n" "xhainingx, gocha, AnS\n" From b01728f62045b976775553e035db044c1437a937 Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 18 Dec 2020 19:59:09 -0500 Subject: [PATCH 234/234] make scm script use lightweight tags --- vc/defaultconfig/make_scmrev.h.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vc/defaultconfig/make_scmrev.h.js b/vc/defaultconfig/make_scmrev.h.js index 3bb66409..09145292 100644 --- a/vc/defaultconfig/make_scmrev.h.js +++ b/vc/defaultconfig/make_scmrev.h.js @@ -3,7 +3,7 @@ var oFS = new ActiveXObject("Scripting.FileSystemObject"); var outfile = "./userconfig/scmrev.h"; var cmd_revision = " rev-parse HEAD"; -var cmd_describe = " describe --always --long --dirty"; +var cmd_describe = " describe --tags --always --long --dirty"; var cmd_branch = " rev-parse --abbrev-ref HEAD"; function GetGitExe()