Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
b0881d8e
Commit
b0881d8e
authored
Aug 02, 2012
by
Miguel Angel Ajo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scripting: fixed kicad compilation, cleanups
parent
5140c348
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
80 additions
and
70 deletions
+80
-70
CMakeLists.txt
CMakeLists.txt
+13
-0
appl_wxstruct.h
include/appl_wxstruct.h
+3
-14
CMakeLists.txt
pcbnew/CMakeLists.txt
+0
-6
pcbnew.cpp
pcbnew/pcbnew.cpp
+35
-46
python_scripting.cpp
scripting/python_scripting.cpp
+13
-2
python_scripting.h
scripting/python_scripting.h
+16
-2
No files found.
CMakeLists.txt
View file @
b0881d8e
...
@@ -256,6 +256,19 @@ if(WIN32 AND USE_WX_GRAPHICS_CONTEXT)
...
@@ -256,6 +256,19 @@ if(WIN32 AND USE_WX_GRAPHICS_CONTEXT)
check_find_package_result
(
GDI_PLUS_FOUND
"GDI+"
)
check_find_package_result
(
GDI_PLUS_FOUND
"GDI+"
)
endif
(
WIN32 AND USE_WX_GRAPHICS_CONTEXT
)
endif
(
WIN32 AND USE_WX_GRAPHICS_CONTEXT
)
# Find Python and other scripting resources
if
(
KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES
)
execute_process
(
COMMAND python2 -c
"import sys;print
\"
%s.%s
\"
%sys.version_info[0:2]"
OUTPUT_VARIABLE PYTHON_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE
)
set
(
PYTHON_DEST
"lib/python
${
PYTHON_VERSION
}
/dist-packages"
)
find_package
(
PythonLibs
)
include_directories
(
${
PYTHON_INCLUDE_PATH
}
./scripting
)
endif
(
KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES
)
# Automagically create version header file.
# Automagically create version header file.
include
(
CreateBzrVersionHeader
)
include
(
CreateBzrVersionHeader
)
create_bzr_version_header
()
create_bzr_version_header
()
...
...
include/appl_wxstruct.h
View file @
b0881d8e
...
@@ -36,10 +36,7 @@
...
@@ -36,10 +36,7 @@
#include <wx/config.h>
#include <wx/config.h>
#include <wx/filename.h>
#include <wx/filename.h>
#include <param_config.h>
#include <param_config.h>
#ifdef KICAD_SCRIPTING_EXPERIMENT
#include <Python.h>
#include <wx/wxPython/wxPython.h>
#endif
enum
EDA_APP_T
{
enum
EDA_APP_T
{
APP_UNKNOWN_T
,
APP_UNKNOWN_T
,
...
@@ -62,10 +59,7 @@ class wxHtmlHelpController;
...
@@ -62,10 +59,7 @@ class wxHtmlHelpController;
*/
*/
class
EDA_APP
:
public
wxApp
class
EDA_APP
:
public
wxApp
{
{
#ifdef KICAD_SCRIPTING_EXPERIMENT
private
:
PyThreadState
*
m_mainTState
;
#endif
protected
:
protected
:
/// Used mainly to handle default paths libs m_Id = APP_EESCHEMA_T, APP_PCBNEW_T ...
/// Used mainly to handle default paths libs m_Id = APP_EESCHEMA_T, APP_PCBNEW_T ...
EDA_APP_T
m_Id
;
EDA_APP_T
m_Id
;
...
@@ -123,12 +117,6 @@ public:
...
@@ -123,12 +117,6 @@ public:
* @return true if the application can be started.
* @return true if the application can be started.
*/
*/
bool
OnInit
();
// should this be virtual
bool
OnInit
();
// should this be virtual
#ifdef KICAD_SCRIPTING_EXPERIMENT
bool
Init_wxPython
();
#endif
// This is only called if OnInit() returned true so it's a good place to do
// any cleanup matching the initializations done there.
//// virtual int OnExit() ;// { return(0) ; }; // TODO FIX THIS HACK MUST BE VIRTUAL
wxHtmlHelpController
*
GetHtmlHelpController
()
{
return
m_HtmlCtrl
;
}
wxHtmlHelpController
*
GetHtmlHelpController
()
{
return
m_HtmlCtrl
;
}
...
@@ -421,6 +409,7 @@ public:
...
@@ -421,6 +409,7 @@ public:
* @param aIndex = insertion point
* @param aIndex = insertion point
*/
*/
void
InsertLibraryPath
(
const
wxString
&
aPaths
,
size_t
aIndex
);
void
InsertLibraryPath
(
const
wxString
&
aPaths
,
size_t
aIndex
);
};
};
/*
/*
...
...
pcbnew/CMakeLists.txt
View file @
b0881d8e
add_definitions
(
-DPCBNEW
)
add_definitions
(
-DPCBNEW
)
if
(
KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES
)
if
(
KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES
)
EXECUTE_PROCESS
(
COMMAND python2 -c
"import sys;print
\"
%s.%s
\"
%sys.version_info[0:2]"
OUTPUT_VARIABLE PYTHON_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE
)
SET
(
PYTHON_DEST
"lib/python
${
PYTHON_VERSION
}
/dist-packages"
)
file
(
MAKE_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
/scripting
)
file
(
MAKE_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
/scripting
)
FIND_PACKAGE
(
SWIG REQUIRED
)
FIND_PACKAGE
(
SWIG REQUIRED
)
INCLUDE
(
${
SWIG_USE_FILE
}
)
INCLUDE
(
${
SWIG_USE_FILE
}
)
FIND_PACKAGE
(
PythonLibs
)
INCLUDE_DIRECTORIES
(
${
PYTHON_INCLUDE_PATH
}
)
SET
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-DKICAD_SCRIPTING -DKICAD_SCRIPTING_MODULES"
)
endif
(
KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES
)
endif
(
KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES
)
...
@@ -25,7 +20,6 @@ include_directories(
...
@@ -25,7 +20,6 @@ include_directories(
../polygon
../polygon
../common/dialogs
../common/dialogs
./scripting
./scripting
../scripting
${
INC_AFTER
}
${
INC_AFTER
}
)
)
...
...
pcbnew/pcbnew.cpp
View file @
b0881d8e
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
*/
*/
#ifdef KICAD_SCRIPTING
#ifdef KICAD_SCRIPTING
#include <python_scripting.h>
#include <pcbnew_scripting_helpers.h>
#include <pcbnew_scripting_helpers.h>
#endif
#endif
#include <fctsys.h>
#include <fctsys.h>
...
@@ -51,12 +52,6 @@
...
@@ -51,12 +52,6 @@
#include <wildcards_and_files_ext.h>
#include <wildcards_and_files_ext.h>
#include <class_board.h>
#include <class_board.h>
#include <dialogs/dialog_scripting.h>
#ifdef KICAD_SCRIPTING
#include <python_scripting.h>
#endif
// Colors for layers and items
// Colors for layers and items
COLORS_DESIGN_SETTINGS
g_ColorsSettings
;
COLORS_DESIGN_SETTINGS
g_ColorsSettings
;
...
@@ -141,15 +136,11 @@ bool EDA_APP::OnInit()
...
@@ -141,15 +136,11 @@ bool EDA_APP::OnInit()
PCB_EDIT_FRAME
*
frame
=
NULL
;
PCB_EDIT_FRAME
*
frame
=
NULL
;
#ifdef KICAD_SCRIPTING
#ifdef KICAD_SCRIPTING
if
(
!
pcbnewInitPythonScripting
(
&
m_mainTState
)
)
if
(
!
pcbnewInitPythonScripting
()
)
{
{
return
false
;
return
false
;
}
}
#endif
#endif
#ifdef KICAD_SCRIPTING_EXPERIMENT
MyFrame
*
zz
=
new
MyFrame
(
_T
(
"Embedded wxPython Test"
),
wxDefaultPosition
,
wxSize
(
700
,
600
));
zz
->
Show
(
true
);
#endif
InitEDA_Appl
(
wxT
(
"Pcbnew"
),
APP_PCBNEW_T
);
InitEDA_Appl
(
wxT
(
"Pcbnew"
),
APP_PCBNEW_T
);
...
@@ -245,6 +236,11 @@ Changing extension to .brd." ), GetChars( fn.GetFullPath() ) );
...
@@ -245,6 +236,11 @@ Changing extension to .brd." ), GetChars( fn.GetFullPath() ) );
frame
->
SetFocus
();
frame
->
SetFocus
();
frame
->
GetCanvas
()
->
SetFocus
();
frame
->
GetCanvas
()
->
SetFocus
();
#ifdef KICAD_SCRIPTING_EXPERIMENT
#ifdef KICAD_SCRIPTING_EXPERIMENT
MyFrame
*
zz
=
new
MyFrame
(
_T
(
"Embedded wxPython Test"
),
wxDefaultPosition
,
wxSize
(
700
,
600
));
zz
->
Show
(
true
);
zz
->
ScriptingSetPcbEditFrame
(
frame
);
// make the frame available to my python thing
zz
->
ScriptingSetPcbEditFrame
(
frame
);
// make the frame available to my python thing
// now to find a way to use it for something useful
// now to find a way to use it for something useful
#endif
#endif
...
@@ -261,39 +257,14 @@ int EDA_APP::OnExit() {
...
@@ -261,39 +257,14 @@ int EDA_APP::OnExit() {
// in OnExit instead of ~MyApp because OnExit is only called if OnInit is
// in OnExit instead of ~MyApp because OnExit is only called if OnInit is
// successful.
// successful.
#if KICAD_SCRIPTING_EXPERIMENT
#if KICAD_SCRIPTING_EXPERIMENT
wxPyEndAllowThreads(m_mainTState);
pcbnewFinishPythonScripting();
Py_Finalize();
#endif
#endif
return 0;
return 0;
}
}
#endif
#endif
#ifdef KICAD_SCRIPTING_EXPERIMENT
#ifdef KICAD_SCRIPTING_EXPERIMENT
// stuff copied from WxPython examples
bool
EDA_APP
::
Init_wxPython
()
{
// Initialize Python
Py_Initialize
();
PyEval_InitThreads
();
// Load the wxPython core API. Imports the wx._core_ module and sets a
// local pointer to a function table located there. The pointer is used
// internally by the rest of the API functions.
if
(
!
wxPyCoreAPI_IMPORT
()
)
{
wxLogError
(
wxT
(
"***** Error importing the wxPython API! *****"
));
PyErr_Print
();
Py_Finalize
();
return
false
;
}
// Save the current Python thread state and release the
// Global Interpreter Lock.
m_mainTState
=
wxPyBeginAllowThreads
();
return
true
;
}
//
MyFrame
::
MyFrame
(
const
wxString
&
title
,
const
wxPoint
&
pos
,
const
wxSize
&
size
)
MyFrame
::
MyFrame
(
const
wxString
&
title
,
const
wxPoint
&
pos
,
const
wxSize
&
size
)
:
wxFrame
(
NULL
,
-
1
,
title
,
pos
,
size
,
:
wxFrame
(
NULL
,
-
1
,
title
,
pos
,
size
,
wxDEFAULT_FRAME_STYLE
|
wxNO_FULL_REPAINT_ON_RESIZE
)
wxDEFAULT_FRAME_STYLE
|
wxNO_FULL_REPAINT_ON_RESIZE
)
...
@@ -379,18 +350,35 @@ sys.stdin = sys.stderr = output\n";
...
@@ -379,18 +350,35 @@ sys.stdin = sys.stderr = output\n";
wxPyEndBlockThreads
(
blocked
);
wxPyEndBlockThreads
(
blocked
);
}
}
const
char
*
python_code2
=
"\
import sys
\n
import os
\n
\
sys.path.append(os.path.expanduser('~/.kicad_plugins'))
\n
\
wxWindow
*
MyFrame
::
DoPythonStuff
(
wxWindow
*
parent
)
import embedded_sample
\n
\
{
const
char
*
pycrust_panel
=
"\
import wx
\n
\
from wx.py import shell, version
\n
\
\n
\
class MyPanel(wx.Panel):
\n
\
\t
def __init__(self, parent):
\n
\
\t\t
wx.Panel.__init__(self, parent, -1, style=wx.SUNKEN_BORDER)
\n
\
\t\t\n
\
\t\t
text = wx.StaticText(self, -1,
\n
\
\t\t\t\t\"
Everything on this side of the splitter comes from Python.
\"
)
\n
\
\t\t\n
\
\t\t
intro =
\"
Welcome To PyCrust %s - KiCad's Python Shell
\"
% version.VERSION
\n
\
\t\t
pycrust = shell.Shell(self, -1, introText=intro)
\n
\
\t\t\n
\
\t\t
sizer = wx.BoxSizer(wx.VERTICAL)
\n\n
\
\t\t
sizer.Add(text, 0, wx.EXPAND|wx.ALL, 10)
\n\n
\
\t\t
sizer.Add(pycrust, 1, wx.EXPAND|wx.BOTTOM|wx.LEFT|wx.RIGHT, 10)
\n\n
\
\t\t
self.SetSizer(sizer)
\n\n
\
\n
\
\n
\
def makeWindow(parent):
\n
\
def makeWindow(parent):
\n
\
win =
embedded_sample.
MyPanel(parent)
\n
\
win = MyPanel(parent)
\n
\
return win
\n
\
return win
\n
\
"
;
"
;
wxWindow
*
MyFrame
::
DoPythonStuff
(
wxWindow
*
parent
)
{
// More complex embedded situations will require passing C++ objects to
// More complex embedded situations will require passing C++ objects to
// Python and/or returning objects from Python to be used in C++. This
// Python and/or returning objects from Python to be used in C++. This
// sample shows one way to do it. NOTE: The above code could just have
// sample shows one way to do it. NOTE: The above code could just have
...
@@ -413,7 +401,7 @@ wxWindow* MyFrame::DoPythonStuff(wxWindow* parent)
...
@@ -413,7 +401,7 @@ wxWindow* MyFrame::DoPythonStuff(wxWindow* parent)
Py_DECREF
(
builtins
);
Py_DECREF
(
builtins
);
// Execute the code to make the makeWindow function
// Execute the code to make the makeWindow function
result
=
PyRun_String
(
py
thon_code2
,
Py_file_input
,
globals
,
globals
);
result
=
PyRun_String
(
py
crust_panel
,
Py_file_input
,
globals
,
globals
);
// Was there an exception?
// Was there an exception?
if
(
!
result
)
{
if
(
!
result
)
{
PyErr_Print
();
PyErr_Print
();
...
@@ -443,6 +431,7 @@ wxWindow* MyFrame::DoPythonStuff(wxWindow* parent)
...
@@ -443,6 +431,7 @@ wxWindow* MyFrame::DoPythonStuff(wxWindow* parent)
// Otherwise, get the returned window out of Python-land and
// Otherwise, get the returned window out of Python-land and
// into C++-ville...
// into C++-ville...
bool
success
=
wxPyConvertSwigPtr
(
result
,
(
void
**
)
&
window
,
_T
(
"wxWindow"
));
bool
success
=
wxPyConvertSwigPtr
(
result
,
(
void
**
)
&
window
,
_T
(
"wxWindow"
));
(
void
)
success
;
wxASSERT_MSG
(
success
,
_T
(
"Returned object was not a wxWindow!"
));
wxASSERT_MSG
(
success
,
_T
(
"Returned object was not a wxWindow!"
));
Py_DECREF
(
result
);
Py_DECREF
(
result
);
}
}
...
...
scripting/python_scripting.cpp
View file @
b0881d8e
...
@@ -116,7 +116,10 @@ static void swigSwitchPythonBuiltin()
...
@@ -116,7 +116,10 @@ static void swigSwitchPythonBuiltin()
* initializes all the wxpython interface, and returns the python thread control structure
* initializes all the wxpython interface, and returns the python thread control structure
*
*
*/
*/
bool
pcbnewInitPythonScripting
(
PyThreadState
**
aMainTState
)
PyThreadState
*
g_PythonMainTState
;
bool
pcbnewInitPythonScripting
()
{
{
swigAddBuiltin
();
// add builtin functions
swigAddBuiltin
();
// add builtin functions
...
@@ -139,7 +142,7 @@ bool pcbnewInitPythonScripting(PyThreadState** aMainTState)
...
@@ -139,7 +142,7 @@ bool pcbnewInitPythonScripting(PyThreadState** aMainTState)
// Save the current Python thread state and release the
// Save the current Python thread state and release the
// Global Interpreter Lock.
// Global Interpreter Lock.
*
a
MainTState
=
wxPyBeginAllowThreads
();
g_Python
MainTState
=
wxPyBeginAllowThreads
();
// load pcbnew inside python, and load all the user plugins, TODO: add system wide plugins
// load pcbnew inside python, and load all the user plugins, TODO: add system wide plugins
...
@@ -153,3 +156,11 @@ bool pcbnewInitPythonScripting(PyThreadState** aMainTState)
...
@@ -153,3 +156,11 @@ bool pcbnewInitPythonScripting(PyThreadState** aMainTState)
return
true
;
return
true
;
}
}
void
pcbnewFinishPythonScripting
()
{
wxPyEndAllowThreads
(
g_PythonMainTState
);
Py_Finalize
();
}
scripting/python_scripting.h
View file @
b0881d8e
#ifndef __PYTHON_SCRIPTING_H
#ifndef __PYTHON_SCRIPTING_H
#define __PYTHON_SCRIPTING_H
#define __PYTHON_SCRIPTING_H
#include <Python.h>
// undefs explained here: https://bugzilla.redhat.com/show_bug.cgi?id=427617
#ifdef _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE
#endif
#ifdef _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif
#include <Python.h>
#ifndef NO_WXPYTHON_EXTENSION_HEADERS
#include <wx/wxPython/wxPython.h>
#endif
/* Function pcbnewInitPythonScripting
/* Function pcbnewInitPythonScripting
* Initializes the Python engine inside pcbnew
* Initializes the Python engine inside pcbnew
*/
*/
bool
pcbnewInitPythonScripting
(
PyThreadState
**
aMainTState
);
bool
pcbnewInitPythonScripting
();
void
pcbnewFinishPythonScripting
();
#endif
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment