Download

Online

Gallery

Blog

  Index  | Recent Threads  | List Attachments  | Search
 Welcome Guest  |  Register  |  Login
Login Name  Password
 

Sweet Home 3D Forum



No member browsing this thread
Thread Status: Active
Total posts in this thread: 12
Posts: 12   Pages: 2   [ 1 2 | Next Page ]
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 7009 times and has 11 replies Next Thread
keymusicman
Newbie




Joined: Oct 23, 2022
Post Count: 5
Status: Offline
Reply to this Post  Reply with Quote 
applause New feature: Caption

Hi everyone,

I would like to present you a new feature for Sweet Home 3D called "Caption".

I use the Sweet Home 3D while building my own house. One of the next steps in my house is the mounting of electrical equipment. For the electrical equipment like switches it's important to see an elevation on the 2D sheet but I've found no easy way to place it to the plan. So I have added this feature myself.

I've added the ability to add any caption to any furniture. It also supports a templated text, for example, you can use $ELEVATION to place to target furniture elevation or $NAME to place the name.

You can find a record of how it works here: https://youtu.be/VpYJFZLGZ1Q

I will be glad to answer any questions you have about it. I would also like to contribute the Sweet Home 3D if you find this feature useful. Please give some contribution guides.

Thank you for your attention ;))
[Oct 23, 2022, 8:22:37 PM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
hansmex
Advanced Member
Member's Avatar

Netherlands
Joined: Sep 26, 2009
Post Count: 3948
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Very nice work!!
Where can we download the plugin?

Hans
----------------------------------------
Hans

new website - under constuction
hansdirkse.info
[Oct 23, 2022, 10:23:39 PM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
keymusicman
Newbie




Joined: Oct 23, 2022
Post Count: 5
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Hans,

Thank you for the appreciation!

Actually, I decided to make this feature a core one. So there is no a plugin, I've added it directly to the Sweet Home source code.

How can I share it with everyone? Should I upload the source or make a Sweet Home installer?

Regards,
Vasilij Maleev
[Oct 24, 2022, 7:05:40 AM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
hansmex
Advanced Member
Member's Avatar

Netherlands
Joined: Sep 26, 2009
Post Count: 3948
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Sorry to say, Vasilij, but that way I can't update SH3D without losing the functionality of your feature.

Could you re-write it as a plugin, so that it can be used alongside the main program?

Hans
----------------------------------------
Hans

new website - under constuction
hansdirkse.info
[Oct 24, 2022, 9:18:21 AM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
Puybaret
Expert
Member's Avatar

France
Joined: Nov 7, 2005
Post Count: 9141
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Nice proposal Vasilij. You can post a source code patch in a feature request ticket if you want.
Hans, I fear this can't be transformed as a plug-in because it changes the behavior of the plan and how it's drawn.
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D developer
[Oct 24, 2022, 9:56:06 AM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
hansmex
Advanced Member
Member's Avatar

Netherlands
Joined: Sep 26, 2009
Post Count: 3948
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Emmanuel, thats too bad :-(
Any chance it gets a place in SH3D v8 ??
----------------------------------------
Hans

new website - under constuction
hansdirkse.info
[Oct 24, 2022, 12:02:11 PM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
keymusicman
Newbie




Joined: Oct 23, 2022
Post Count: 5
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Writing a plugin was my first thought. But Emmanuel is right, the plugins API seems not enough to implement this as a plugin.

Thank you for the feature requests link. I would definitely like to post a patch. Emmanuel, can I message you directly in the case of questions about a feature request?
[Oct 24, 2022, 12:02:14 PM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
Puybaret
Expert
Member's Avatar

France
Joined: Nov 7, 2005
Post Count: 9141
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Any chance it gets a place in SH3D v8 ??
That would imply quite a lot of changes because changing how user interface components are displayed and behave should be feasible from more than a plug-in. And I'm not sure it would be such a good idea, because such plug-ins would have to always interact nicely with the default behavior of the program and other plug-ins.

Vasilij, don't hesitate to write me directly and sorry if I didn't answer faster to your last mail.
----------------------------------------
Emmanuel Puybaret, Sweet Home 3D developer
[Oct 24, 2022, 12:28:27 PM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
Daniels118
Advanced Member
Member's Avatar

Italy
Joined: Nov 17, 2021
Post Count: 398
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

I think this could be programmed as a plugin using the standard API. I'm not saying this would be easy, but I'm sure it can be done.

Here some tips:
a) The monitoring of furniture properties like name and elevation can be monitored by attaching listeners.
b) From a graphical point of view you need only basic elements, i.e. the polyline and the label.
c) The label and polyline can be logically linked to a furniture using the custom properties.
d) The label position relative to the furniture can be saved using custom properties.
e) as a furniture moves the polyline and label position can be changed accordingly using a listener (as at point A).

If you look at the "Link selected furniture" feature from the Wirings plugin you can get an idea of how it cloud be done in a plugin. Watch the last part of the following video, you will see polylines that follow a furniture:
https://youtu.be/Z_XFq4QaD8E
[Oct 25, 2022, 6:12:07 PM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
keymusicman
Newbie




Joined: Oct 23, 2022
Post Count: 5
Status: Offline
Reply to this Post  Reply with Quote 
Re: New feature: Caption

Hello Daniels,

Thank you for the reply. I made one more try with a plugin. I've downloaded the Wirings plugin and explored this a little bit. I still have some questions, can you please help with this?
- If I understand correctly, the Wirings plugin is built upon the "polyline" feature so the core part of SH3D knows how to handle it. The new feature requires new drawings and I've found no API to do this. Have I missed something? How can I draw a 2D graphics I need?
- The saving and reading home elements is also hard for a new types of elements, I've also found no API to do this.

If you have ideas on how I can implement this in a plugin, please share 🙂 I would be glad to make a plugin

Regards,
Vasilij Maleev
[Nov 5, 2022, 11:02:38 AM] Show Printable Version of Post    View Member Profile    Send Private Message [Link] Report threatening or abusive post: please login first  Go to top 
Posts: 12   Pages: 2   [ 1 2 | Next Page ]
[ Jump to Last Post ]
Show Printable Version of Thread  Post new Thread

    Get Sweet Home 3D at SourceForge.net. Fast, secure and Free Open Source software downloads
   
© Copyright 2006-2024 eTeks - All rights reserved