Git Product home page Git Product logo

qspellwork's Introduction

Github Releases

QSpellWork

QSpellWork is an application for searching and viewing information about spells in World of Warcraft. Spell information is read from client DBC files. QSpellWork works with:

  • World of Warcraft (Vanilla)
  • The Burning Crusade
  • Wrath of the Lich King

This application is written in C++ using the Qt 5 GUI framework.

How to use scripted filter

QSpellwork binds the metaobject to the script engine as spell and you can write complex conditions in the JavaScript language. Also binds all enum constants. You can use inline or function conditions.

Examples

Inline condition:

spell.SpellFamilyName == SPELLFAMILY_MAGE && spell.SpellFamilyFlags & 0x1 && spell.hasAura(3)

Same as function condition:

function() {
    var hasAura = false;
    for (var i = 0; i < 3; i++) {
        if (spell.EffectApplyAuraName(i) == 3) {
            hasAura = true;
            break;
        }
    }
    return spell.SpellFamilyName == SPELLFAMILY_MAGE && spell.SpellFamilyFlags & 0x1 && hasAura;
}

You can also use the helper function hasAura(id):

function() {
    return spell.SpellFamilyName == SPELLFAMILY_MAGE && spell.SpellFamilyFlags & 0x1 && spell.hasAura(3);
}

Acknowledgements and Thanks

  • Chestr aka DiSlord โ€” for the idea and releasing the source of original SpellWork.
  • LordJZ and Konstantin โ€” for releasing the source of C# SpellWork
  • killerwife for active support and contributions

qspellwork's People

Contributors

bendol avatar killerwife avatar sidsukana avatar tremolo4 avatar warlockbugs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

qspellwork's Issues

Cannot use tool

Greetings, I download your tools but i'm having a problem, I cannot find any spells (or use it for that matter)

http://i.imgur.com/y2yhWBP.png

I edited plugins for 1.12.x & 2.4.3
http://i.imgur.com/tfUz8HU.png I pointed the dbc path to my path ( it doesn't show it here but in QSW.ini the path is saved).

althought I do have an error in debug.log which is

[0819/174833:ERROR:resource_bundle.cc(720)] Failed to load C:\Users\Dany\Desktop\qsw\resources\qtwebengine_devtools_resources.pak
Some features may not be available.

Bug: Targets

In newest release version Targets column is not displayed. In old one it looked like this:
Targets Mask = 0x00000040 (TARGET_FLAG_DEST_LOCATION)

Spawning additional windows

The current version albeit much better, suffers from the initial load up time being much bigger due to DB load.

Solution: Enable spawning more videos, which access the already loaded containers, enabling browsing vanilla through wotlk through same application through multiple windows, bypassing the load time when opening multiple applications.

Support all different versions in same gui.

Instead of having one DBC folder, have as many as there are client version you support.

(DBC1, DBC2) etc...

And load all that exists into QSW, and make them searchable together etc... So you can compare between patches too! :)

Just a suggestion ๐Ÿ‘

No spell icons?

Spell icons don't seem to work for me on the 2.0 version. I can't seem to see any spell icons at all.

Licensing

I can't find any information about licensing in QSpellWork. I have recently been playing around with integrating parts of the code in another tool I'm working on (you can check it out on my github, https://github.com/gemt/CreatureScripter, huge mess, complete wip), and was wondering, before I go too far down this path, what you would allow/not allow in terms of re-using QSpellWork in this manner.

improvements suggestions

  1. add possibility to read spell_template from SQL which includes all custom changes for development - most important in TBC and WOTLK where blizzard removed a plethora of spells
  2. add possibility for interrupt flags enum AND hover over them to display which one it has (found some mistakes in them)
  3. extend showing what values for each effect do, we know what the values do for 90% of effects at this point, I have no problem with providing that info
  4. add commandline option to directly launch given expansion, so its possible to make shortcut to given version without clicking anything, old QSW worked instantly without setup
  5. show reagents needed for a particular spell, also show area needed for particular spell

Spell attributes

Can you please update with spell attributes that have been made known? (possibly look in TrinityCore code, they have more found than cmangos)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.