1 #include <lib/actions/action.h>
2 #include <lib/base/init.h>
3 #include <lib/base/init_num.h>
4 #include <lib/actions/actionids.h>
11 - contexts that aren't compared as strings,
12 - maybe a lookup "device,key,flags" -> actions? (lazy validation, on bindAction)
14 - seperate native from python keys? (currently, if an action wasn't found, it's ignored.)
16 Sorry. I spent 3 days on thinking how this could be made better, and it just DID NOT WORKED OUT.
18 If you have a better idea, please tell me.
22 DEFINE_REF(eActionMap);
24 eActionMap *eActionMap::instance;
26 eActionMap::eActionMap()
31 eActionMap::~eActionMap()
36 RESULT eActionMap::getInstance(ePtr<eActionMap> &ptr)
45 void eActionMap::getInstance(eActionMap **ptr)
51 void eActionMap::bindAction(const std::string &context, int priority, int id, eWidget *widget)
55 bnd.m_context = context;
56 bnd.m_widget = widget;
59 m_bindings.insert(std::pair<int,eActionBinding>(priority, bnd));
62 void eActionMap::bindAction(const std::string &context, int priority, PyObject *function)
66 bnd.m_context = context;
70 m_bindings.insert(std::pair<int,eActionBinding>(priority, bnd));
73 void eActionMap::unbindAction(eWidget *widget, int id)
75 for (std::multimap<int, eActionBinding>::iterator i(m_bindings.begin()); i != m_bindings.end(); ++i)
76 if ((i->second.m_widget == widget) && (i->second.m_id == id))
83 void eActionMap::unbindAction(const std::string &context, PyObject *function)
85 for (std::multimap<int, eActionBinding>::iterator i(m_bindings.begin()); i != m_bindings.end(); ++i)
87 if (i->second.m_fnc && (PyObject_Compare(i->second.m_fnc, function) == 0))
89 Py_DECREF(i->second.m_fnc);
94 eFatal("unbindAction with illegal python reference");
98 void eActionMap::bindKey(const std::string &device, int key, int flags, const std::string &context, const std::string &action)
100 // first, search the actionlist table
102 for (i=0; i<sizeof(actions)/sizeof(*actions); ++i)
104 if ((actions[i].m_context == context) && (actions[i].m_action == action))
106 // we found a native action.
107 eNativeKeyBinding bind;
110 bind.m_flags = flags;
111 bind.m_action = actions[i].m_id;
112 m_native_keys.insert(std::pair<std::string,eNativeKeyBinding>(context, bind));
117 // we didn't find the action, so it must be a pythonAction
118 ePythonKeyBinding bind;
122 bind.m_flags = flags;
123 bind.m_action = action;
124 m_python_keys.insert(std::pair<std::string,ePythonKeyBinding>(context, bind));
127 void eActionMap::keyPressed(int device, int key, int flags)
129 std::list<std::pair<PyObject*,PyObject*> > call_list;
131 /* iterate active contexts. */
132 for (std::multimap<int,eActionBinding>::const_iterator c(m_bindings.begin()); c != m_bindings.end();)
134 std::multimap<int,eActionBinding>::const_iterator i = c;
136 /* is this a native context? */
137 if (i->second.m_widget)
139 /* is this a named context, i.e. not the wildcard? */
140 if (i->second.m_context.size())
142 std::multimap<std::string,eNativeKeyBinding>::const_iterator
143 k = m_native_keys.lower_bound(i->second.m_context),
144 e = m_native_keys.upper_bound(i->second.m_context);
149 // (k->second.m_device == m_device) &&
150 (k->second.m_key == key) &&
151 (k->second.m_flags & (1<<flags)))
153 if (i->second.m_widget->event(eWidget::evtAction, 0, (void*)k->second.m_action))
159 /* wildcard - get any keys. */
160 if (i->second.m_widget->event(eWidget::evtKey, (void*)key, (void*)flags))
163 } else if (i->second.m_fnc)
165 if (i->second.m_context.size())
167 std::multimap<std::string,ePythonKeyBinding>::const_iterator
168 k = m_python_keys.lower_bound(i->second.m_context),
169 e = m_python_keys.upper_bound(i->second.m_context);
174 // (k->second.m_device == m_device) &&
175 (k->second.m_key == key) &&
176 (k->second.m_flags & (1<<flags)))
178 PyObject *pArgs = PyTuple_New(2);
179 PyTuple_SetItem(pArgs, 0, PyString_FromString(k->first.c_str()));
180 PyTuple_SetItem(pArgs, 1, PyString_FromString(k->second.m_action.c_str()));
182 Py_INCREF(i->second.m_fnc);
183 call_list.push_back(std::pair<PyObject*,PyObject*>(i->second.m_fnc, pArgs));
189 PyObject *pArgs = PyTuple_New(2);
190 PyTuple_SetItem(pArgs, 0, PyInt_FromLong(key));
191 PyTuple_SetItem(pArgs, 1, PyInt_FromLong(flags));
192 Py_INCREF(i->second.m_fnc);
193 call_list.push_back(std::pair<PyObject*,PyObject*>(i->second.m_fnc, pArgs));
198 for (std::list<std::pair<PyObject*,PyObject*> >::iterator i(call_list.begin()); i != call_list.end(); ++i)
200 ePython::call(i->first, i->second);
202 Py_DECREF(i->second);
206 eAutoInitPtr<eActionMap> init_eActionMap(eAutoInitNumbers::actions, "eActionMap");