Questions tagged [tango]

Tango is an open-source software library for D programming language.

Tango is a cross-platform open-source software library, written in the D programming language for D programmers. It is structured as a cohesive and comprehensive library for general purpose usage, and is supported by a growing number of recognized D enthusiasts.

The tango project's website is located at: http://www.dsource.org/projects/tango

108 questions
3
votes
1 answer

How do I use ARCore with front camera of the phone

I have been playing around with Google's AR-Core both in unity and android studio versions. Is there any way to replicate the AR experience using the front camera in android/unity sdk. After thorough research on arcore-android-sdk, I have found that…
viv3k
  • 621
  • 4
  • 10
3
votes
1 answer

D (Tango) can read and write ANSI files?

With D and Tango library can I read and write in the ANSI encoding ?
Sebtm
  • 7,002
  • 8
  • 29
  • 32
3
votes
1 answer

D (and Tango) on PowerPC Linux

It's hard to search for D using Google, so I wasn't able to find a good answer: I have an old iBook G3 and I'd like to install Linux on it and use it to compile (and test) D programs written using Tango on it. Is this possible? Or hasn't anybody…
ujh
  • 4,023
  • 3
  • 27
  • 31
3
votes
1 answer

D 1.0 (Tango) Move mouse; simulate keyboard presses etc

Hey, I'm using D 1.041 with Tango 0.99.8 and was wondering how I would go about moving the mouse and simulating keyboard presses and getting infos from the screen, for example the color of a specific pixel on a specific coordinate. I'm using…
cryzed
  • 151
  • 1
  • 4
  • 7
3
votes
5 answers

malloc and free in D/Tango not freeing memory?

here is a simple d/tango code in windows: module d_test.d; import tango.util.log.Trace; import tango.core.Thread; import tango.stdc.stdlib : malloc, free; void main() { Trace.formatln("Checking in..."); Thread.sleep(10); int total_n…
Keyframe
  • 1,390
  • 1
  • 14
  • 28
2
votes
1 answer

D Module Name Being Printed by Module Destructor

I've recently started learning D version 1, using the Tango library. I decided to write a small class Dout that wraps tango.io.Stdout, except it overrides opShl to better match C++'s << style output. My implementation is like so: // dout.d module…
Meta
  • 1,091
  • 6
  • 14
2
votes
2 answers

How to add tasks to a tango (D) ThreadPool asynchroniously ?

I am comparing a task queue/thread pool pattern system to an n-threads system in D. I'm really new to the D programming language but have worked with threads in C, Java, and Python before. I'm using the Tango library, and I'm building a webserver as…
Brian
  • 733
  • 1
  • 5
  • 11
2
votes
2 answers

Using OpenSSL library in D

I have trouble using the OpenSSL library with dmd+tango bundle on Ubuntu 10.04. I have compilled OpenSSL 1.0.0d. I've got files: /usr/local/ssl/lib/libssl.a /usr/local/ssl/lib/libcrypto.a So, I'm using them like this: $ dmd myfile.d…
2
votes
1 answer

Tango with Django : URLconf defined in tango_with_django_project.urls. Page not found

Started learning Django a few days ago, came across this book "Tango with django" and started following it. But I am stuck here..might be a silly error with the pattern matching.. When I click a category, the relevant Category pages should be shown…
2
votes
1 answer

how to use Tango3DR_updateTexture?

I am trying to make 3DR texturing but it always use only vertex colors in texture. On every frame I store frame as PNG: RGBImage frame(t3dr_image, 4); std::ostringstream ss; ss << dataset_.c_str(); ss << "/"; ss <<…
Luboš V.
  • 51
  • 1
  • 7
2
votes
0 answers

Dex2oatd Verification failed

There is a build error when preload app: dex2oatd W 21386 21707 art/runtime/class_linker.cc:3126] Verification failed on class com.unity3d.player.o in /system/priv-app/Discovery/Discovery.apk:classes3.dex because: Verifier rejected class…
yuntao bai
  • 21
  • 2
2
votes
3 answers

Google Tango: Failer to connect to tango service

so i was developing with unity and google tango. After pushing my application to the tablet it crashed with the message: "Failer to connect to tango service". After rebooting the tablet i tried to start an application which was already on the tablet…
2
votes
1 answer

Tango Camera Preview for RGBIR

I am using Tango's demo for videoOverlaySample. Instead of color, I would like to see the IR data (alone or with color). So, I replaced TANGO_CAMERA_COLOR with TANGO_CAMERA_RGBIR in both places where it appears. But screen is black. Here is the…
Ronen Rabinovici
  • 8,680
  • 5
  • 34
  • 46
2
votes
1 answer

Call functionality for iOS devices? Like Viber or Tango calls

In iPhone/iPad applications like Tango and Viber, you can make in app calls like phone calls. I mean when you make a call, the other client's phone rings and the answer option appears on the bottom side of the screen. It is not a push notification,…
1
vote
1 answer

DSSS error code 65280

I have a pomodoro timer that I am trying to compile using DSSS. It compiles when executing: dmd pomodoro.d However, when I execute dsss build From within the project directory, it complains: pomodoro.d => pomodoro WARNING: Module pomodoro.d does…
RedMage
  • 1,126
  • 1
  • 9
  • 21