123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752 |
- #include "texmgr.h"
- #include "ns-eel2/ns-eel.h"
- #include "support.h"
- #include "plugin.h"
- #include "utility.h"
- texmgr::texmgr()
- {
- }
- texmgr::~texmgr()
- {
-
-
- }
- void texmgr::Finish()
- {
- for (int i=0; i<NUM_TEX; i++)
- {
- KillTex(i);
-
- NSEEL_VM_free(m_tex[i].tex_eel_ctx);
- }
-
- }
- void texmgr::Init(LPDIRECT3DDEVICE9 lpDD)
- {
- m_lpDD = lpDD;
- for (int i=0; i<NUM_TEX; i++)
- {
- m_tex[i].pSurface = NULL;
- m_tex[i].szFileName[0] = 0;
- m_tex[i].m_codehandle = NULL;
- m_tex[i].m_szExpr[0] = 0;
- m_tex[i].tex_eel_ctx = NSEEL_VM_alloc();
- }
- }
- int texmgr::LoadTex(wchar_t *szFilename, int iSlot, char *szInitCode, char *szCode, float time, int frame, unsigned int ck)
- {
- if (iSlot < 0) return TEXMGR_ERR_BAD_INDEX;
- if (iSlot >= NUM_TEX) return TEXMGR_ERR_BAD_INDEX;
-
-
- bool bTextureInstanced = false;
- {
- for (int x=0; x<NUM_TEX; x++)
- if (m_tex[x].pSurface && _wcsicmp(m_tex[x].szFileName, szFilename)==0)
- {
- memcpy(&m_tex[iSlot], &m_tex[x], sizeof(td_tex));
- m_tex[iSlot].m_szExpr[0] = 0;
- m_tex[iSlot].m_codehandle = 0;
- bTextureInstanced = true;
- break;
- }
- }
- if (!bTextureInstanced)
- {
-
-
- KillTex(iSlot);
- wcscpy(m_tex[iSlot].szFileName, szFilename);
- D3DXIMAGE_INFO info;
- HRESULT hr = pCreateTextureFromFileExW(
- m_lpDD,
- szFilename,
- D3DX_DEFAULT,
- D3DX_DEFAULT,
- D3DX_DEFAULT,
- 0,
- D3DFMT_UNKNOWN,
- D3DPOOL_DEFAULT,
- D3DX_DEFAULT,
- D3DX_DEFAULT,
- 0xFF000000 | ck,
- &info,
- NULL,
- &m_tex[iSlot].pSurface
- );
-
- if (hr != D3D_OK)
- {
- switch(hr)
- {
- case E_OUTOFMEMORY:
- case D3DERR_OUTOFVIDEOMEMORY:
- return TEXMGR_ERR_OUTOFMEM;
- default:
- return TEXMGR_ERR_BADFILE;
- }
- }
- m_tex[iSlot].img_w = info.Width;
- m_tex[iSlot].img_h = info.Height;
-
- }
-
- m_tex[iSlot].fStartTime = time;
- m_tex[iSlot].nStartFrame = frame;
-
- int ret = TEXMGR_ERR_SUCCESS;
-
- if (!RunInitCode(iSlot, szInitCode))
- ret |= TEXMGR_WARN_ERROR_IN_INIT_CODE;
-
-
- strcpy(m_tex[iSlot].m_szExpr, szCode);
- FreeCode(iSlot);
- if (!RecompileExpressions(iSlot))
- ret |= TEXMGR_WARN_ERROR_IN_REG_CODE;
-
-
-
- return ret;
- }
- void texmgr::KillTex(int iSlot)
- {
- if (iSlot < 0) return;
- if (iSlot >= NUM_TEX) return;
-
-
- if (m_tex[iSlot].pSurface)
- {
-
- int refcount = 0;
- for (int x=0; x<NUM_TEX; x++)
- if (m_tex[x].pSurface == m_tex[iSlot].pSurface)
- refcount++;
- if (refcount==1)
- m_tex[iSlot].pSurface->Release();
- m_tex[iSlot].pSurface = NULL;
- }
- m_tex[iSlot].szFileName[0] = 0;
- FreeCode(iSlot);
- }
- void texmgr::StripLinefeedCharsAndComments(char *src, char *dest)
- {
-
-
-
- int i2 = 0;
- int len = strlen(src);
- int bComment = false;
- for (int i=0; i<len; i++)
- {
- if (bComment)
- {
- if (src[i] == LINEFEED_CONTROL_CHAR)
- bComment = false;
- }
- else
- {
- if ((src[i] =='\\' && src[i+1] =='\\') || (src[i] =='/' && src[i+1] =='/'))
- bComment = true;
- else if (src[i] != LINEFEED_CONTROL_CHAR)
- dest[i2++] = src[i];
- }
- }
- dest[i2] = 0;
- }
- bool texmgr::RunInitCode(int iSlot, char *szInitCode)
- {
-
-
-
- FreeCode(iSlot);
- FreeVars(iSlot);
- RegisterBuiltInVariables(iSlot);
- strcpy(m_tex[iSlot].m_szExpr, szInitCode);
- bool ret = RecompileExpressions(iSlot);
-
-
- *(m_tex[iSlot].var_x) = 0.5;
- *(m_tex[iSlot].var_y) = 0.5;
- *(m_tex[iSlot].var_sx) = 1.0;
- *(m_tex[iSlot].var_sy) = 1.0;
- *(m_tex[iSlot].var_repeatx) = 1.0;
- *(m_tex[iSlot].var_repeaty) = 1.0;
- *(m_tex[iSlot].var_rot) = 0.0;
- *(m_tex[iSlot].var_flipx) = 0.0;
- *(m_tex[iSlot].var_flipy) = 0.0;
- *(m_tex[iSlot].var_r) = 1.0;
- *(m_tex[iSlot].var_g) = 1.0;
- *(m_tex[iSlot].var_b) = 1.0;
- *(m_tex[iSlot].var_a) = 1.0;
- *(m_tex[iSlot].var_blendmode)= 0.0;
- *(m_tex[iSlot].var_done) = 0.0;
- *(m_tex[iSlot].var_burn) = 1.0;
- #ifndef _NO_EXPR_
- if (m_tex[iSlot].m_codehandle)
- NSEEL_code_execute(m_tex[iSlot].m_codehandle);
- #endif
- return ret;
- }
- bool texmgr::RecompileExpressions(int iSlot)
- {
- char *expr = m_tex[iSlot].m_szExpr;
-
-
- {
- char *p = expr;
- while (*p==' ' || *p==LINEFEED_CONTROL_CHAR) p++;
- if (*p == 0) expr[0] = 0;
- }
-
-
- char buf[sizeof(m_tex[iSlot].m_szExpr)];
- StripLinefeedCharsAndComments(expr, buf);
- if (buf[0])
- {
- #ifndef _NO_EXPR_
-
-
-
- if ( ! (m_tex[iSlot].m_codehandle = NSEEL_code_compile(m_tex[iSlot].tex_eel_ctx, buf)))
- {
-
-
-
-
- }
- else
- {
-
-
- }
-
-
- return (m_tex[iSlot].m_codehandle != 0);
- #endif
- }
- return true;
- }
- void texmgr::FreeVars(int iSlot)
- {
-
- }
- void texmgr::FreeCode(int iSlot)
- {
-
- if (m_tex[iSlot].m_codehandle)
- {
- NSEEL_code_free(m_tex[iSlot].m_codehandle);
- m_tex[iSlot].m_codehandle = NULL;
- }
- }
- void texmgr::RegisterBuiltInVariables(int iSlot)
- {
- NSEEL_VMCTX eel_ctx = m_tex[iSlot].tex_eel_ctx;
- NSEEL_VM_resetvars(eel_ctx);
-
-
- m_tex[iSlot].var_time = NSEEL_VM_regvar(eel_ctx, "time");
- m_tex[iSlot].var_frame = NSEEL_VM_regvar(eel_ctx, "frame");
- m_tex[iSlot].var_fps = NSEEL_VM_regvar(eel_ctx, "fps");
- m_tex[iSlot].var_progress = NSEEL_VM_regvar(eel_ctx, "progress");
- m_tex[iSlot].var_bass = NSEEL_VM_regvar(eel_ctx, "bass");
- m_tex[iSlot].var_bass_att = NSEEL_VM_regvar(eel_ctx, "bass_att");
- m_tex[iSlot].var_mid = NSEEL_VM_regvar(eel_ctx, "mid");
- m_tex[iSlot].var_mid_att = NSEEL_VM_regvar(eel_ctx, "mid_att");
- m_tex[iSlot].var_treb = NSEEL_VM_regvar(eel_ctx, "treb");
- m_tex[iSlot].var_treb_att = NSEEL_VM_regvar(eel_ctx, "treb_att");
-
-
- m_tex[iSlot].var_x = NSEEL_VM_regvar(eel_ctx, "x");
- m_tex[iSlot].var_y = NSEEL_VM_regvar(eel_ctx, "y");
- m_tex[iSlot].var_sx = NSEEL_VM_regvar(eel_ctx, "sx");
- m_tex[iSlot].var_sy = NSEEL_VM_regvar(eel_ctx, "sy");
- m_tex[iSlot].var_repeatx = NSEEL_VM_regvar(eel_ctx, "repeatx");
- m_tex[iSlot].var_repeaty = NSEEL_VM_regvar(eel_ctx, "repeaty");
- m_tex[iSlot].var_rot = NSEEL_VM_regvar(eel_ctx, "rot");
- m_tex[iSlot].var_flipx = NSEEL_VM_regvar(eel_ctx, "flipx");
- m_tex[iSlot].var_flipy = NSEEL_VM_regvar(eel_ctx, "flipy");
- m_tex[iSlot].var_r = NSEEL_VM_regvar(eel_ctx, "r");
- m_tex[iSlot].var_g = NSEEL_VM_regvar(eel_ctx, "g");
- m_tex[iSlot].var_b = NSEEL_VM_regvar(eel_ctx, "b");
- m_tex[iSlot].var_a = NSEEL_VM_regvar(eel_ctx, "a");
- m_tex[iSlot].var_blendmode = NSEEL_VM_regvar(eel_ctx, "blendmode");
- m_tex[iSlot].var_done = NSEEL_VM_regvar(eel_ctx, "done");
- m_tex[iSlot].var_burn = NSEEL_VM_regvar(eel_ctx, "burn");
- }
|